mirror of
https://github.com/ch11ng/exwm.git
synced 2024-11-23 19:47:58 +01:00
Reduce logging verbosity
* exwm-input.el (exwm-input--on-echo-area-dirty) (exwm-input--on-echo-area-clear): Reduce logging verbosity.
This commit is contained in:
parent
ac16b9a468
commit
8e0c5ee327
1 changed files with 2 additions and 2 deletions
|
@ -1121,16 +1121,16 @@ One use is to access the keymap bound to KEYS (as prefix keys) in char-mode."
|
||||||
|
|
||||||
(defun exwm-input--on-echo-area-dirty ()
|
(defun exwm-input--on-echo-area-dirty ()
|
||||||
"Run when new message arrives to grab keyboard if necessary."
|
"Run when new message arrives to grab keyboard if necessary."
|
||||||
(exwm--log)
|
|
||||||
(when (and (not (active-minibuffer-window))
|
(when (and (not (active-minibuffer-window))
|
||||||
(not (exwm-workspace--client-p))
|
(not (exwm-workspace--client-p))
|
||||||
cursor-in-echo-area)
|
cursor-in-echo-area)
|
||||||
|
(exwm--log)
|
||||||
(exwm-input--on-minibuffer-setup)))
|
(exwm-input--on-minibuffer-setup)))
|
||||||
|
|
||||||
(defun exwm-input--on-echo-area-clear ()
|
(defun exwm-input--on-echo-area-clear ()
|
||||||
"Run in `echo-area-clear-hook' to release keyboard if necessary."
|
"Run in `echo-area-clear-hook' to release keyboard if necessary."
|
||||||
(exwm--log)
|
|
||||||
(unless (current-message)
|
(unless (current-message)
|
||||||
|
(exwm--log)
|
||||||
(exwm-input--on-minibuffer-exit)))
|
(exwm-input--on-minibuffer-exit)))
|
||||||
|
|
||||||
(defun exwm-input--init ()
|
(defun exwm-input--init ()
|
||||||
|
|
Loading…
Reference in a new issue