diff options
author | Chris Feng <chris.w.feng@gmail.com> | 2016-07-25T04·14+0800 |
---|---|---|
committer | Chris Feng <chris.w.feng@gmail.com> | 2016-07-25T04·14+0800 |
commit | f4d89d7e2f571d0b78a7242fc13c21ca0f46bebe (patch) | |
tree | 022ba38a28af35f44ea44586e03f315ab40d6f8e /exwm-input.el | |
parent | 5529790b039ec6bac3e5eb7da17931b1dec50c64 (diff) |
Minor fixes for past few commits
* exwm-input.el (exwm-input--unread-event): Temporarily disable it due to bug#23980. * exwm-workspace.el (exwm-workspace--init): Set the default frame internal border to 0. * exwm-workspace.el (exwm-workspace--remove-frame-as-workspace): Fix a typo.
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 fa7883f32da5..62779c9e2be6 100644 --- a/exwm-input.el +++ b/exwm-input.el @@ -323,7 +323,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 25) + (if (< emacs-major-version 26) (defsubst exwm-input--unread-event (event) (setq unread-command-events (append unread-command-events (list event)))) |