# HG changeset patch # User Edward M. Reingold # Date 765219476 0 # Node ID 652dc23b83fd4ae45c66260005c64a539fa0cfd6 # Parent eea1789dc6fd2f35995a9580329a04a554700272 (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. diff -r eea1789dc6fd -r 652dc23b83fd lisp/textmodes/tex-mode.el --- 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)