aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii1998-06-29 13:32:48 +0000
committerEli Zaretskii1998-06-29 13:32:48 +0000
commit09ffb8b54395974807c8475391f478d3f950a720 (patch)
tree346f0c680b583706d5413f4fa5a4892737e063b6 /src
parent9c2ae13ad0af77c58f936abcbb96b2819d9c1c48 (diff)
downloademacs-09ffb8b54395974807c8475391f478d3f950a720.tar.gz
emacs-09ffb8b54395974807c8475391f478d3f950a720.zip
(Fcall_process) [! subprocesses]: Balance parentheses in an if clause.
Diffstat (limited to 'src')
-rw-r--r--src/callproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c
index a76db5ba4b1..cbc58c01cfa 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -228,7 +228,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
228#ifndef subprocesses 228#ifndef subprocesses
229 /* Without asynchronous processes we cannot have BUFFER == 0. */ 229 /* Without asynchronous processes we cannot have BUFFER == 0. */
230 if (nargs >= 3 230 if (nargs >= 3
231 && (INTEGERP (CONSP (args[2]) ? XCAR (args[2]) : args[2]) 231 && (INTEGERP (CONSP (args[2]) ? XCAR (args[2]) : args[2])))
232 error ("Operating system cannot handle asynchronous subprocesses"); 232 error ("Operating system cannot handle asynchronous subprocesses");
233#endif /* subprocesses */ 233#endif /* subprocesses */
234 234