diff options
| author | Sam Steingold | 2009-04-06 15:45:00 +0000 |
|---|---|---|
| committer | Sam Steingold | 2009-04-06 15:45:00 +0000 |
| commit | 45f8cb0c08905a0ed4024731d36639c625958f51 (patch) | |
| tree | c8e4e34aaf48af3e4d15a27a4261b01a0a200f90 /lisp | |
| parent | 472c36097b3a6f598ded7f455279af32c05a0ae3 (diff) | |
| download | emacs-45f8cb0c08905a0ed4024731d36639c625958f51.tar.gz emacs-45f8cb0c08905a0ed4024731d36639c625958f51.zip | |
(completion-list-mode-map): Bind "q" to quit-window,
just like in all other read-only buffers.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/simple.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0c41d3f4268..4b6d1517d6f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-04-06 Sam Steingold <sds@gnu.org> | ||
| 2 | |||
| 3 | * simple.el (completion-list-mode-map): Bind "q" to quit-window, | ||
| 4 | just like in all other read-only buffers. | ||
| 5 | |||
| 1 | 2009-04-05 Chong Yidong <cyd@stupidchicken.com> | 6 | 2009-04-05 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * simple.el (handle-shift-selection): Clarify docstring. | 8 | * simple.el (handle-shift-selection): Clarify docstring. |
diff --git a/lisp/simple.el b/lisp/simple.el index 0b7ed49a3a0..fd281429032 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -5614,6 +5614,7 @@ With a prefix argument, set VARIABLE to VALUE buffer-locally." | |||
| 5614 | (define-key map "\e\e\e" 'delete-completion-window) | 5614 | (define-key map "\e\e\e" 'delete-completion-window) |
| 5615 | (define-key map [left] 'previous-completion) | 5615 | (define-key map [left] 'previous-completion) |
| 5616 | (define-key map [right] 'next-completion) | 5616 | (define-key map [right] 'next-completion) |
| 5617 | (define-key map "q" 'quit-window) | ||
| 5617 | map) | 5618 | map) |
| 5618 | "Local map for completion list buffers.") | 5619 | "Local map for completion list buffers.") |
| 5619 | 5620 | ||