diff options
| author | Eli Zaretskii | 2006-10-13 19:25:26 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-10-13 19:25:26 +0000 |
| commit | 3f73d221ed395ef49ff7398cc5d132765ee9edbe (patch) | |
| tree | c510586d5f36591c5909c643a7fb84179cace9cb | |
| parent | c99240cc17349c10634c77c10f2d5b7c6f7f9316 (diff) | |
| download | emacs-3f73d221ed395ef49ff7398cc5d132765ee9edbe.tar.gz emacs-3f73d221ed395ef49ff7398cc5d132765ee9edbe.zip | |
(start-process-shell-command): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/subr.el | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 59528c0508a..b6fac7c992f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-10-13 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * subr.el (start-process-shell-command): Doc fix. | ||
| 4 | |||
| 1 | 2006-10-13 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2006-10-13 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * vc-hooks.el (vc-ignore-dir-regexp): Make it into a defcustom. | 7 | * vc-hooks.el (vc-ignore-dir-regexp): Make it into a defcustom. |
diff --git a/lisp/subr.el b/lisp/subr.el index 6668f6423d6..15d819063a4 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -2235,7 +2235,9 @@ BUFFER is the buffer (or buffer name) to associate with the process. | |||
| 2235 | BUFFER may be also nil, meaning that this process is not associated | 2235 | BUFFER may be also nil, meaning that this process is not associated |
| 2236 | with any buffer | 2236 | with any buffer |
| 2237 | COMMAND is the name of a shell command. | 2237 | COMMAND is the name of a shell command. |
| 2238 | Remaining arguments are the arguments for the command. | 2238 | Remaining arguments are the arguments for the command; they are all |
| 2239 | spliced together with blanks separating between each two of them, before | ||
| 2240 | passing the command to the shell. | ||
| 2239 | Wildcards and redirection are handled as usual in the shell. | 2241 | Wildcards and redirection are handled as usual in the shell. |
| 2240 | 2242 | ||
| 2241 | \(fn NAME BUFFER COMMAND &rest COMMAND-ARGS)" | 2243 | \(fn NAME BUFFER COMMAND &rest COMMAND-ARGS)" |