aboutsummaryrefslogtreecommitdiffstats
path: root/src/callproc.c
diff options
context:
space:
mode:
authorPaul Eggert2015-09-16 16:23:55 -0700
committerPaul Eggert2015-09-16 16:26:07 -0700
commit032ce1c7d1afb23e6b1265d91c5a97e45de071ce (patch)
treedab9ca1e540c23aeb15ee9ef8fdc6b78e1929b6d /src/callproc.c
parent309d39b832ccd72f99cc726090ff03f7e146948d (diff)
downloademacs-032ce1c7d1afb23e6b1265d91c5a97e45de071ce.tar.gz
emacs-032ce1c7d1afb23e6b1265d91c5a97e45de071ce.zip
Omit unnecessary \ before paren in C docstrings
Although \( is needed in docstrings in Elisp code, it is not needed in docstrings in C code, since C function definitiions do not start with a parenthesis. The backslashes made the docstrings a bit harder to read and to format in columns. Also, some C docstrings had ( in column 1 and this did not appear to be causing any problems. So, simplify C docstrings by replacing \( with ( and \) with ).
Diffstat (limited to 'src/callproc.c')
-rw-r--r--src/callproc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 39f0eb6265e..e38844e2da6 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -226,7 +226,7 @@ The program's input comes from file INFILE (nil means `/dev/null').
226Insert output in DESTINATION before point; t means current buffer; nil for DESTINATION 226Insert output in DESTINATION before point; t means current buffer; nil for DESTINATION
227 means discard it; 0 means discard and don't wait; and `(:file FILE)', where 227 means discard it; 0 means discard and don't wait; and `(:file FILE)', where
228 FILE is a file name string, means that it should be written to that file 228 FILE is a file name string, means that it should be written to that file
229 \(if the file already exists it is overwritten). 229 (if the file already exists it is overwritten).
230DESTINATION can also have the form (REAL-BUFFER STDERR-FILE); in that case, 230DESTINATION can also have the form (REAL-BUFFER STDERR-FILE); in that case,
231REAL-BUFFER says what to do with standard output, as above, 231REAL-BUFFER says what to do with standard output, as above,
232while STDERR-FILE says what to do with standard error in the child. 232while STDERR-FILE says what to do with standard error in the child.
@@ -1462,7 +1462,7 @@ This function searches `process-environment' for VARIABLE.
1462 1462
1463If optional parameter ENV is a list, then search this list instead of 1463If optional parameter ENV is a list, then search this list instead of
1464`process-environment', and return t when encountering a negative entry 1464`process-environment', and return t when encountering a negative entry
1465\(an entry for a variable with no value). */) 1465(an entry for a variable with no value). */)
1466 (Lisp_Object variable, Lisp_Object env) 1466 (Lisp_Object variable, Lisp_Object env)
1467{ 1467{
1468 char *value; 1468 char *value;