aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2012-08-30 13:09:11 -0400
committerRichard M. Stallman2012-08-30 13:09:11 -0400
commit262a66e138cbc4beea1a6267adb0d2f2ba190b6e (patch)
tree9aab44dc4e459f1cba62b59b32456bf9fafeb818
parentb4444c8ad0d86f80263ffdaf7363dc0ad3a4f1fc (diff)
downloademacs-262a66e138cbc4beea1a6267adb0d2f2ba190b6e.tar.gz
emacs-262a66e138cbc4beea1a6267adb0d2f2ba190b6e.zip
Delete `z' in special-mode-map.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/simple.el1
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5229c3332b2..3034d7f6adf 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12012-08-30 Richard Stallman <rms@gnu.org>
2
3 * simple.el (special-mode-map): Delete binding for `z'.
4
12012-08-30 Andreas Schwab <schwab@linux-m68k.org> 52012-08-30 Andreas Schwab <schwab@linux-m68k.org>
2 6
3 * progmodes/compile.el (compilation-always-kill): Doc fix. 7 * progmodes/compile.el (compilation-always-kill): Doc fix.
diff --git a/lisp/simple.el b/lisp/simple.el
index 7673e4c5d6e..51eb572dc5c 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -365,7 +365,6 @@ Other major modes are defined by comparison with this one."
365 (define-key map ">" 'end-of-buffer) 365 (define-key map ">" 'end-of-buffer)
366 (define-key map "<" 'beginning-of-buffer) 366 (define-key map "<" 'beginning-of-buffer)
367 (define-key map "g" 'revert-buffer) 367 (define-key map "g" 'revert-buffer)
368 (define-key map "z" 'kill-this-buffer)
369 map)) 368 map))
370 369
371(put 'special-mode 'mode-class 'special) 370(put 'special-mode 'mode-class 'special)