]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix use dialog box regression on Android
authorPo Lu <luangruo@yahoo.com>
Mon, 1 May 2023 06:16:07 +0000 (14:16 +0800)
committerPo Lu <luangruo@yahoo.com>
Mon, 1 May 2023 06:16:07 +0000 (14:16 +0800)
* lisp/subr.el (use-dialog-box-p): Always prefer dialog boxes.

lisp/subr.el

index b1e460b88eb70285bdd49d4adc4d8766432075db..a695d52046e9730a8dd8fa0e15464c1727692025 100644 (file)
@@ -3601,7 +3601,8 @@ confusing to some users.")
 (defun use-dialog-box-p ()
   "Return non-nil if the current command should prompt the user via a dialog box."
   (and last-input-event                 ; not during startup
-       (or (consp last-nonmenu-event)   ; invoked by a mouse event
+       (or (featurep 'android)         ; prefer dialog boxes on Android
+           (consp last-nonmenu-event)   ; invoked by a mouse event
            from--tty-menu-p)            ; invoked via TTY menu
        use-dialog-box))