diff options
author | Chris Feng <chris.w.feng@gmail.com> | 2017-03-04T17·09+0800 |
---|---|---|
committer | Chris Feng <chris.w.feng@gmail.com> | 2017-03-04T17·09+0800 |
commit | eebf764edd1eebcd40c71dc61ab08f8ddb9e517f (patch) | |
tree | 37380b0e55eb7996deb6c6a22a66d1a2435b9397 /exwm-input.el | |
parent | b79a3c52a5ebd2a663e47fe6d473400cf38bdcf4 (diff) |
; Update the workaround for bug#23980
Diffstat (limited to 'exwm-input.el')
-rw-r--r-- | exwm-input.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exwm-input.el b/exwm-input.el index 809f41ecec19..54b5f30ff1e2 100644 --- a/exwm-input.el +++ b/exwm-input.el @@ -404,7 +404,7 @@ This value should always be overwritten.") ;; add it into (this-command-keys) there, we use `unread-command-events' ;; differently on Emacs 24 and 25. (eval-and-compile - (if (< emacs-major-version 26) + (if (< emacs-major-version 27) (defsubst exwm-input--unread-event (event) (setq unread-command-events (append unread-command-events (list event)))) |