aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2000-11-28 05:11:20 +0000
committerMiles Bader2000-11-28 05:11:20 +0000
commitd970106bfbcee014036ba019a58a9ab8b7c3ddd7 (patch)
treee09fc6b558f119efe805efa8d69f650ce504c564
parent38953fe2ce3c3490fb678f6d62af2e7c13d9393f (diff)
downloademacs-d970106bfbcee014036ba019a58a9ab8b7c3ddd7.tar.gz
emacs-d970106bfbcee014036ba019a58a9ab8b7c3ddd7.zip
(widget-choose): Make sure pop-up window is large enough to display all
the choices, as there's no way to scroll it.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/wid-edit.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index aa68d060805..dc633c88ab9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12000-11-28 Miles Bader <miles@gnu.org>
2
3 * wid-edit.el (widget-choose): Make sure pop-up window is large
4 enough to display all the choices, as there's no way to scroll it.
5
12000-11-28 Kenichi Handa <handa@etl.go.jp> 62000-11-28 Kenichi Handa <handa@etl.go.jp>
2 7
3 * international/mule-conf.el: Make the coding system no-conversion 8 * international/mule-conf.el: Make the coding system no-conversion
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el
index 6b5c1fbd99f..eb402a95eae 100644
--- a/lisp/wid-edit.el
+++ b/lisp/wid-edit.el
@@ -254,7 +254,7 @@ minibuffer."
254 ;; that corresponds to it. 254 ;; that corresponds to it.
255 (save-window-excursion 255 (save-window-excursion
256 (let ((buf (get-buffer " widget-choose"))) 256 (let ((buf (get-buffer " widget-choose")))
257 (display-buffer buf) 257 (fit-window-to-buffer (display-buffer buf))
258 (let ((cursor-in-echo-area t) 258 (let ((cursor-in-echo-area t)
259 keys 259 keys
260 (char 0) 260 (char 0)