1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-24 06:20:43 -08:00

*** empty log message ***

This commit is contained in:
Richard M. Stallman 1992-07-24 22:37:33 +00:00
parent 1bd6009347
commit eb6e989944
3 changed files with 5 additions and 3 deletions

View file

@ -300,6 +300,7 @@ name of one"
;;; Note that this guy, unlike shell.el's make-shell, barfs if you pass it () ;;; Note that this guy, unlike shell.el's make-shell, barfs if you pass it ()
;;; for the second argument (program). ;;; for the second argument (program).
;;;###autoload
(defun make-comint (name program &optional startfile &rest switches) (defun make-comint (name program &optional startfile &rest switches)
(let ((buffer (get-buffer-create (concat "*" name "*")))) (let ((buffer (get-buffer-create (concat "*" name "*"))))
;; If no process, or nuked process, crank up a new one and put buffer in ;; If no process, or nuked process, crank up a new one and put buffer in

View file

@ -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. The result is executed, repeating the command as changed.
If the command has been changed or is not the most recent previous command If the command has been changed or is not the most recent previous command
it is added to the front of the command history. it is added to the front of the command history.
Whilst editing the command, the following commands are available: You can use the minibuffer history commands \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element]
\\{repeat-complex-command-map}" to get different commands to edit and resubmit."
(interactive "p") (interactive "p")
(let ((elt (nth (1- arg) command-history)) (let ((elt (nth (1- arg) command-history))
(minibuffer-history-position arg) (minibuffer-history-position arg)

View file

@ -26,7 +26,8 @@
;;; Code: ;;; Code:
(require 'comint) ;; This was a pain. Now, make-comint should autoload comint.
;; (require 'comint)
(defvar tex-shell-file-name nil (defvar tex-shell-file-name nil
"*If non-nil, is file name to use for the subshell in which TeX is run.") "*If non-nil, is file name to use for the subshell in which TeX is run.")