diff options
| author | Richard M. Stallman | 1992-07-24 22:37:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-07-24 22:37:33 +0000 |
| commit | eb6e9899443ee0ce93d0574cc263c49326e6aaa5 (patch) | |
| tree | e3ab457a6d973fc4b06c4704f7d37d2af2a3433e | |
| parent | 1bd6009347e5ab4b2f7491898877be96dfffe2fc (diff) | |
| download | emacs-eb6e9899443ee0ce93d0574cc263c49326e6aaa5.tar.gz emacs-eb6e9899443ee0ce93d0574cc263c49326e6aaa5.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/comint.el | 1 | ||||
| -rw-r--r-- | lisp/simple.el | 4 | ||||
| -rw-r--r-- | lisp/textmodes/tex-mode.el | 3 |
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. | |||
| 378 | The result is executed, repeating the command as changed. | 378 | The result is executed, repeating the command as changed. |
| 379 | If the command has been changed or is not the most recent previous command | 379 | If the command has been changed or is not the most recent previous command |
| 380 | it is added to the front of the command history. | 380 | it is added to the front of the command history. |
| 381 | Whilst editing the command, the following commands are available: | 381 | You can use the minibuffer history commands \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element] |
| 382 | \\{repeat-complex-command-map}" | 382 | to 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.") |