diff options
Diffstat (limited to 'lisp')
-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" ;;; 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 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. 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) 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 @@ ;;; 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.") |