emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp ChangeLog subr.el


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp ChangeLog subr.el
Date: Fri, 19 Jun 2009 03:06:43 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/06/19 03:06:43

Modified files:
        lisp           : ChangeLog subr.el 

Log message:
        (open-network-stream): Doc fix.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.15697&r2=1.15698
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/subr.el?cvsroot=emacs&r1=1.637&r2=1.638

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.15697
retrieving revision 1.15698
diff -u -b -r1.15697 -r1.15698
--- ChangeLog   19 Jun 2009 01:51:07 -0000      1.15697
+++ ChangeLog   19 Jun 2009 03:06:40 -0000      1.15698
@@ -1,3 +1,7 @@
+2009-06-19  Glenn Morris  <address@hidden>
+
+       * subr.el (open-network-stream): Doc fix.
+
 2009-06-19  Juanma Barranquero  <address@hidden>
 
        * international/fontset.el (setup-default-fontset):

Index: subr.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/subr.el,v
retrieving revision 1.637
retrieving revision 1.638
diff -u -b -r1.637 -r1.638
--- subr.el     29 Apr 2009 04:46:20 -0000      1.637
+++ subr.el     19 Jun 2009 03:06:42 -0000      1.638
@@ -1687,16 +1687,16 @@
 Returns a subprocess-object to represent the connection.
 Input and output work as for subprocesses; `delete-process' closes it.
 
-Args are NAME BUFFER HOST SERVICE.
-NAME is name for process.  It is modified if necessary to make it unique.
-BUFFER is the buffer (or buffer name) to associate with the process.
- Process output goes at end of that buffer, unless you specify
- an output stream or filter function to handle the output.
- BUFFER may be also nil, meaning that this process is not associated
- with any buffer.
-HOST is name of the host to connect to, or its IP address.
-SERVICE is name of the service desired, or an integer specifying
- a port number to connect to."
+NAME is the name for process.  It is modified if necessary to make it unique.
+BUFFER is the buffer (or buffer name) to associate with the
+ process.  Process output goes at end of that buffer.  BUFFER may
+ be nil, meaning that this process is not associated with any buffer.
+HOST is the name or IP address of the host to connect to.
+SERVICE is the name of the service desired, or an integer specifying
+ a port number to connect to.
+
+This is a wrapper around `make-network-process', and only offers a
+subset of its functionality."
     (make-network-process :name name :buffer buffer
                                     :host host :service service)))
 




reply via email to

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