]> git.eshelyaron.com Git - emacs.git/commitdiff
(widget-choose): Call display-popup-menus-p instead
authorEli Zaretskii <eliz@gnu.org>
Tue, 9 Jan 2001 10:08:51 +0000 (10:08 +0000)
committerEli Zaretskii <eliz@gnu.org>
Tue, 9 Jan 2001 10:08:51 +0000 (10:08 +0000)
of display-mouse-p.

lisp/ChangeLog
lisp/wid-edit.el

index 17d3e25e4d4d75697e333c1ae07127c148a6601b..01de131772941e653eefab0a7ae18f72a80101d8 100644 (file)
@@ -1,3 +1,8 @@
+2001-01-09  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * wid-edit.el (widget-choose): Call display-popup-menus-p instead
+       of display-mouse-p.
+
 2001-01-09  Kenichi Handa  <handa@etl.go.jp>
 
        * international/mule.el (make-coding-system): If the coding system
index 52851524b8a1439006b1564e6ac93f403d053b52..34d9fb75a9dceca55ebd75cbd60bfb49d525f38c 100644 (file)
@@ -204,7 +204,7 @@ mouse event, and the number of elements in items is less than
 `widget-menu-max-size', a popup menu will be used, otherwise the
 minibuffer."
   (cond ((and (< (length items) widget-menu-max-size)
-             event (display-mouse-p))
+             event (display-popup-menus-p))
         ;; Mouse click.
         (x-popup-menu event
                       (list title (cons "" items))))