aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorSam Steingold2009-04-06 15:45:00 +0000
committerSam Steingold2009-04-06 15:45:00 +0000
commit45f8cb0c08905a0ed4024731d36639c625958f51 (patch)
treec8e4e34aaf48af3e4d15a27a4261b01a0a200f90 /lisp
parent472c36097b3a6f598ded7f455279af32c05a0ae3 (diff)
downloademacs-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/ChangeLog5
-rw-r--r--lisp/simple.el1
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 @@
12009-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
12009-04-05 Chong Yidong <cyd@stupidchicken.com> 62009-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