mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-14 09:46:42 -04:00
Fix M-x hints on Mac port
* lisp/simple.el (execute-extended-command--shorter): Call input-pending-p to trigger input processing on some systems, such as Mac port. (Bug#23002)
This commit is contained in:
parent
86a297a43d
commit
08de101d75
|
|
@ -1663,6 +1663,7 @@ If the value is non-nil and not a number, we wait 2 seconds."
|
|||
;; Don't show the help message if the binding isn't
|
||||
;; significantly shorter than the M-x command the user typed.
|
||||
(< len (- max 5))))
|
||||
(input-pending-p) ;Dummy call to trigger input-processing, bug#23002.
|
||||
(let ((candidate (pop candidates)))
|
||||
(when (equal name
|
||||
(car-safe (completion-try-completion
|
||||
|
|
|
|||
Loading…
Reference in a new issue