Convert consecutive FSF copyright years to ranges.
[emacs.git] / src / callproc.c
blob8ce80022e9a26159519c5dc21ada08d2adf75ef2
1 /* Synchronous subprocess invocation for GNU Emacs.
2 Copyright (C) 1985-1988, 1993-1995, 1999-2011
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
22 #include <signal.h>
23 #include <errno.h>
24 #include <stdio.h>
25 #include <setjmp.h>
26 #include <sys/types.h>
27 #include <unistd.h>
29 #include <sys/file.h>
30 #include <fcntl.h>
32 #ifdef WINDOWSNT
33 #define NOMINMAX
34 #include <windows.h>
35 #include "w32.h"
36 #define _P_NOWAIT 1 /* from process.h */
37 #endif
39 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
40 #include <sys/stat.h>
41 #include <sys/param.h>
42 #endif /* MSDOS */
44 #include "lisp.h"
45 #include "commands.h"
46 #include "buffer.h"
47 #include "character.h"
48 #include "ccl.h"
49 #include "coding.h"
50 #include "composite.h"
51 #include <epaths.h>
52 #include "process.h"
53 #include "syssignal.h"
54 #include "systty.h"
55 #include "blockinput.h"
56 #include "frame.h"
57 #include "termhooks.h"
59 #ifdef MSDOS
60 #include "msdos.h"
61 #endif
63 #ifndef USE_CRT_DLL
64 extern char **environ;
65 #endif
67 #ifdef HAVE_SETPGID
68 #if !defined (USG)
69 #undef setpgrp
70 #define setpgrp setpgid
71 #endif
72 #endif
74 /* Pattern used by call-process-region to make temp files. */
75 static Lisp_Object Vtemp_file_name_pattern;
77 #ifdef DOS_NT
78 Lisp_Object Qbuffer_file_type;
79 #endif /* DOS_NT */
81 /* True if we are about to fork off a synchronous process or if we
82 are waiting for it. */
83 int synch_process_alive;
85 /* Nonzero => this is a string explaining death of synchronous subprocess. */
86 const char *synch_process_death;
88 /* Nonzero => this is the signal number that terminated the subprocess. */
89 int synch_process_termsig;
91 /* If synch_process_death is zero,
92 this is exit code of synchronous subprocess. */
93 int synch_process_retcode;
96 /* Clean up when exiting Fcall_process.
97 On MSDOS, delete the temporary file on any kind of termination.
98 On Unix, kill the process and any children on termination by signal. */
100 /* Nonzero if this is termination due to exit. */
101 static int call_process_exited;
103 EXFUN (Fgetenv_internal, 2);
105 static Lisp_Object
106 call_process_kill (Lisp_Object fdpid)
108 emacs_close (XFASTINT (Fcar (fdpid)));
109 EMACS_KILLPG (XFASTINT (Fcdr (fdpid)), SIGKILL);
110 synch_process_alive = 0;
111 return Qnil;
114 Lisp_Object
115 call_process_cleanup (Lisp_Object arg)
117 Lisp_Object fdpid = Fcdr (arg);
118 #if defined (MSDOS)
119 Lisp_Object file;
120 #else
121 int pid;
122 #endif
124 Fset_buffer (Fcar (arg));
126 #if defined (MSDOS)
127 /* for MSDOS fdpid is really (fd . tempfile) */
128 file = Fcdr (fdpid);
129 emacs_close (XFASTINT (Fcar (fdpid)));
130 if (strcmp (SDATA (file), NULL_DEVICE) != 0)
131 unlink (SDATA (file));
132 #else /* not MSDOS */
133 pid = XFASTINT (Fcdr (fdpid));
135 if (call_process_exited)
137 emacs_close (XFASTINT (Fcar (fdpid)));
138 return Qnil;
141 if (EMACS_KILLPG (pid, SIGINT) == 0)
143 int count = SPECPDL_INDEX ();
144 record_unwind_protect (call_process_kill, fdpid);
145 message1 ("Waiting for process to die...(type C-g again to kill it instantly)");
146 immediate_quit = 1;
147 QUIT;
148 wait_for_termination (pid);
149 immediate_quit = 0;
150 specpdl_ptr = specpdl + count; /* Discard the unwind protect. */
151 message1 ("Waiting for process to die...done");
153 synch_process_alive = 0;
154 emacs_close (XFASTINT (Fcar (fdpid)));
155 #endif /* not MSDOS */
156 return Qnil;
159 DEFUN ("call-process", Fcall_process, Scall_process, 1, MANY, 0,
160 doc: /* Call PROGRAM synchronously in separate process.
161 The remaining arguments are optional.
162 The program's input comes from file INFILE (nil means `/dev/null').
163 Insert output in BUFFER before point; t means current buffer;
164 nil for BUFFER means discard it; 0 means discard and don't wait.
165 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
166 REAL-BUFFER says what to do with standard output, as above,
167 while STDERR-FILE says what to do with standard error in the child.
168 STDERR-FILE may be nil (discard standard error output),
169 t (mix it with ordinary output), or a file name string.
171 Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
172 Remaining arguments are strings passed as command arguments to PROGRAM.
174 If executable PROGRAM can't be found as an executable, `call-process'
175 signals a Lisp error. `call-process' reports errors in execution of
176 the program only through its return and output.
178 If BUFFER is 0, `call-process' returns immediately with value nil.
179 Otherwise it waits for PROGRAM to terminate
180 and returns a numeric exit status or a signal description string.
181 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
183 usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
184 (int nargs, register Lisp_Object *args)
186 Lisp_Object infile, buffer, current_dir, path;
187 int display_p;
188 int fd[2];
189 int filefd;
190 register int pid;
191 #define CALLPROC_BUFFER_SIZE_MIN (16 * 1024)
192 #define CALLPROC_BUFFER_SIZE_MAX (4 * CALLPROC_BUFFER_SIZE_MIN)
193 char buf[CALLPROC_BUFFER_SIZE_MAX];
194 int bufsize = CALLPROC_BUFFER_SIZE_MIN;
195 int count = SPECPDL_INDEX ();
197 register const unsigned char **new_argv;
198 /* File to use for stderr in the child.
199 t means use same as standard output. */
200 Lisp_Object error_file;
201 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
202 char *outf, *tempfile;
203 int outfilefd;
204 #endif
205 struct coding_system process_coding; /* coding-system of process output */
206 struct coding_system argument_coding; /* coding-system of arguments */
207 /* Set to the return value of Ffind_operation_coding_system. */
208 Lisp_Object coding_systems;
210 /* Qt denotes that Ffind_operation_coding_system is not yet called. */
211 coding_systems = Qt;
213 CHECK_STRING (args[0]);
215 error_file = Qt;
217 #ifndef subprocesses
218 /* Without asynchronous processes we cannot have BUFFER == 0. */
219 if (nargs >= 3
220 && (INTEGERP (CONSP (args[2]) ? XCAR (args[2]) : args[2])))
221 error ("Operating system cannot handle asynchronous subprocesses");
222 #endif /* subprocesses */
224 /* Decide the coding-system for giving arguments. */
226 Lisp_Object val, *args2;
227 int i;
229 /* If arguments are supplied, we may have to encode them. */
230 if (nargs >= 5)
232 int must_encode = 0;
233 Lisp_Object coding_attrs;
235 for (i = 4; i < nargs; i++)
236 CHECK_STRING (args[i]);
238 for (i = 4; i < nargs; i++)
239 if (STRING_MULTIBYTE (args[i]))
240 must_encode = 1;
242 if (!NILP (Vcoding_system_for_write))
243 val = Vcoding_system_for_write;
244 else if (! must_encode)
245 val = Qraw_text;
246 else
248 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
249 args2[0] = Qcall_process;
250 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
251 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
252 val = CONSP (coding_systems) ? XCDR (coding_systems) : Qnil;
254 val = complement_process_encoding_system (val);
255 setup_coding_system (Fcheck_coding_system (val), &argument_coding);
256 coding_attrs = CODING_ID_ATTRS (argument_coding.id);
257 if (NILP (CODING_ATTR_ASCII_COMPAT (coding_attrs)))
259 /* We should not use an ASCII incompatible coding system. */
260 val = raw_text_coding_system (val);
261 setup_coding_system (val, &argument_coding);
266 if (nargs >= 2 && ! NILP (args[1]))
268 infile = Fexpand_file_name (args[1], current_buffer->directory);
269 CHECK_STRING (infile);
271 else
272 infile = build_string (NULL_DEVICE);
274 if (nargs >= 3)
276 buffer = args[2];
278 /* If BUFFER is a list, its meaning is
279 (BUFFER-FOR-STDOUT FILE-FOR-STDERR). */
280 if (CONSP (buffer))
282 if (CONSP (XCDR (buffer)))
284 Lisp_Object stderr_file;
285 stderr_file = XCAR (XCDR (buffer));
287 if (NILP (stderr_file) || EQ (Qt, stderr_file))
288 error_file = stderr_file;
289 else
290 error_file = Fexpand_file_name (stderr_file, Qnil);
293 buffer = XCAR (buffer);
296 if (!(EQ (buffer, Qnil)
297 || EQ (buffer, Qt)
298 || INTEGERP (buffer)))
300 Lisp_Object spec_buffer;
301 spec_buffer = buffer;
302 buffer = Fget_buffer_create (buffer);
303 /* Mention the buffer name for a better error message. */
304 if (NILP (buffer))
305 CHECK_BUFFER (spec_buffer);
306 CHECK_BUFFER (buffer);
309 else
310 buffer = Qnil;
312 /* Make sure that the child will be able to chdir to the current
313 buffer's current directory, or its unhandled equivalent. We
314 can't just have the child check for an error when it does the
315 chdir, since it's in a vfork.
317 We have to GCPRO around this because Fexpand_file_name,
318 Funhandled_file_name_directory, and Ffile_accessible_directory_p
319 might call a file name handling function. The argument list is
320 protected by the caller, so all we really have to worry about is
321 buffer. */
323 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
325 current_dir = current_buffer->directory;
327 GCPRO4 (infile, buffer, current_dir, error_file);
329 current_dir = Funhandled_file_name_directory (current_dir);
330 if (NILP (current_dir))
331 /* If the file name handler says that current_dir is unreachable, use
332 a sensible default. */
333 current_dir = build_string ("~/");
334 current_dir = expand_and_dir_to_file (current_dir, Qnil);
335 current_dir = Ffile_name_as_directory (current_dir);
337 if (NILP (Ffile_accessible_directory_p (current_dir)))
338 report_file_error ("Setting current directory",
339 Fcons (current_buffer->directory, Qnil));
341 if (STRING_MULTIBYTE (infile))
342 infile = ENCODE_FILE (infile);
343 if (STRING_MULTIBYTE (current_dir))
344 current_dir = ENCODE_FILE (current_dir);
345 if (STRINGP (error_file) && STRING_MULTIBYTE (error_file))
346 error_file = ENCODE_FILE (error_file);
347 UNGCPRO;
350 display_p = INTERACTIVE && nargs >= 4 && !NILP (args[3]);
352 filefd = emacs_open (SDATA (infile), O_RDONLY, 0);
353 if (filefd < 0)
355 infile = DECODE_FILE (infile);
356 report_file_error ("Opening process input file", Fcons (infile, Qnil));
358 /* Search for program; barf if not found. */
360 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
362 GCPRO4 (infile, buffer, current_dir, error_file);
363 openp (Vexec_path, args[0], Vexec_suffixes, &path, make_number (X_OK));
364 UNGCPRO;
366 if (NILP (path))
368 emacs_close (filefd);
369 report_file_error ("Searching for program", Fcons (args[0], Qnil));
372 /* If program file name starts with /: for quoting a magic name,
373 discard that. */
374 if (SBYTES (path) > 2 && SREF (path, 0) == '/'
375 && SREF (path, 1) == ':')
376 path = Fsubstring (path, make_number (2), Qnil);
378 new_argv = (const unsigned char **)
379 alloca (max (2, nargs - 2) * sizeof (char *));
380 if (nargs > 4)
382 register int i;
383 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
385 GCPRO5 (infile, buffer, current_dir, path, error_file);
386 argument_coding.dst_multibyte = 0;
387 for (i = 4; i < nargs; i++)
389 argument_coding.src_multibyte = STRING_MULTIBYTE (args[i]);
390 if (CODING_REQUIRE_ENCODING (&argument_coding))
391 /* We must encode this argument. */
392 args[i] = encode_coding_string (&argument_coding, args[i], 1);
394 UNGCPRO;
395 for (i = 4; i < nargs; i++)
396 new_argv[i - 3] = SDATA (args[i]);
397 new_argv[i - 3] = 0;
399 else
400 new_argv[1] = 0;
401 new_argv[0] = SDATA (path);
403 #ifdef MSDOS /* MW, July 1993 */
404 if ((outf = egetenv ("TMPDIR")))
405 strcpy (tempfile = alloca (strlen (outf) + 20), outf);
406 else
408 tempfile = alloca (20);
409 *tempfile = '\0';
411 dostounix_filename (tempfile);
412 if (*tempfile == '\0' || tempfile[strlen (tempfile) - 1] != '/')
413 strcat (tempfile, "/");
414 strcat (tempfile, "detmp.XXX");
415 mktemp (tempfile);
417 outfilefd = creat (tempfile, S_IREAD | S_IWRITE);
418 if (outfilefd < 0)
420 emacs_close (filefd);
421 report_file_error ("Opening process output file",
422 Fcons (build_string (tempfile), Qnil));
424 fd[0] = filefd;
425 fd[1] = outfilefd;
426 #endif /* MSDOS */
428 if (INTEGERP (buffer))
429 fd[1] = emacs_open (NULL_DEVICE, O_WRONLY, 0), fd[0] = -1;
430 else
432 #ifndef MSDOS
433 errno = 0;
434 if (pipe (fd) == -1)
436 emacs_close (filefd);
437 report_file_error ("Creating process pipe", Qnil);
439 #endif
443 /* child_setup must clobber environ in systems with true vfork.
444 Protect it from permanent change. */
445 register char **save_environ = environ;
446 register int fd1 = fd[1];
447 int fd_error = fd1;
449 #if 0 /* Some systems don't have sigblock. */
450 mask = sigblock (sigmask (SIGCHLD));
451 #endif
453 /* Record that we're about to create a synchronous process. */
454 synch_process_alive = 1;
456 /* These vars record information from process termination.
457 Clear them now before process can possibly terminate,
458 to avoid timing error if process terminates soon. */
459 synch_process_death = 0;
460 synch_process_retcode = 0;
461 synch_process_termsig = 0;
463 if (NILP (error_file))
464 fd_error = emacs_open (NULL_DEVICE, O_WRONLY, 0);
465 else if (STRINGP (error_file))
467 #ifdef DOS_NT
468 fd_error = emacs_open (SDATA (error_file),
469 O_WRONLY | O_TRUNC | O_CREAT | O_TEXT,
470 S_IREAD | S_IWRITE);
471 #else /* not DOS_NT */
472 fd_error = creat (SDATA (error_file), 0666);
473 #endif /* not DOS_NT */
476 if (fd_error < 0)
478 emacs_close (filefd);
479 if (fd[0] != filefd)
480 emacs_close (fd[0]);
481 if (fd1 >= 0)
482 emacs_close (fd1);
483 #ifdef MSDOS
484 unlink (tempfile);
485 #endif
486 if (NILP (error_file))
487 error_file = build_string (NULL_DEVICE);
488 else if (STRINGP (error_file))
489 error_file = DECODE_FILE (error_file);
490 report_file_error ("Cannot redirect stderr", Fcons (error_file, Qnil));
493 #ifdef MSDOS /* MW, July 1993 */
494 /* Note that on MSDOS `child_setup' actually returns the child process
495 exit status, not its PID, so we assign it to `synch_process_retcode'
496 below. */
497 pid = child_setup (filefd, outfilefd, fd_error, (char **) new_argv,
498 0, current_dir);
500 /* Record that the synchronous process exited and note its
501 termination status. */
502 synch_process_alive = 0;
503 synch_process_retcode = pid;
504 if (synch_process_retcode < 0) /* means it couldn't be exec'ed */
506 synchronize_system_messages_locale ();
507 synch_process_death = strerror (errno);
510 emacs_close (outfilefd);
511 if (fd_error != outfilefd)
512 emacs_close (fd_error);
513 fd1 = -1; /* No harm in closing that one! */
514 /* Since CRLF is converted to LF within `decode_coding', we can
515 always open a file with binary mode. */
516 fd[0] = emacs_open (tempfile, O_RDONLY | O_BINARY, 0);
517 if (fd[0] < 0)
519 unlink (tempfile);
520 emacs_close (filefd);
521 report_file_error ("Cannot re-open temporary file", Qnil);
523 #else /* not MSDOS */
524 #ifdef WINDOWSNT
525 pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,
526 0, current_dir);
527 #else /* not WINDOWSNT */
528 BLOCK_INPUT;
530 pid = vfork ();
532 if (pid == 0)
534 if (fd[0] >= 0)
535 emacs_close (fd[0]);
536 #ifdef HAVE_SETSID
537 setsid ();
538 #endif
539 #if defined (USG)
540 setpgrp ();
541 #else
542 setpgrp (pid, pid);
543 #endif /* USG */
544 child_setup (filefd, fd1, fd_error, (char **) new_argv,
545 0, current_dir);
548 UNBLOCK_INPUT;
549 #endif /* not WINDOWSNT */
551 /* The MSDOS case did this already. */
552 if (fd_error >= 0)
553 emacs_close (fd_error);
554 #endif /* not MSDOS */
556 environ = save_environ;
558 /* Close most of our fd's, but not fd[0]
559 since we will use that to read input from. */
560 emacs_close (filefd);
561 if (fd1 >= 0 && fd1 != fd_error)
562 emacs_close (fd1);
565 if (pid < 0)
567 if (fd[0] >= 0)
568 emacs_close (fd[0]);
569 report_file_error ("Doing vfork", Qnil);
572 if (INTEGERP (buffer))
574 if (fd[0] >= 0)
575 emacs_close (fd[0]);
576 return Qnil;
579 /* Enable sending signal if user quits below. */
580 call_process_exited = 0;
582 #if defined(MSDOS)
583 /* MSDOS needs different cleanup information. */
584 record_unwind_protect (call_process_cleanup,
585 Fcons (Fcurrent_buffer (),
586 Fcons (make_number (fd[0]),
587 build_string (tempfile))));
588 #else
589 record_unwind_protect (call_process_cleanup,
590 Fcons (Fcurrent_buffer (),
591 Fcons (make_number (fd[0]), make_number (pid))));
592 #endif /* not MSDOS */
595 if (BUFFERP (buffer))
596 Fset_buffer (buffer);
598 if (NILP (buffer))
600 /* If BUFFER is nil, we must read process output once and then
601 discard it, so setup coding system but with nil. */
602 setup_coding_system (Qnil, &process_coding);
604 else
606 Lisp_Object val, *args2;
608 val = Qnil;
609 if (!NILP (Vcoding_system_for_read))
610 val = Vcoding_system_for_read;
611 else
613 if (EQ (coding_systems, Qt))
615 int i;
617 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
618 args2[0] = Qcall_process;
619 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
620 coding_systems
621 = Ffind_operation_coding_system (nargs + 1, args2);
623 if (CONSP (coding_systems))
624 val = XCAR (coding_systems);
625 else if (CONSP (Vdefault_process_coding_system))
626 val = XCAR (Vdefault_process_coding_system);
627 else
628 val = Qnil;
630 Fcheck_coding_system (val);
631 /* In unibyte mode, character code conversion should not take
632 place but EOL conversion should. So, setup raw-text or one
633 of the subsidiary according to the information just setup. */
634 if (NILP (current_buffer->enable_multibyte_characters)
635 && !NILP (val))
636 val = raw_text_coding_system (val);
637 setup_coding_system (val, &process_coding);
640 immediate_quit = 1;
641 QUIT;
644 register EMACS_INT nread;
645 int first = 1;
646 EMACS_INT total_read = 0;
647 int carryover = 0;
648 int display_on_the_fly = display_p;
649 struct coding_system saved_coding;
651 saved_coding = process_coding;
652 while (1)
654 /* Repeatedly read until we've filled as much as possible
655 of the buffer size we have. But don't read
656 less than 1024--save that for the next bufferful. */
657 nread = carryover;
658 while (nread < bufsize - 1024)
660 int this_read = emacs_read (fd[0], buf + nread,
661 bufsize - nread);
663 if (this_read < 0)
664 goto give_up;
666 if (this_read == 0)
668 process_coding.mode |= CODING_MODE_LAST_BLOCK;
669 break;
672 nread += this_read;
673 total_read += this_read;
675 if (display_on_the_fly)
676 break;
679 /* Now NREAD is the total amount of data in the buffer. */
680 immediate_quit = 0;
682 if (!NILP (buffer))
684 if (NILP (current_buffer->enable_multibyte_characters)
685 && ! CODING_MAY_REQUIRE_DECODING (&process_coding))
686 insert_1_both (buf, nread, nread, 0, 1, 0);
687 else
688 { /* We have to decode the input. */
689 Lisp_Object curbuf;
690 int count1 = SPECPDL_INDEX ();
692 XSETBUFFER (curbuf, current_buffer);
693 /* We cannot allow after-change-functions be run
694 during decoding, because that might modify the
695 buffer, while we rely on process_coding.produced to
696 faithfully reflect inserted text until we
697 TEMP_SET_PT_BOTH below. */
698 specbind (Qinhibit_modification_hooks, Qt);
699 decode_coding_c_string (&process_coding, buf, nread,
700 curbuf);
701 unbind_to (count1, Qnil);
702 if (display_on_the_fly
703 && CODING_REQUIRE_DETECTION (&saved_coding)
704 && ! CODING_REQUIRE_DETECTION (&process_coding))
706 /* We have detected some coding system. But,
707 there's a possibility that the detection was
708 done by insufficient data. So, we give up
709 displaying on the fly. */
710 if (process_coding.produced > 0)
711 del_range_2 (process_coding.dst_pos,
712 process_coding.dst_pos_byte,
713 process_coding.dst_pos
714 + process_coding.produced_char,
715 process_coding.dst_pos_byte
716 + process_coding.produced, 0);
717 display_on_the_fly = 0;
718 process_coding = saved_coding;
719 carryover = nread;
720 /* This is to make the above condition always
721 fails in the future. */
722 saved_coding.common_flags
723 &= ~CODING_REQUIRE_DETECTION_MASK;
724 continue;
727 TEMP_SET_PT_BOTH (PT + process_coding.produced_char,
728 PT_BYTE + process_coding.produced);
729 carryover = process_coding.carryover_bytes;
730 if (carryover > 0)
731 memcpy (buf, process_coding.carryover,
732 process_coding.carryover_bytes);
736 if (process_coding.mode & CODING_MODE_LAST_BLOCK)
737 break;
739 /* Make the buffer bigger as we continue to read more data,
740 but not past CALLPROC_BUFFER_SIZE_MAX. */
741 if (bufsize < CALLPROC_BUFFER_SIZE_MAX && total_read > 32 * bufsize)
742 if ((bufsize *= 2) > CALLPROC_BUFFER_SIZE_MAX)
743 bufsize = CALLPROC_BUFFER_SIZE_MAX;
745 if (display_p)
747 if (first)
748 prepare_menu_bars ();
749 first = 0;
750 redisplay_preserve_echo_area (1);
751 /* This variable might have been set to 0 for code
752 detection. In that case, we set it back to 1 because
753 we should have already detected a coding system. */
754 display_on_the_fly = 1;
756 immediate_quit = 1;
757 QUIT;
759 give_up: ;
761 Vlast_coding_system_used = CODING_ID_NAME (process_coding.id);
762 /* If the caller required, let the buffer inherit the
763 coding-system used to decode the process output. */
764 if (inherit_process_coding_system)
765 call1 (intern ("after-insert-file-set-buffer-file-coding-system"),
766 make_number (total_read));
769 #ifndef MSDOS
770 /* Wait for it to terminate, unless it already has. */
771 wait_for_termination (pid);
772 #endif
774 immediate_quit = 0;
776 /* Don't kill any children that the subprocess may have left behind
777 when exiting. */
778 call_process_exited = 1;
780 unbind_to (count, Qnil);
782 if (synch_process_termsig)
784 const char *signame;
786 synchronize_system_messages_locale ();
787 signame = strsignal (synch_process_termsig);
789 if (signame == 0)
790 signame = "unknown";
792 synch_process_death = signame;
795 if (synch_process_death)
796 return code_convert_string_norecord (build_string (synch_process_death),
797 Vlocale_coding_system, 0);
798 return make_number (synch_process_retcode);
801 static Lisp_Object
802 delete_temp_file (Lisp_Object name)
804 /* Suppress jka-compr handling, etc. */
805 int count = SPECPDL_INDEX ();
806 specbind (intern ("file-name-handler-alist"), Qnil);
807 internal_delete_file (name);
808 unbind_to (count, Qnil);
809 return Qnil;
812 DEFUN ("call-process-region", Fcall_process_region, Scall_process_region,
813 3, MANY, 0,
814 doc: /* Send text from START to END to a synchronous process running PROGRAM.
815 The remaining arguments are optional.
816 Delete the text if fourth arg DELETE is non-nil.
818 Insert output in BUFFER before point; t means current buffer;
819 nil for BUFFER means discard it; 0 means discard and don't wait.
820 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
821 REAL-BUFFER says what to do with standard output, as above,
822 while STDERR-FILE says what to do with standard error in the child.
823 STDERR-FILE may be nil (discard standard error output),
824 t (mix it with ordinary output), or a file name string.
826 Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.
827 Remaining args are passed to PROGRAM at startup as command args.
829 If BUFFER is 0, `call-process-region' returns immediately with value nil.
830 Otherwise it waits for PROGRAM to terminate
831 and returns a numeric exit status or a signal description string.
832 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
834 usage: (call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS) */)
835 (int nargs, register Lisp_Object *args)
837 struct gcpro gcpro1;
838 Lisp_Object filename_string;
839 register Lisp_Object start, end;
840 int count = SPECPDL_INDEX ();
841 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
842 Lisp_Object coding_systems;
843 Lisp_Object val, *args2;
844 int i;
845 char *tempfile;
846 Lisp_Object tmpdir, pattern;
848 if (STRINGP (Vtemporary_file_directory))
849 tmpdir = Vtemporary_file_directory;
850 else
852 #ifndef DOS_NT
853 if (getenv ("TMPDIR"))
854 tmpdir = build_string (getenv ("TMPDIR"));
855 else
856 tmpdir = build_string ("/tmp/");
857 #else /* DOS_NT */
858 char *outf;
859 if ((outf = egetenv ("TMPDIR"))
860 || (outf = egetenv ("TMP"))
861 || (outf = egetenv ("TEMP")))
862 tmpdir = build_string (outf);
863 else
864 tmpdir = Ffile_name_as_directory (build_string ("c:/temp"));
865 #endif
868 pattern = Fexpand_file_name (Vtemp_file_name_pattern, tmpdir);
869 tempfile = (char *) alloca (SBYTES (pattern) + 1);
870 memcpy (tempfile, SDATA (pattern), SBYTES (pattern) + 1);
871 coding_systems = Qt;
873 #ifdef HAVE_MKSTEMP
875 int fd;
877 BLOCK_INPUT;
878 fd = mkstemp (tempfile);
879 UNBLOCK_INPUT;
880 if (fd == -1)
881 report_file_error ("Failed to open temporary file",
882 Fcons (Vtemp_file_name_pattern, Qnil));
883 else
884 close (fd);
886 #else
887 mktemp (tempfile);
888 #endif
890 filename_string = build_string (tempfile);
891 GCPRO1 (filename_string);
892 start = args[0];
893 end = args[1];
894 /* Decide coding-system of the contents of the temporary file. */
895 if (!NILP (Vcoding_system_for_write))
896 val = Vcoding_system_for_write;
897 else if (NILP (current_buffer->enable_multibyte_characters))
898 val = Qraw_text;
899 else
901 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
902 args2[0] = Qcall_process_region;
903 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
904 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
905 val = CONSP (coding_systems) ? XCDR (coding_systems) : Qnil;
907 val = complement_process_encoding_system (val);
910 int count1 = SPECPDL_INDEX ();
912 specbind (intern ("coding-system-for-write"), val);
913 /* POSIX lets mk[s]temp use "."; don't invoke jka-compr if we
914 happen to get a ".Z" suffix. */
915 specbind (intern ("file-name-handler-alist"), Qnil);
916 Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil, Qnil);
918 unbind_to (count1, Qnil);
921 /* Note that Fcall_process takes care of binding
922 coding-system-for-read. */
924 record_unwind_protect (delete_temp_file, filename_string);
926 if (nargs > 3 && !NILP (args[3]))
927 Fdelete_region (start, end);
929 if (nargs > 3)
931 args += 2;
932 nargs -= 2;
934 else
936 args[0] = args[2];
937 nargs = 2;
939 args[1] = filename_string;
941 RETURN_UNGCPRO (unbind_to (count, Fcall_process (nargs, args)));
944 #ifndef WINDOWSNT
945 static int relocate_fd (int fd, int minfd);
946 #endif
948 static char **
949 add_env (char **env, char **new_env, char *string)
951 char **ep;
952 int ok = 1;
953 if (string == NULL)
954 return new_env;
956 /* See if this string duplicates any string already in the env.
957 If so, don't put it in.
958 When an env var has multiple definitions,
959 we keep the definition that comes first in process-environment. */
960 for (ep = env; ok && ep != new_env; ep++)
962 char *p = *ep, *q = string;
963 while (ok)
965 if (*q != *p)
966 break;
967 if (*q == 0)
968 /* The string is a lone variable name; keep it for now, we
969 will remove it later. It is a placeholder for a
970 variable that is not to be included in the environment. */
971 break;
972 if (*q == '=')
973 ok = 0;
974 p++, q++;
977 if (ok)
978 *new_env++ = string;
979 return new_env;
982 /* This is the last thing run in a newly forked inferior
983 either synchronous or asynchronous.
984 Copy descriptors IN, OUT and ERR as descriptors 0, 1 and 2.
985 Initialize inferior's priority, pgrp, connected dir and environment.
986 then exec another program based on new_argv.
988 This function may change environ for the superior process.
989 Therefore, the superior process must save and restore the value
990 of environ around the vfork and the call to this function.
992 SET_PGRP is nonzero if we should put the subprocess into a separate
993 process group.
995 CURRENT_DIR is an elisp string giving the path of the current
996 directory the subprocess should have. Since we can't really signal
997 a decent error from within the child, this should be verified as an
998 executable directory by the parent. */
1001 child_setup (int in, int out, int err, register char **new_argv, int set_pgrp, Lisp_Object current_dir)
1003 char **env;
1004 char *pwd_var;
1005 #ifdef WINDOWSNT
1006 int cpid;
1007 HANDLE handles[3];
1008 #endif /* WINDOWSNT */
1010 int pid = getpid ();
1012 /* Close Emacs's descriptors that this process should not have. */
1013 close_process_descs ();
1015 /* DOS_NT isn't in a vfork, so if we are in the middle of load-file,
1016 we will lose if we call close_load_descs here. */
1017 #ifndef DOS_NT
1018 close_load_descs ();
1019 #endif
1021 /* Note that use of alloca is always safe here. It's obvious for systems
1022 that do not have true vfork or that have true (stack) alloca.
1023 If using vfork and C_ALLOCA (when Emacs used to include
1024 src/alloca.c) it is safe because that changes the superior's
1025 static variables as if the superior had done alloca and will be
1026 cleaned up in the usual way. */
1028 register char *temp;
1029 register int i;
1031 i = SBYTES (current_dir);
1032 #ifdef MSDOS
1033 /* MSDOS must have all environment variables malloc'ed, because
1034 low-level libc functions that launch subsidiary processes rely
1035 on that. */
1036 pwd_var = (char *) xmalloc (i + 6);
1037 #else
1038 pwd_var = (char *) alloca (i + 6);
1039 #endif
1040 temp = pwd_var + 4;
1041 memcpy (pwd_var, "PWD=", 4);
1042 memcpy (temp, SDATA (current_dir), i);
1043 if (!IS_DIRECTORY_SEP (temp[i - 1])) temp[i++] = DIRECTORY_SEP;
1044 temp[i] = 0;
1046 #ifndef DOS_NT
1047 /* We can't signal an Elisp error here; we're in a vfork. Since
1048 the callers check the current directory before forking, this
1049 should only return an error if the directory's permissions
1050 are changed between the check and this chdir, but we should
1051 at least check. */
1052 if (chdir (temp) < 0)
1053 _exit (errno);
1054 #else /* DOS_NT */
1055 /* Get past the drive letter, so that d:/ is left alone. */
1056 if (i > 2 && IS_DEVICE_SEP (temp[1]) && IS_DIRECTORY_SEP (temp[2]))
1058 temp += 2;
1059 i -= 2;
1061 #endif /* DOS_NT */
1063 /* Strip trailing slashes for PWD, but leave "/" and "//" alone. */
1064 while (i > 2 && IS_DIRECTORY_SEP (temp[i - 1]))
1065 temp[--i] = 0;
1068 /* Set `env' to a vector of the strings in the environment. */
1070 register Lisp_Object tem;
1071 register char **new_env;
1072 char **p, **q;
1073 register int new_length;
1074 Lisp_Object display = Qnil;
1076 new_length = 0;
1078 for (tem = Vprocess_environment;
1079 CONSP (tem) && STRINGP (XCAR (tem));
1080 tem = XCDR (tem))
1082 if (strncmp (SDATA (XCAR (tem)), "DISPLAY", 7) == 0
1083 && (SDATA (XCAR (tem)) [7] == '\0'
1084 || SDATA (XCAR (tem)) [7] == '='))
1085 /* DISPLAY is specified in process-environment. */
1086 display = Qt;
1087 new_length++;
1090 /* If not provided yet, use the frame's DISPLAY. */
1091 if (NILP (display))
1093 Lisp_Object tmp = Fframe_parameter (selected_frame, Qdisplay);
1094 if (!STRINGP (tmp) && CONSP (Vinitial_environment))
1095 /* If still not found, Look for DISPLAY in Vinitial_environment. */
1096 tmp = Fgetenv_internal (build_string ("DISPLAY"),
1097 Vinitial_environment);
1098 if (STRINGP (tmp))
1100 display = tmp;
1101 new_length++;
1105 /* new_length + 2 to include PWD and terminating 0. */
1106 env = new_env = (char **) alloca ((new_length + 2) * sizeof (char *));
1107 /* If we have a PWD envvar, pass one down,
1108 but with corrected value. */
1109 if (egetenv ("PWD"))
1110 *new_env++ = pwd_var;
1112 if (STRINGP (display))
1114 int vlen = strlen ("DISPLAY=") + strlen (SDATA (display)) + 1;
1115 char *vdata = (char *) alloca (vlen);
1116 strcpy (vdata, "DISPLAY=");
1117 strcat (vdata, SDATA (display));
1118 new_env = add_env (env, new_env, vdata);
1121 /* Overrides. */
1122 for (tem = Vprocess_environment;
1123 CONSP (tem) && STRINGP (XCAR (tem));
1124 tem = XCDR (tem))
1125 new_env = add_env (env, new_env, SDATA (XCAR (tem)));
1127 *new_env = 0;
1129 /* Remove variable names without values. */
1130 p = q = env;
1131 while (*p != 0)
1133 while (*q != 0 && strchr (*q, '=') == NULL)
1134 q++;
1135 *p = *q++;
1136 if (*p != 0)
1137 p++;
1142 #ifdef WINDOWSNT
1143 prepare_standard_handles (in, out, err, handles);
1144 set_process_dir (SDATA (current_dir));
1145 /* Spawn the child. (See ntproc.c:Spawnve). */
1146 cpid = spawnve (_P_NOWAIT, new_argv[0], new_argv, env);
1147 reset_standard_handles (in, out, err, handles);
1148 if (cpid == -1)
1149 /* An error occurred while trying to spawn the process. */
1150 report_file_error ("Spawning child process", Qnil);
1151 return cpid;
1153 #else /* not WINDOWSNT */
1154 /* Make sure that in, out, and err are not actually already in
1155 descriptors zero, one, or two; this could happen if Emacs is
1156 started with its standard in, out, or error closed, as might
1157 happen under X. */
1159 int oin = in, oout = out;
1161 /* We have to avoid relocating the same descriptor twice! */
1163 in = relocate_fd (in, 3);
1165 if (out == oin)
1166 out = in;
1167 else
1168 out = relocate_fd (out, 3);
1170 if (err == oin)
1171 err = in;
1172 else if (err == oout)
1173 err = out;
1174 else
1175 err = relocate_fd (err, 3);
1178 #ifndef MSDOS
1179 emacs_close (0);
1180 emacs_close (1);
1181 emacs_close (2);
1183 dup2 (in, 0);
1184 dup2 (out, 1);
1185 dup2 (err, 2);
1186 emacs_close (in);
1187 if (out != in)
1188 emacs_close (out);
1189 if (err != in && err != out)
1190 emacs_close (err);
1192 #if defined(USG)
1193 #ifndef SETPGRP_RELEASES_CTTY
1194 setpgrp (); /* No arguments but equivalent in this case */
1195 #endif
1196 #else /* not USG */
1197 setpgrp (pid, pid);
1198 #endif /* not USG */
1200 /* setpgrp_of_tty is incorrect here; it uses input_fd. */
1201 tcsetpgrp (0, pid);
1203 /* execvp does not accept an environment arg so the only way
1204 to pass this environment is to set environ. Our caller
1205 is responsible for restoring the ambient value of environ. */
1206 environ = env;
1207 execvp (new_argv[0], new_argv);
1209 emacs_write (1, "Can't exec program: ", 20);
1210 emacs_write (1, new_argv[0], strlen (new_argv[0]));
1211 emacs_write (1, "\n", 1);
1212 _exit (1);
1214 #else /* MSDOS */
1215 pid = run_msdos_command (new_argv, pwd_var + 4, in, out, err, env);
1216 xfree (pwd_var);
1217 if (pid == -1)
1218 /* An error occurred while trying to run the subprocess. */
1219 report_file_error ("Spawning child process", Qnil);
1220 return pid;
1221 #endif /* MSDOS */
1222 #endif /* not WINDOWSNT */
1225 #ifndef WINDOWSNT
1226 /* Move the file descriptor FD so that its number is not less than MINFD.
1227 If the file descriptor is moved at all, the original is freed. */
1228 static int
1229 relocate_fd (int fd, int minfd)
1231 if (fd >= minfd)
1232 return fd;
1233 else
1235 int new;
1236 #ifdef F_DUPFD
1237 new = fcntl (fd, F_DUPFD, minfd);
1238 #else
1239 new = dup (fd);
1240 if (new != -1)
1241 /* Note that we hold the original FD open while we recurse,
1242 to guarantee we'll get a new FD if we need it. */
1243 new = relocate_fd (new, minfd);
1244 #endif
1245 if (new == -1)
1247 const char *message1 = "Error while setting up child: ";
1248 const char *errmessage = strerror (errno);
1249 const char *message2 = "\n";
1250 emacs_write (2, message1, strlen (message1));
1251 emacs_write (2, errmessage, strlen (errmessage));
1252 emacs_write (2, message2, strlen (message2));
1253 _exit (1);
1255 emacs_close (fd);
1256 return new;
1259 #endif /* not WINDOWSNT */
1261 static int
1262 getenv_internal_1 (const char *var, int varlen, char **value, int *valuelen,
1263 Lisp_Object env)
1265 for (; CONSP (env); env = XCDR (env))
1267 Lisp_Object entry = XCAR (env);
1268 if (STRINGP (entry)
1269 && SBYTES (entry) >= varlen
1270 #ifdef WINDOWSNT
1271 /* NT environment variables are case insensitive. */
1272 && ! strnicmp (SDATA (entry), var, varlen)
1273 #else /* not WINDOWSNT */
1274 && ! memcmp (SDATA (entry), var, varlen)
1275 #endif /* not WINDOWSNT */
1278 if (SBYTES (entry) > varlen && SREF (entry, varlen) == '=')
1280 *value = SSDATA (entry) + (varlen + 1);
1281 *valuelen = SBYTES (entry) - (varlen + 1);
1282 return 1;
1284 else if (SBYTES (entry) == varlen)
1286 /* Lone variable names in Vprocess_environment mean that
1287 variable should be removed from the environment. */
1288 *value = NULL;
1289 return 1;
1293 return 0;
1296 static int
1297 getenv_internal (const char *var, int varlen, char **value, int *valuelen,
1298 Lisp_Object frame)
1300 /* Try to find VAR in Vprocess_environment first. */
1301 if (getenv_internal_1 (var, varlen, value, valuelen,
1302 Vprocess_environment))
1303 return *value ? 1 : 0;
1305 /* For DISPLAY try to get the values from the frame or the initial env. */
1306 if (strcmp (var, "DISPLAY") == 0)
1308 Lisp_Object display
1309 = Fframe_parameter (NILP (frame) ? selected_frame : frame, Qdisplay);
1310 if (STRINGP (display))
1312 *value = SSDATA (display);
1313 *valuelen = SBYTES (display);
1314 return 1;
1316 /* If still not found, Look for DISPLAY in Vinitial_environment. */
1317 if (getenv_internal_1 (var, varlen, value, valuelen,
1318 Vinitial_environment))
1319 return *value ? 1 : 0;
1322 return 0;
1325 DEFUN ("getenv-internal", Fgetenv_internal, Sgetenv_internal, 1, 2, 0,
1326 doc: /* Get the value of environment variable VARIABLE.
1327 VARIABLE should be a string. Value is nil if VARIABLE is undefined in
1328 the environment. Otherwise, value is a string.
1330 This function searches `process-environment' for VARIABLE.
1332 If optional parameter ENV is a list, then search this list instead of
1333 `process-environment', and return t when encountering a negative entry
1334 \(an entry for a variable with no value). */)
1335 (Lisp_Object variable, Lisp_Object env)
1337 char *value;
1338 int valuelen;
1340 CHECK_STRING (variable);
1341 if (CONSP (env))
1343 if (getenv_internal_1 (SDATA (variable), SBYTES (variable),
1344 &value, &valuelen, env))
1345 return value ? make_string (value, valuelen) : Qt;
1346 else
1347 return Qnil;
1349 else if (getenv_internal (SDATA (variable), SBYTES (variable),
1350 &value, &valuelen, env))
1351 return make_string (value, valuelen);
1352 else
1353 return Qnil;
1356 /* A version of getenv that consults the Lisp environment lists,
1357 easily callable from C. */
1358 char *
1359 egetenv (const char *var)
1361 char *value;
1362 int valuelen;
1364 if (getenv_internal (var, strlen (var), &value, &valuelen, Qnil))
1365 return value;
1366 else
1367 return 0;
1371 /* This is run before init_cmdargs. */
1373 void
1374 init_callproc_1 (void)
1376 char *data_dir = egetenv ("EMACSDATA");
1377 char *doc_dir = egetenv ("EMACSDOC");
1379 Vdata_directory
1380 = Ffile_name_as_directory (build_string (data_dir ? data_dir
1381 : PATH_DATA));
1382 Vdoc_directory
1383 = Ffile_name_as_directory (build_string (doc_dir ? doc_dir
1384 : PATH_DOC));
1386 /* Check the EMACSPATH environment variable, defaulting to the
1387 PATH_EXEC path from epaths.h. */
1388 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
1389 Vexec_directory = Ffile_name_as_directory (Fcar (Vexec_path));
1390 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
1393 /* This is run after init_cmdargs, when Vinstallation_directory is valid. */
1395 void
1396 init_callproc (void)
1398 char *data_dir = egetenv ("EMACSDATA");
1400 register char * sh;
1401 Lisp_Object tempdir;
1403 if (!NILP (Vinstallation_directory))
1405 /* Add to the path the lib-src subdir of the installation dir. */
1406 Lisp_Object tem;
1407 tem = Fexpand_file_name (build_string ("lib-src"),
1408 Vinstallation_directory);
1409 #ifndef DOS_NT
1410 /* MSDOS uses wrapped binaries, so don't do this. */
1411 if (NILP (Fmember (tem, Vexec_path)))
1413 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
1414 Vexec_path = Fcons (tem, Vexec_path);
1415 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
1418 Vexec_directory = Ffile_name_as_directory (tem);
1419 #endif /* not DOS_NT */
1421 /* Maybe use ../etc as well as ../lib-src. */
1422 if (data_dir == 0)
1424 tem = Fexpand_file_name (build_string ("etc"),
1425 Vinstallation_directory);
1426 Vdoc_directory = Ffile_name_as_directory (tem);
1430 /* Look for the files that should be in etc. We don't use
1431 Vinstallation_directory, because these files are never installed
1432 near the executable, and they are never in the build
1433 directory when that's different from the source directory.
1435 Instead, if these files are not in the nominal place, we try the
1436 source directory. */
1437 if (data_dir == 0)
1439 Lisp_Object tem, tem1, srcdir;
1441 srcdir = Fexpand_file_name (build_string ("../src/"),
1442 build_string (PATH_DUMPLOADSEARCH));
1443 tem = Fexpand_file_name (build_string ("GNU"), Vdata_directory);
1444 tem1 = Ffile_exists_p (tem);
1445 if (!NILP (Fequal (srcdir, Vinvocation_directory)) || NILP (tem1))
1447 Lisp_Object newdir;
1448 newdir = Fexpand_file_name (build_string ("../etc/"),
1449 build_string (PATH_DUMPLOADSEARCH));
1450 tem = Fexpand_file_name (build_string ("GNU"), newdir);
1451 tem1 = Ffile_exists_p (tem);
1452 if (!NILP (tem1))
1453 Vdata_directory = newdir;
1457 #ifndef CANNOT_DUMP
1458 if (initialized)
1459 #endif
1461 tempdir = Fdirectory_file_name (Vexec_directory);
1462 if (access (SDATA (tempdir), 0) < 0)
1463 dir_warning ("Warning: arch-dependent data dir (%s) does not exist.\n",
1464 Vexec_directory);
1467 tempdir = Fdirectory_file_name (Vdata_directory);
1468 if (access (SDATA (tempdir), 0) < 0)
1469 dir_warning ("Warning: arch-independent data dir (%s) does not exist.\n",
1470 Vdata_directory);
1472 sh = (char *) getenv ("SHELL");
1473 Vshell_file_name = build_string (sh ? sh : "/bin/sh");
1475 #ifdef DOS_NT
1476 Vshared_game_score_directory = Qnil;
1477 #else
1478 Vshared_game_score_directory = build_string (PATH_GAME);
1479 if (NILP (Ffile_directory_p (Vshared_game_score_directory)))
1480 Vshared_game_score_directory = Qnil;
1481 #endif
1484 void
1485 set_initial_environment (void)
1487 register char **envp;
1488 #ifdef CANNOT_DUMP
1489 Vprocess_environment = Qnil;
1490 #else
1491 if (initialized)
1492 #endif
1494 for (envp = environ; *envp; envp++)
1495 Vprocess_environment = Fcons (build_string (*envp),
1496 Vprocess_environment);
1497 /* Ideally, the `copy' shouldn't be necessary, but it seems it's frequent
1498 to use `delete' and friends on process-environment. */
1499 Vinitial_environment = Fcopy_sequence (Vprocess_environment);
1503 void
1504 syms_of_callproc (void)
1506 #ifdef DOS_NT
1507 Qbuffer_file_type = intern_c_string ("buffer-file-type");
1508 staticpro (&Qbuffer_file_type);
1509 #endif /* DOS_NT */
1511 #ifndef DOS_NT
1512 Vtemp_file_name_pattern = build_string ("emacsXXXXXX");
1513 #elif defined (WINDOWSNT)
1514 Vtemp_file_name_pattern = build_string ("emXXXXXX");
1515 #else
1516 Vtemp_file_name_pattern = build_string ("detmp.XXX");
1517 #endif
1518 staticpro (&Vtemp_file_name_pattern);
1520 DEFVAR_LISP ("shell-file-name", Vshell_file_name,
1521 doc: /* *File name to load inferior shells from.
1522 Initialized from the SHELL environment variable, or to a system-dependent
1523 default if SHELL is not set. */);
1525 DEFVAR_LISP ("exec-path", Vexec_path,
1526 doc: /* *List of directories to search programs to run in subprocesses.
1527 Each element is a string (directory name) or nil (try default directory). */);
1529 DEFVAR_LISP ("exec-suffixes", Vexec_suffixes,
1530 doc: /* *List of suffixes to try to find executable file names.
1531 Each element is a string. */);
1532 Vexec_suffixes = Qnil;
1534 DEFVAR_LISP ("exec-directory", Vexec_directory,
1535 doc: /* Directory for executables for Emacs to invoke.
1536 More generally, this includes any architecture-dependent files
1537 that are built and installed from the Emacs distribution. */);
1539 DEFVAR_LISP ("data-directory", Vdata_directory,
1540 doc: /* Directory of machine-independent files that come with GNU Emacs.
1541 These are files intended for Emacs to use while it runs. */);
1543 DEFVAR_LISP ("doc-directory", Vdoc_directory,
1544 doc: /* Directory containing the DOC file that comes with GNU Emacs.
1545 This is usually the same as `data-directory'. */);
1547 DEFVAR_LISP ("configure-info-directory", Vconfigure_info_directory,
1548 doc: /* For internal use by the build procedure only.
1549 This is the name of the directory in which the build procedure installed
1550 Emacs's info files; the default value for `Info-default-directory-list'
1551 includes this. */);
1552 Vconfigure_info_directory = build_string (PATH_INFO);
1554 DEFVAR_LISP ("shared-game-score-directory", Vshared_game_score_directory,
1555 doc: /* Directory of score files for games which come with GNU Emacs.
1556 If this variable is nil, then Emacs is unable to use a shared directory. */);
1557 #ifdef DOS_NT
1558 Vshared_game_score_directory = Qnil;
1559 #else
1560 Vshared_game_score_directory = build_string (PATH_GAME);
1561 #endif
1563 DEFVAR_LISP ("initial-environment", Vinitial_environment,
1564 doc: /* List of environment variables inherited from the parent process.
1565 Each element should be a string of the form ENVVARNAME=VALUE.
1566 The elements must normally be decoded (using `locale-coding-system') for use. */);
1567 Vinitial_environment = Qnil;
1569 DEFVAR_LISP ("process-environment", Vprocess_environment,
1570 doc: /* List of overridden environment variables for subprocesses to inherit.
1571 Each element should be a string of the form ENVVARNAME=VALUE.
1573 Entries in this list take precedence to those in the frame-local
1574 environments. Therefore, let-binding `process-environment' is an easy
1575 way to temporarily change the value of an environment variable,
1576 irrespective of where it comes from. To use `process-environment' to
1577 remove an environment variable, include only its name in the list,
1578 without "=VALUE".
1580 This variable is set to nil when Emacs starts.
1582 If multiple entries define the same variable, the first one always
1583 takes precedence.
1585 Non-ASCII characters are encoded according to the initial value of
1586 `locale-coding-system', i.e. the elements must normally be decoded for
1587 use.
1589 See `setenv' and `getenv'. */);
1590 Vprocess_environment = Qnil;
1592 defsubr (&Scall_process);
1593 defsubr (&Sgetenv_internal);
1594 defsubr (&Scall_process_region);