Mercurial > hg > xemacs-beta
comparison lisp/code-process.el @ 444:576fb035e263 r21-2-37
Import from CVS: tag r21-2-37
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:36:19 +0200 |
parents | abe6d1db359e |
children | 943eaba38521 |
comparison
equal
deleted
inserted
replaced
443:a8296e22da4e | 444:576fb035e263 |
---|---|
193 | 193 |
194 See also the function `find-operation-coding-system'.") | 194 See also the function `find-operation-coding-system'.") |
195 | 195 |
196 (defun open-network-stream (name buffer host service &optional protocol) | 196 (defun open-network-stream (name buffer host service &optional protocol) |
197 "Open a TCP connection for a service to a host. | 197 "Open a TCP connection for a service to a host. |
198 Return a subprocess-object to represent the connection. | 198 Return a process object to represent the connection. |
199 Input and output work as for subprocesses; `delete-process' closes it. | 199 Input and output work as for subprocesses; `delete-process' closes it. |
200 Args are NAME BUFFER HOST SERVICE. | 200 Args are NAME BUFFER HOST SERVICE. |
201 NAME is name for process. It is modified if necessary to make it unique. | 201 NAME is name for process. It is modified if necessary to make it unique. |
202 BUFFER is the buffer (or buffer-name) to associate with the process. | 202 BUFFER is the buffer (or buffer-name) to associate with the process. |
203 Process output goes at end of that buffer, unless you specify | 203 Process output goes at end of that buffer, unless you specify |