Run all functions in `prefix-command-echo-keystrokes-functions'
* lisp/simple.el (internal-echo-keystrokes-prefix): Really run all functions in `prefix-command-echo-keystrokes-functions' (bug#46727). Copyright-paperwork-exempt: yes
This commit is contained in:
parent
7c48c83dab
commit
a2a6364265
1 changed files with 1 additions and 1 deletions
|
|
@ -4670,7 +4670,7 @@ see other processes running on the system, use `list-system-processes'."
|
|||
(setq prefix-command--last-echo
|
||||
(let ((strs nil))
|
||||
(run-hook-wrapped 'prefix-command-echo-keystrokes-functions
|
||||
(lambda (fun) (push (funcall fun) strs)))
|
||||
(lambda (fun) (push (funcall fun) strs) nil))
|
||||
(setq strs (delq nil strs))
|
||||
(when strs (mapconcat #'identity strs " "))))))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue