diff lisp/textmodes/tex-mode.el @ 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 855f4f2d24da
children 27e6ef8494b2
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)