diff options
author | Chris Feng <chris.w.feng@gmail.com> | 2015-08-29T11·03+0800 |
---|---|---|
committer | Chris Feng <chris.w.feng@gmail.com> | 2015-08-29T11·03+0800 |
commit | 9eee94e530d40d190a9bc6b5c345d17491b674de (patch) | |
tree | e2efd67de6dbc0ba44d63520b52af4ec66f42b74 /exwm-manage.el | |
parent | 76f48490b175e30d520c2dbf05f18807b03b10de (diff) | |
parent | f7bec7a97729848f201d474b2984c71a8a981466 (diff) |
Merge pull request #52 from pipcet/minor-fix
Minor fix (quote class for make-instance)
Diffstat (limited to 'exwm-manage.el')
-rw-r--r-- | exwm-manage.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exwm-manage.el b/exwm-manage.el index e7134fe6712d..648b42b8fed5 100644 --- a/exwm-manage.el +++ b/exwm-manage.el @@ -83,7 +83,7 @@ corresponding buffer.") :event-mask xcb:EventMask:NoEvent)) ;; The window needs to be mapped (xcb:+request exwm--connection - (make-instance xcb:MapWindow :window id)) + (make-instance 'xcb:MapWindow :window id)) (with-slots (x y width height) exwm--geometry ;; Reparent to virtual root (essential) (xcb:+request exwm--connection @@ -323,7 +323,7 @@ corresponding buffer.") (with-slots (parent window) obj (if (/= exwm--root parent) (progn (xcb:+request exwm--connection - (make-instance xcb:MapWindow :window window)) + (make-instance 'xcb:MapWindow :window window)) (xcb:flush exwm--connection)) (exwm--log "MapRequest from #x%x" window) (exwm-manage--manage-window window))))) |