Mercurial > emacs
comparison lisp/subr.el @ 103485:40b49259dd71
Fix previous change, sigh.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Fri, 19 Jun 2009 03:08:54 +0000 |
parents | d0c5be11f069 |
children | 4faf5698814a |
comparison
equal
deleted
inserted
replaced
103484:d0c5be11f069 | 103485:40b49259dd71 |
---|---|
1685 (defun open-network-stream (name buffer host service) | 1685 (defun open-network-stream (name buffer host service) |
1686 "Open a TCP connection for a service to a host. | 1686 "Open a TCP connection for a service to a host. |
1687 Returns a subprocess-object to represent the connection. | 1687 Returns a subprocess-object to represent the connection. |
1688 Input and output work as for subprocesses; `delete-process' closes it. | 1688 Input and output work as for subprocesses; `delete-process' closes it. |
1689 | 1689 |
1690 NAME is the name for process. It is modified if necessary to make it unique. | 1690 NAME is the name for the process. It is modified if necessary to make |
1691 it unique. | |
1691 BUFFER is the buffer (or buffer name) to associate with the | 1692 BUFFER is the buffer (or buffer name) to associate with the |
1692 process. Process output goes at end of that buffer. BUFFER may | 1693 process. Process output goes at end of that buffer. BUFFER may |
1693 be nil, meaning that this process is not associated with any buffer. | 1694 be nil, meaning that this process is not associated with any buffer. |
1694 HOST is the name or IP address of the host to connect to. | 1695 HOST is the name or IP address of the host to connect to. |
1695 SERVICE is the name of the service desired, or an integer specifying | 1696 SERVICE is the name of the service desired, or an integer specifying |