# HG changeset patch # User Glenn Morris # Date 1277361489 25200 # Node ID 15e91f6019331150f21b098c78d9294d165f512d # Parent 87794f1fc758600e7983e9b1f69bf4aa5b838d28 Doc fix. * lisp/comint.el (make-comint, make-comint-in-buffer): Mention return value in the docstrings. (Bug#6498) diff -r 87794f1fc758 -r 15e91f601933 lisp/ChangeLog --- a/lisp/ChangeLog Wed Jun 23 23:30:51 2010 -0700 +++ b/lisp/ChangeLog Wed Jun 23 23:38:09 2010 -0700 @@ -1,3 +1,8 @@ +2010-06-24 Štěpán Němec (tiny change) + + * comint.el (make-comint, make-comint-in-buffer): Mention return + value in the docstrings. (Bug#6498) + 2010-06-24 Yoni Rabkin * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern, diff -r 87794f1fc758 -r 15e91f601933 lisp/comint.el --- a/lisp/comint.el Wed Jun 23 23:30:51 2010 -0700 +++ b/lisp/comint.el Wed Jun 23 23:38:09 2010 -0700 @@ -696,7 +696,9 @@ 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 @@ 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