emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99893: Doc fix.


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r99893: Doc fix.
Date: Wed, 23 Jun 2010 23:38:09 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99893
author: Stepán Nemec <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: emacs-23
timestamp: Wed 2010-06-23 23:38:09 -0700
message:
  Doc fix.
  
  * lisp/comint.el (make-comint, make-comint-in-buffer): Mention return
  value in the docstrings.  (Bug#6498)
modified:
  lisp/ChangeLog
  lisp/comint.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-06-24 06:30:51 +0000
+++ b/lisp/ChangeLog    2010-06-24 06:38:09 +0000
@@ -1,3 +1,8 @@
+2010-06-24  Štěpán Němec  <address@hidden>  (tiny change)
+
+       * comint.el (make-comint, make-comint-in-buffer): Mention return
+       value in the docstrings.  (Bug#6498)
+
 2010-06-24  Yoni Rabkin  <address@hidden>
 
        * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,

=== modified file 'lisp/comint.el'
--- a/lisp/comint.el    2010-01-13 08:35:10 +0000
+++ b/lisp/comint.el    2010-06-24 06:38:09 +0000
@@ -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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]