diff options
| author | Miles Bader | 2001-10-21 09:53:01 +0000 |
|---|---|---|
| committer | Miles Bader | 2001-10-21 09:53:01 +0000 |
| commit | d98b59b593083baac1a6e378a9e44c66d25210a5 (patch) | |
| tree | c98d0fc0d7f916210c10e1657204c28c9ef475be /src | |
| parent | ae8e81224e5b308d75bd283a2395d326126e0a46 (diff) | |
| download | emacs-d98b59b593083baac1a6e378a9e44c66d25210a5.tar.gz emacs-d98b59b593083baac1a6e378a9e44c66d25210a5.zip | |
(Fcall_process_region, Fcall_process): Add usage: string to doc string.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c index f8709ee42d0..6798caba8b0 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -206,7 +206,9 @@ Remaining arguments are strings passed as command arguments to PROGRAM. | |||
| 206 | If BUFFER is 0, `call-process' returns immediately with value nil. | 206 | If BUFFER is 0, `call-process' returns immediately with value nil. |
| 207 | Otherwise it waits for PROGRAM to terminate | 207 | Otherwise it waits for PROGRAM to terminate |
| 208 | and returns a numeric exit status or a signal description string. | 208 | and returns a numeric exit status or a signal description string. |
| 209 | If you quit, the process is killed with SIGINT, or SIGKILL if you quit again. */) | 209 | If you quit, the process is killed with SIGINT, or SIGKILL if you quit again. |
| 210 | |||
| 211 | usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */) | ||
| 210 | (nargs, args) | 212 | (nargs, args) |
| 211 | int nargs; | 213 | int nargs; |
| 212 | register Lisp_Object *args; | 214 | register Lisp_Object *args; |
| @@ -990,7 +992,9 @@ Remaining args are passed to PROGRAM at startup as command args. | |||
| 990 | If BUFFER is nil, `call-process-region' returns immediately with value nil. | 992 | If BUFFER is nil, `call-process-region' returns immediately with value nil. |
| 991 | Otherwise it waits for PROGRAM to terminate | 993 | Otherwise it waits for PROGRAM to terminate |
| 992 | and returns a numeric exit status or a signal description string. | 994 | and returns a numeric exit status or a signal description string. |
| 993 | If you quit, the process is killed with SIGINT, or SIGKILL if you quit again. */) | 995 | If you quit, the process is killed with SIGINT, or SIGKILL if you quit again. |
| 996 | |||
| 997 | usage: (call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS) */) | ||
| 994 | (nargs, args) | 998 | (nargs, args) |
| 995 | int nargs; | 999 | int nargs; |
| 996 | register Lisp_Object *args; | 1000 | register Lisp_Object *args; |