Merge pull request #52 from pipcet/minor-fix
Minor fix (quote class for make-instance)
This commit is contained in:
commit
9eee94e530
1 changed files with 2 additions and 2 deletions
|
@ -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)))))
|
||||
|
|
Loading…
Reference in a new issue