diff options
| author | Miles Bader | 2000-11-28 05:11:20 +0000 |
|---|---|---|
| committer | Miles Bader | 2000-11-28 05:11:20 +0000 |
| commit | d970106bfbcee014036ba019a58a9ab8b7c3ddd7 (patch) | |
| tree | e09fc6b558f119efe805efa8d69f650ce504c564 | |
| parent | 38953fe2ce3c3490fb678f6d62af2e7c13d9393f (diff) | |
| download | emacs-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/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/wid-edit.el | 2 |
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 @@ | |||
| 1 | 2000-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 | |||
| 1 | 2000-11-28 Kenichi Handa <handa@etl.go.jp> | 6 | 2000-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) |