summaryrefslogtreecommitdiff
path: root/lisp/terminal.el
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-05-07 01:20:07 +0000
committerKarl Heuer <kwzh@gnu.org>1994-05-07 01:20:07 +0000
commit3865521ac666862a8ba3eb609a64cde2a853c4ad (patch)
treead853e1887c30875ce075b0506c9b2779f36381f /lisp/terminal.el
parent77c387fd90df60cc1ccf7f24dd60054d11adac1a (diff)
downloademacs-3865521ac666862a8ba3eb609a64cde2a853c4ad.tar.gz
(terminal-edit-mode): Doc fix.
(terminal-cease-edit): Reset the local keymap.
Diffstat (limited to 'lisp/terminal.el')
-rw-r--r--lisp/terminal.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/terminal.el b/lisp/terminal.el
index 0bec1908d42..33996e4bdee 100644
--- a/lisp/terminal.el
+++ b/lisp/terminal.el
@@ -484,7 +484,7 @@ lets you type a terminal emulator command."
(defun terminal-edit-mode ()
"Major mode for editing the contents of a terminal-emulator buffer.
The editing commands are the same as in Fundamental mode,
-together with a command \\<terminal-edit-mode-map>to return to terminal emulation: \\[terminal-cease-edit]."
+together with a command \\<terminal-edit-map>to return to terminal emulation: \\[terminal-cease-edit]."
(use-local-map terminal-edit-map)
(setq major-mode 'terminal-edit-mode)
(setq mode-name "Terminal Edit")
@@ -540,6 +540,7 @@ together with a command \\<terminal-edit-mode-map>to return to terminal emulatio
(setq te-more-count -1)))
(setq mode-line-modified (default-value 'mode-line-modified))
+ (use-local-map terminal-map)
(setq major-mode 'terminal-mode)
(setq mode-name "terminal")
(setq mode-line-process '(":%s")))