diff options
| -rw-r--r-- | lisp/comint.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index afbaef1baf2..dcd4a5ae4cf 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -185,10 +185,10 @@ the remaining prompts will be accidentally messed up. You may | |||
| 185 | wish to put something like the following in your init file: | 185 | wish to put something like the following in your init file: |
| 186 | 186 | ||
| 187 | \(add-hook \\='comint-mode-hook | 187 | \(add-hook \\='comint-mode-hook |
| 188 | (lambda () | 188 | (lambda () |
| 189 | (define-key comint-mode-map [remap kill-region] \\='comint-kill-region) | 189 | (define-key comint-mode-map [remap kill-region] \\='comint-kill-region) |
| 190 | (define-key comint-mode-map [remap kill-whole-line] | 190 | (define-key comint-mode-map [remap kill-whole-line] |
| 191 | \\='comint-kill-whole-line))) | 191 | \\='comint-kill-whole-line))) |
| 192 | 192 | ||
| 193 | If you sometimes use comint-mode on text-only terminals or with `emacs -nw', | 193 | If you sometimes use comint-mode on text-only terminals or with `emacs -nw', |
| 194 | you might wish to use another binding for `comint-kill-whole-line'." | 194 | you might wish to use another binding for `comint-kill-whole-line'." |