diff options
| author | Erik Naggum | 1996-02-22 02:50:30 +0000 |
|---|---|---|
| committer | Erik Naggum | 1996-02-22 02:50:30 +0000 |
| commit | 87206843a32e1407ca94cc54533eaff6b9790e7f (patch) | |
| tree | aaab6d6f4d224a7dc2c547c3bfb7ae5f9c6195a0 | |
| parent | b90a00f27fd6d4099e974ba1554f53142066cc01 (diff) | |
| download | emacs-87206843a32e1407ca94cc54533eaff6b9790e7f.tar.gz emacs-87206843a32e1407ca94cc54533eaff6b9790e7f.zip | |
(make-comint, comint-run): Fix autoload cookie.
| -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." | |||
| 503 | 503 | ||
| 504 | ;; Note that this guy, unlike shell.el's make-shell, barfs if you pass it () | 504 | ;; Note that this guy, unlike shell.el's make-shell, barfs if you pass it () |
| 505 | ;; for the second argument (program). | 505 | ;; for the second argument (program). |
| 506 | ;;###autoload | 506 | ;;;###autoload |
| 507 | (defun make-comint (name program &optional startfile &rest switches) | 507 | (defun make-comint (name program &optional startfile &rest switches) |
| 508 | "Make a comint process NAME in a buffer, running PROGRAM. | 508 | "Make a comint process NAME in a buffer, running PROGRAM. |
| 509 | The name of the buffer is made by surrounding NAME with `*'s. | 509 | 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." | |||
| 526 | (comint-exec buffer name program startfile switches))) | 526 | (comint-exec buffer name program startfile switches))) |
| 527 | buffer)) | 527 | buffer)) |
| 528 | 528 | ||
| 529 | ;;###autoload | 529 | ;;;###autoload |
| 530 | (defun comint-run (program) | 530 | (defun comint-run (program) |
| 531 | "Run PROGRAM in a comint buffer and switch to it. | 531 | "Run PROGRAM in a comint buffer and switch to it. |
| 532 | The buffer name is made by surrounding the file name of PROGRAM with `*'s. | 532 | The buffer name is made by surrounding the file name of PROGRAM with `*'s. |