aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader <[email protected]>2001-10-21 09:53:01 +0000
committerMiles Bader <[email protected]>2001-10-21 09:53:01 +0000
commitd98b59b593083baac1a6e378a9e44c66d25210a5 (patch)
treec98d0fc0d7f916210c10e1657204c28c9ef475be
parentae8e81224e5b308d75bd283a2395d326126e0a46 (diff)
(Fcall_process_region, Fcall_process): Add usage: string to doc string.
-rw-r--r--src/callproc.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c
index f8709ee42d..6798caba8b 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -206,7 +206,9 @@ Remaining arguments are strings passed as command arguments to PROGRAM.
If BUFFER is 0, `call-process' returns immediately with value nil.
Otherwise it waits for PROGRAM to terminate
and returns a numeric exit status or a signal description string.
-If you quit, the process is killed with SIGINT, or SIGKILL if you quit again. */)
+If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
+
+usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
(nargs, args)
int nargs;
register Lisp_Object *args;
@@ -990,7 +992,9 @@ Remaining args are passed to PROGRAM at startup as command args.
If BUFFER is nil, `call-process-region' returns immediately with value nil.
Otherwise it waits for PROGRAM to terminate
and returns a numeric exit status or a signal description string.
-If you quit, the process is killed with SIGINT, or SIGKILL if you quit again. */)
+If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
+
+usage: (call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS) */)
(nargs, args)
int nargs;
register Lisp_Object *args;