1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00
* lisp/comint.el (make-comint, make-comint-in-buffer): Mention return
value in the docstrings.  (Bug#6498)
This commit is contained in:
Štěpán Němec 2010-06-23 23:38:09 -07:00 committed by Glenn Morris
parent 29115ca9b0
commit 2330fa87a5
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
* comint.el (make-comint, make-comint-in-buffer): Mention return
value in the docstrings. (Bug#6498)
2010-06-24 Yoni Rabkin <yoni@rabkins.net>
* bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,

View File

@ -696,7 +696,9 @@ a running process in that buffer, it is not restarted. Optional fourth arg
STARTFILE is the name of a file, whose contents are sent to the
process as its initial input.
If PROGRAM is a string, any more args are arguments to PROGRAM."
If PROGRAM is a string, any more args are arguments to PROGRAM.
Returns the (possibly newly created) process buffer."
(or (fboundp 'start-file-process)
(error "Multi-processing is not supported for this system"))
(setq buffer (get-buffer-create (or buffer (concat "*" name "*"))))
@ -720,7 +722,9 @@ a running process in that buffer, it is not restarted. Optional third arg
STARTFILE is the name of a file, whose contents are sent to the
process as its initial input.
If PROGRAM is a string, any more args are arguments to PROGRAM."
If PROGRAM is a string, any more args are arguments to PROGRAM.
Returns the (possibly newly created) process buffer."
(apply #'make-comint-in-buffer name nil program startfile switches))
;;;###autoload