diff options
author | Chris Feng <chris.w.feng@gmail.com> | 2016-05-12T16·11+0800 |
---|---|---|
committer | Chris Feng <chris.w.feng@gmail.com> | 2016-05-12T16·11+0800 |
commit | 2dcb26ce9d4411200c635f19c372fc6c34f3bafe (patch) | |
tree | a8c4fa1b9951d736eb75ff2fa0d41e6a1bc62ba1 /exwm-systemtray.el | |
parent | 009854e766728ed17741bf9f7e6d86f9ccc71871 (diff) |
Use `xcb:connect' instead of `xcb:connect-to-socket'
* exwm.el (exwm-init): * exwm-systemtray.el (exwm-systemtray--init): Use `xcb:connect' instead of `xcb:connect-to-socket'.
Diffstat (limited to 'exwm-systemtray.el')
-rw-r--r-- | exwm-systemtray.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exwm-systemtray.el b/exwm-systemtray.el index c85d7436bbb3..cb08ba9560c3 100644 --- a/exwm-systemtray.el +++ b/exwm-systemtray.el @@ -306,7 +306,7 @@ You shall use the default value if using auto-hide minibuffer.") (setq exwm-systemtray-height (max exwm-systemtray--icon-min-size (line-pixel-height)))) ;; Create a new connection. - (setq exwm-systemtray--connection (xcb:connect-to-socket)) + (setq exwm-systemtray--connection (xcb:connect)) (set-process-query-on-exit-flag (slot-value exwm-systemtray--connection 'process) nil) |