diff lisp/subr.el @ 103484:d0c5be11f069

(open-network-stream): Doc fix.
author Glenn Morris <rgm@gnu.org>
date Fri, 19 Jun 2009 03:06:40 +0000
parents 15fc92c2fca6
children 40b49259dd71
line wrap: on
line diff
--- a/lisp/subr.el	Fri Jun 19 01:51:07 2009 +0000
+++ b/lisp/subr.el	Fri Jun 19 03:06:40 2009 +0000
@@ -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)))