emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r112723: * callproc.c (call_process):


From: Xue Fuqiao
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112723: * callproc.c (call_process): Refine the doc string. (Bug#14045)
Date: Sat, 25 May 2013 09:55:00 +0800
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112723
committer: Xue Fuqiao <address@hidden>
branch nick: trunk
timestamp: Sat 2013-05-25 09:55:00 +0800
message:
  * callproc.c (call_process): Refine the doc string.  (Bug#14045)
modified:
  src/ChangeLog
  src/callproc.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-05-23 17:25:42 +0000
+++ b/src/ChangeLog     2013-05-25 01:55:00 +0000
@@ -1,3 +1,7 @@
+2013-05-25  Xue Fuqiao  <address@hidden>
+
+       * callproc.c (call_process): Refine the doc string.  (Bug#14045)
+
 2013-05-23  Stefan Monnier  <address@hidden>
 
        * keyboard.c: Apply keyboard decoding only to events that come directly

=== modified file 'src/callproc.c'
--- a/src/callproc.c    2013-03-24 12:59:45 +0000
+++ b/src/callproc.c    2013-05-25 01:55:00 +0000
@@ -190,11 +190,11 @@
        doc: /* Call PROGRAM synchronously in separate process.
 The remaining arguments are optional.
 The program's input comes from file INFILE (nil means `/dev/null').
-Insert output in BUFFER before point; t means current buffer; nil for BUFFER
+Insert output in DESTINATION before point; t means current buffer; nil for 
DESTINATION
  means discard it; 0 means discard and don't wait; and `(:file FILE)', where
  FILE is a file name string, means that it should be written to that file
  \(if the file already exists it is overwritten).
-BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
+DESTINATION can also have the form (REAL-BUFFER STDERR-FILE); in that case,
 REAL-BUFFER says what to do with standard output, as above,
 while STDERR-FILE says what to do with standard error in the child.
 STDERR-FILE may be nil (discard standard error output),
@@ -207,12 +207,12 @@
 signals a Lisp error.  `call-process' reports errors in execution of
 the program only through its return and output.
 
-If BUFFER is 0, `call-process' returns immediately with value nil.
+If DESTINATION 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.
 
-usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)  */)
+usage: (call-process PROGRAM &optional INFILE DESTINATION DISPLAY &rest ARGS)  
*/)
   (ptrdiff_t nargs, Lisp_Object *args)
 {
   Lisp_Object infile, buffer, current_dir, path;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]