aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1992-07-24 22:37:33 +0000
committerRichard M. Stallman1992-07-24 22:37:33 +0000
commiteb6e9899443ee0ce93d0574cc263c49326e6aaa5 (patch)
treee3ab457a6d973fc4b06c4704f7d37d2af2a3433e
parent1bd6009347e5ab4b2f7491898877be96dfffe2fc (diff)
downloademacs-eb6e9899443ee0ce93d0574cc263c49326e6aaa5.tar.gz
emacs-eb6e9899443ee0ce93d0574cc263c49326e6aaa5.zip
*** empty log message ***
-rw-r--r--lisp/comint.el1
-rw-r--r--lisp/simple.el4
-rw-r--r--lisp/textmodes/tex-mode.el3
3 files changed, 5 insertions, 3 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index fc8ba3103e3..965268dcdb7 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -300,6 +300,7 @@ name of one"
300 300
301;;; Note that this guy, unlike shell.el's make-shell, barfs if you pass it () 301;;; Note that this guy, unlike shell.el's make-shell, barfs if you pass it ()
302;;; for the second argument (program). 302;;; for the second argument (program).
303;;;###autoload
303(defun make-comint (name program &optional startfile &rest switches) 304(defun make-comint (name program &optional startfile &rest switches)
304 (let ((buffer (get-buffer-create (concat "*" name "*")))) 305 (let ((buffer (get-buffer-create (concat "*" name "*"))))
305 ;; If no process, or nuked process, crank up a new one and put buffer in 306 ;; If no process, or nuked process, crank up a new one and put buffer in
diff --git a/lisp/simple.el b/lisp/simple.el
index 6c7cce59c03..0ed38887103 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -378,8 +378,8 @@ The command is placed in the minibuffer as a Lisp form for editing.
378The result is executed, repeating the command as changed. 378The result is executed, repeating the command as changed.
379If the command has been changed or is not the most recent previous command 379If the command has been changed or is not the most recent previous command
380it is added to the front of the command history. 380it is added to the front of the command history.
381Whilst editing the command, the following commands are available: 381You can use the minibuffer history commands \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element]
382\\{repeat-complex-command-map}" 382to get different commands to edit and resubmit."
383 (interactive "p") 383 (interactive "p")
384 (let ((elt (nth (1- arg) command-history)) 384 (let ((elt (nth (1- arg) command-history))
385 (minibuffer-history-position arg) 385 (minibuffer-history-position arg)
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index f7d91eb502e..18b0782b92d 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -26,7 +26,8 @@
26 26
27;;; Code: 27;;; Code:
28 28
29(require 'comint) 29;; This was a pain. Now, make-comint should autoload comint.
30;; (require 'comint)
30 31
31(defvar tex-shell-file-name nil 32(defvar tex-shell-file-name nil
32 "*If non-nil, is file name to use for the subshell in which TeX is run.") 33 "*If non-nil, is file name to use for the subshell in which TeX is run.")