]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/subr.el (use-dialog-box-p): Fix last change.
authorEli Zaretskii <eliz@gnu.org>
Sun, 2 Apr 2023 08:42:43 +0000 (11:42 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 2 Apr 2023 08:42:43 +0000 (11:42 +0300)
lisp/subr.el

index cf6500d32c7e16f09d6d0bfbdbf72ae0049682fb..131ed110149b771170bbbe711a7ff84203f1acaf 100644 (file)
@@ -3538,10 +3538,9 @@ confusing to some users.")
 (defvar from--tty-menu-p nil
   "Non-nil means the current command was invoked from a TTY menu.")
 (defun use-dialog-box-p ()
-  "Say whether the current command should prompt the user via a dialog box."
+  "Return non-nil if the current command should prompt the user via a dialog box."
   (and last-input-event                 ; not during startup
-       (or (and last-nonmenu-event      ; nil is listp...
-                (listp last-nonmenu-event))   ; invoked by a mouse event
+       (or (consp last-nonmenu-event)   ; invoked by a mouse event
            from--tty-menu-p)            ; invoked via TTY menu
        use-dialog-box))