diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/diff-mode.el | 3 |
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 @@ | |||
| 1 | 2004-02-02 Benjamin Rutt <brutt@bloomington.in.us> | ||
| 2 | |||
| 3 | * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'. | ||
| 4 | |||
| 1 | 2004-02-02 David Kastrup <dak@gnu.org> | 5 | 2004-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 |