Mercurial > hg > xemacs-beta
comparison lisp/process.el @ 274:ca9a9ec9c1c1 r21-0b35
Import from CVS: tag r21-0b35
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:29:42 +0200 |
parents | 727739f917cb |
children | 19dcec799385 |
comparison
equal
deleted
inserted
replaced
273:411aac7253ef | 274:ca9a9ec9c1c1 |
---|---|
302 Process output goes at end of that buffer, unless you specify | 302 Process output goes at end of that buffer, unless you specify |
303 an output stream or filter function to handle the output. | 303 an output stream or filter function to handle the output. |
304 BUFFER may be also nil, meaning that this process is not associated | 304 BUFFER may be also nil, meaning that this process is not associated |
305 with any buffer | 305 with any buffer |
306 Third arg is program file name. It is searched for as in the shell. | 306 Third arg is program file name. It is searched for as in the shell. |
307 Remaining arguments are strings to give program as arguments. | 307 Remaining arguments are strings to give program as arguments." |
308 INCODE and OUTCODE specify the coding-system objects used in input/output | |
309 from/to the process." | |
310 (apply 'start-process-internal name buffer program program-args)) | 308 (apply 'start-process-internal name buffer program program-args)) |
311 | 309 |
312 (defun open-network-stream (name buffer host service) | 310 (defun open-network-stream (name buffer host service) |
313 "Open a TCP connection for a service to a host. | 311 "Open a TCP connection for a service to a host. |
314 Returns a subprocess-object to represent the connection. | 312 Returns a subprocess-object to represent the connection. |