Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2bc170c3
Commit
2bc170c3
authored
Dec 13, 2013
by
Juri Linkov
Browse files
* lisp/comint.el (comint-mode-map): Replace `delete-char' with `delete-forward-char'.
Fixes: debbugs:16109
parent
bc9222c9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/comint.el
lisp/comint.el
+3
-3
No files found.
lisp/ChangeLog
View file @
2bc170c3
2013-12-13 Juri Linkov <juri@jurta.org>
* comint.el (comint-mode-map): Replace `delete-char' with
`delete-forward-char'. (Bug#16109)
2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
* progmodes/python.el (python-indent-calculate-indentation): Fix
...
...
lisp/comint.el
View file @
2bc170c3
...
...
@@ -460,10 +460,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
,
;; The following two are standardly
bound to delete-forward-char
,
;; but they should never do EOF, just delete.
(define-key map [delete] 'delete-char)
(define-key map [kp-delete] 'delete-char)
(define-key map [delete] 'delete-
forward-
char)
(define-key map [kp-delete] 'delete-
forward-
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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment