comparison lisp/process.el @ 2473:35aac3cef6af

[xemacs-hg @ 2005-01-09 09:44:43 by adrian] xemacs-21.5: Correct docstring of start-process-shell-command -------------------- ChangeLog entries follow: -------------------- lisp/ChangeLog addition: 2005-01-09 Adrian Aichner <adrian@xemacs.org> * process.el (start-process-shell-command): Correct docstring.
author adrian
date Sun, 09 Jan 2005 09:44:44 +0000
parents 23eaac87b4b0
children 81975997fb1a
comparison
equal deleted inserted replaced
2472:a0b979c35b7a 2473:35aac3cef6af
64 NAME is name for process. It is modified if necessary to make it unique. 64 NAME is name for process. It is modified if necessary to make it unique.
65 BUFFER is the buffer or (buffer-name) to associate with the process. 65 BUFFER is the buffer or (buffer-name) to associate with the process.
66 Process output goes at end of that buffer, unless you specify 66 Process output goes at end of that buffer, unless you specify
67 an output stream or filter function to handle the output. 67 an output stream or filter function to handle the output.
68 BUFFER may be also nil, meaning that this process is not associated 68 BUFFER may be also nil, meaning that this process is not associated
69 with any buffer 69 with any buffer.
70 Third arg is command name, the name of a shell command. 70 Variables `shell-file-name' and `shell-command-switch' are used to
71 start the process.
71 Remaining arguments are the arguments for the command. 72 Remaining arguments are the arguments for the command.
72 Wildcards and redirection are handled as usual in the shell." 73 Wildcards and redirection are handled as usual in the shell."
73 ;; We used to use `exec' to replace the shell with the command, 74 ;; We used to use `exec' to replace the shell with the command,
74 ;; but that failed to handle (...) and semicolon, etc. 75 ;; but that failed to handle (...) and semicolon, etc.
75 (start-process name buffer shell-file-name shell-command-switch 76 (start-process name buffer shell-file-name shell-command-switch