diff options
author | Chris Feng <chris.w.feng@gmail.com> | 2015-11-10T11·10+0800 |
---|---|---|
committer | Chris Feng <chris.w.feng@gmail.com> | 2015-11-10T11·10+0800 |
commit | a295a15ff646cbfa174ee1f78f9f8e27e1a7d587 (patch) | |
tree | 12d08547de2f75d2d3c716db6290557bc9010a5f /exwm-manage.el | |
parent | 5c5c7cf76b5914d8dfe18856a1e301ad4cd48ce4 (diff) |
Fix a typo
* exwm-manage.el (exwm-manage--on-MapRequest): Correct a wrong variable name.
Diffstat (limited to 'exwm-manage.el')
-rw-r--r-- | exwm-manage.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exwm-manage.el b/exwm-manage.el index aa484d657b21..58908a2ffae5 100644 --- a/exwm-manage.el +++ b/exwm-manage.el @@ -369,7 +369,7 @@ Would you like to kill it? " (xcb:unmarshal obj data) (with-slots (parent window) obj (if (assoc window exwm--id-buffer-alist) - (exwm--log "#x%x is already managed" id) + (exwm--log "#x%x is already managed" window) (if (/= exwm--root parent) (progn (xcb:+request exwm--connection (make-instance 'xcb:MapWindow :window window)) |