summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2007-12-25 16:56:28 +0000
committerRichard M. Stallman <rms@gnu.org>2007-12-25 16:56:28 +0000
commit6143495cd6cb20700186b839bd5e5bd19a6519c8 (patch)
treeb070086e2b83eb373d3d9af2bd9beae3a566212c
parent9d826ef2087381a1241029671ca942718c3a19d9 (diff)
downloademacs-6143495cd6cb20700186b839bd5e5bd19a6519c8.tar.gz
(comint-mode-map): Explicitly bind `delete' and `kp-delete'
so they never do EOF.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/comint.el4
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6214d715b37..7ac2582e64c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-25 Richard Stallman <rms@gnu.org>
+
+ * comint.el (comint-mode-map): Explicitly bind `delete' and `kp-delete'
+ so they never do EOF.
+
2007-12-23 Richard Stallman <rms@gnu.org>
* dired-aux.el: Load dired.el at run time too.
diff --git a/lisp/comint.el b/lisp/comint.el
index 047cc3b80fb..96c36f3496f 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -453,6 +453,10 @@ executed once when the buffer is created."
(define-key map "\e\C-l" 'comint-show-output)
(define-key map "\C-m" 'comint-send-input)
(define-key map "\C-d" 'comint-delchar-or-maybe-eof)
+ ;; The following two are standardly aliased to C-d,
+ ;; but they should never do EOF, just delete.
+ (define-key map [delete] 'delete-char)
+ (define-key map [kp-delete] 'delete-char)
(define-key map "\C-c " 'comint-accumulate)
(define-key map "\C-c\C-x" 'comint-get-next-from-history)
(define-key map "\C-c\C-a" 'comint-bol-or-process-mark)