mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-01 03:11:09 -08:00
Fix echo function
This commit is contained in:
parent
4cb5a5c399
commit
ffc65fd6df
1 changed files with 3 additions and 1 deletions
|
|
@ -940,7 +940,9 @@ area."
|
|||
(delay (if minibuffer 0.2 0.01))
|
||||
message-log-max)
|
||||
(unless minibuffer (message "%s" ,text))
|
||||
(run-with-idle-timer delay nil (lambda () (message "%s" ,text))))))
|
||||
(run-with-idle-timer delay nil
|
||||
(lambda () (let (message-log-max)
|
||||
(message "%s" ,text)))))))
|
||||
|
||||
(defun which-key--show-page (n)
|
||||
"Show page N, starting from 0."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue