branch: elpa/popup commit e164f3bc2dadcd2cd6d8e7f97f908a6697aced92 Author: Hiroaki Otsu <ootsuhiro...@gmail.com> Commit: Hiroaki Otsu <ootsuhiro...@gmail.com>
fixed without ignore-errors --- popup.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/popup.el b/popup.el index 1fb2511..43262e8 100644 --- a/popup.el +++ b/popup.el @@ -1192,7 +1192,7 @@ PROMPT is a prompt string when reading events during event loop." :help-delay help-delay) (keyboard-quit)) (setq key (popup-menu-read-key-sequence keymap prompt help-delay)) - (setq binding (ignore-errors (lookup-key keymap key))) + (setq binding (and key (lookup-key keymap key))) (cond ((or (null key) (zerop (length key))) (unless (funcall popup-menu-show-quick-help-function menu nil :prompt prompt)