Mercurial > emacs
changeset 6632:652dc23b83fd
(tex-start-shell): Use shell-mode-map (instead of comint-mode-map) because
it's bit a nicer.
Change the "require" from comint to shell for the same reason.
author | Edward M. Reingold <reingold@emr.cs.iit.edu> |
---|---|
date | Fri, 01 Apr 1994 16:57:56 +0000 |
parents | eea1789dc6fd |
children | 451a2973d86b |
files | lisp/textmodes/tex-mode.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/tex-mode.el Fri Apr 01 13:53:31 1994 +0000 +++ b/lisp/textmodes/tex-mode.el Fri Apr 01 16:57:56 1994 +0000 @@ -26,7 +26,7 @@ ;;; Code: -(require 'comint) +(require 'shell) (require 'compile) ;;;###autoload @@ -814,7 +814,7 @@ (let ((proc (get-process "tex-shell"))) (set-process-sentinel proc 'tex-shell-sentinel) (process-kill-without-query proc) - (setq tex-shell-map (copy-keymap comint-mode-map)) + (setq tex-shell-map (copy-keymap shell-mode-map)) (tex-define-common-keys tex-shell-map) (use-local-map tex-shell-map) (run-hooks 'tex-shell-hook)