aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2009-06-19 03:06:40 +0000
committerGlenn Morris <[email protected]>2009-06-19 03:06:40 +0000
commit6ec6d6f469928db58895fb38ea8d6aadfd5f5a60 (patch)
tree9f3638caf2b2cb4fcc05708e895bb3da808dbb27 /lisp
parentef34da7f7e7daa8cea19af5e5032af01d2fdae0a (diff)
(open-network-stream): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/subr.el20
2 files changed, 14 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 359150a9d7..6b91985ed3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2009-06-19 Glenn Morris <[email protected]>
+
+ * subr.el (open-network-stream): Doc fix.
+
2009-06-19 Juanma Barranquero <[email protected]>
* international/fontset.el (setup-default-fontset):
diff --git a/lisp/subr.el b/lisp/subr.el
index aa60ab7ca8..1d4abfb070 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1687,16 +1687,16 @@ Signal an error if the program returns with a non-zero exit status."
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)))