Mercurial > emacs
changeset 870:1b3af6ad85be
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 24 Jul 1992 22:37:33 +0000 |
parents | 7861f8756850 |
children | 34b6b37092c7 |
files | lisp/comint.el lisp/simple.el lisp/textmodes/tex-mode.el |
diffstat | 3 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/comint.el Fri Jul 24 21:00:38 1992 +0000 +++ b/lisp/comint.el Fri Jul 24 22:37:33 1992 +0000 @@ -300,6 +300,7 @@ ;;; Note that this guy, unlike shell.el's make-shell, barfs if you pass it () ;;; for the second argument (program). +;;;###autoload (defun make-comint (name program &optional startfile &rest switches) (let ((buffer (get-buffer-create (concat "*" name "*")))) ;; If no process, or nuked process, crank up a new one and put buffer in
--- a/lisp/simple.el Fri Jul 24 21:00:38 1992 +0000 +++ b/lisp/simple.el Fri Jul 24 22:37:33 1992 +0000 @@ -378,8 +378,8 @@ The result is executed, repeating the command as changed. If the command has been changed or is not the most recent previous command it is added to the front of the command history. -Whilst editing the command, the following commands are available: -\\{repeat-complex-command-map}" +You can use the minibuffer history commands \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element] +to get different commands to edit and resubmit." (interactive "p") (let ((elt (nth (1- arg) command-history)) (minibuffer-history-position arg)
--- a/lisp/textmodes/tex-mode.el Fri Jul 24 21:00:38 1992 +0000 +++ b/lisp/textmodes/tex-mode.el Fri Jul 24 22:37:33 1992 +0000 @@ -26,7 +26,8 @@ ;;; Code: -(require 'comint) +;; This was a pain. Now, make-comint should autoload comint. +;; (require 'comint) (defvar tex-shell-file-name nil "*If non-nil, is file name to use for the subshell in which TeX is run.")