Mercurial > emacs
changeset 40114:c8af574bcf48
(Fcall_process_region, Fcall_process): Add usage: string to doc string.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Sun, 21 Oct 2001 09:53:01 +0000 |
parents | 66132b83e52a |
children | 78a7615cd863 |
files | src/callproc.c |
diffstat | 1 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/callproc.c Sun Oct 21 09:51:56 2001 +0000 +++ b/src/callproc.c Sun Oct 21 09:53:01 2001 +0000 @@ -206,7 +206,9 @@ 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 @@ 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;