aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Rutt2004-02-02 21:09:05 +0000
committerBenjamin Rutt2004-02-02 21:09:05 +0000
commitc010ecfa9a26549486bb00c39221813c02c615de (patch)
tree9cbd2073a323446e72cd60d94ce843fa0c80819b
parentdcdbbb5dc5d52c2fa7387b347e4e4739c199a4f9 (diff)
downloademacs-c010ecfa9a26549486bb00c39221813c02c615de.tar.gz
emacs-c010ecfa9a26549486bb00c39221813c02c615de.zip
Bind q to `quit-window'.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/diff-mode.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4458f635d2f..8e5ad91126e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12004-02-02 Benjamin Rutt <brutt@bloomington.in.us>
2
3 * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
4
12004-02-02 David Kastrup <dak@gnu.org> 52004-02-02 David Kastrup <dak@gnu.org>
2 6
3 * replace.el (perform-replace): Allow 'literal argument in 7 * replace.el (perform-replace): Allow 'literal argument in
diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el
index cad1f2c9c61..e44e79856e8 100644
--- a/lisp/diff-mode.el
+++ b/lisp/diff-mode.el
@@ -127,7 +127,8 @@ when editing big diffs)."
127 ("r" . diff-restrict-view) 127 ("r" . diff-restrict-view)
128 ("R" . diff-reverse-direction) 128 ("R" . diff-reverse-direction)
129 ("U" . diff-context->unified) 129 ("U" . diff-context->unified)
130 ("C" . diff-unified->context)) 130 ("C" . diff-unified->context)
131 ("q" . quit-window))
131 "Basic keymap for `diff-mode', bound to various prefix keys.") 132 "Basic keymap for `diff-mode', bound to various prefix keys.")
132 133
133(easy-mmode-defmap diff-mode-map 134(easy-mmode-defmap diff-mode-map