diff options
| author | Erik Naggum <erik@naggum.no> | 1996-02-22 02:50:30 +0000 |
|---|---|---|
| committer | Erik Naggum <erik@naggum.no> | 1996-02-22 02:50:30 +0000 |
| commit | 87206843a32e1407ca94cc54533eaff6b9790e7f (patch) | |
| tree | aaab6d6f4d224a7dc2c547c3bfb7ae5f9c6195a0 /lisp | |
| parent | b90a00f27fd6d4099e974ba1554f53142066cc01 (diff) | |
| download | emacs-87206843a32e1407ca94cc54533eaff6b9790e7f.tar.gz | |
(make-comint, comint-run): Fix autoload cookie.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/comint.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index 95be2b5e08e..f0e717ec09d 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -503,7 +503,7 @@ BUFFER can be either a buffer or the name of one." ;; Note that this guy, unlike shell.el's make-shell, barfs if you pass it () ;; for the second argument (program). -;;###autoload +;;;###autoload (defun make-comint (name program &optional startfile &rest switches) "Make a comint process NAME in a buffer, running PROGRAM. The name of the buffer is made by surrounding NAME with `*'s. @@ -526,7 +526,7 @@ If PROGRAM is a string, any more args are arguments to PROGRAM." (comint-exec buffer name program startfile switches))) buffer)) -;;###autoload +;;;###autoload (defun comint-run (program) "Run PROGRAM in a comint buffer and switch to it. The buffer name is made by surrounding the file name of PROGRAM with `*'s. |
