From: Karl Heuer Date: Sat, 7 May 1994 01:20:07 +0000 (+0000) Subject: (terminal-edit-mode): Doc fix. X-Git-Tag: emacs-19.34~8479 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=75a6b98e4d1c4834df7400a29687f1ea1cb934d2;p=emacs.git (terminal-edit-mode): Doc fix. (terminal-cease-edit): Reset the local keymap. --- 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 \\to return to terminal emulation: \\[terminal-cease-edit]." +together with a command \\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 \\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")))