1 /* Synchronous subprocess invocation for GNU Emacs.
2 Copyright (C) 1985-1988, 1993-1995, 1999-2013
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/>. */
24 #include <sys/types.h>
36 #define _P_NOWAIT 1 /* from process.h */
39 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
41 #include <sys/param.h>
45 #include "character.h"
49 #include "composite.h"
52 #include "syssignal.h"
55 #include "blockinput.h"
57 #include "termhooks.h"
67 /* Pattern used by call-process-region to make temp files. */
68 static Lisp_Object Vtemp_file_name_pattern
;
70 /* The next two variables are valid only while record-unwind-protect
71 is in place during call-process for a synchronous subprocess. At
72 other times, their contents are irrelevant. Doing this via static
73 C variables is more convenient than putting them into the arguments
74 of record-unwind-protect, as they need to be updated at randomish
75 times in the code, and Lisp cannot always store these values as
76 Emacs integers. It's safe to use static variables here, as the
77 code is never invoked reentrantly. */
79 /* If nonzero, a process-ID that has not been reaped. */
80 static pid_t synch_process_pid
;
82 /* If nonnegative, a file descriptor that has not been closed. */
83 static int synch_process_fd
;
88 block_child_signal (void)
91 sigemptyset (&blocked
);
92 sigaddset (&blocked
, SIGCHLD
);
93 pthread_sigmask (SIG_BLOCK
, &blocked
, 0);
96 /* Unblock SIGCHLD. */
99 unblock_child_signal (void)
101 pthread_sigmask (SIG_SETMASK
, &empty_mask
, 0);
104 /* If P is reapable, record it as a deleted process and kill it.
105 Do this in a critical section. Unless PID is wedged it will be
106 reaped on receipt of the first SIGCHLD after the critical section. */
109 record_kill_process (struct Lisp_Process
*p
)
111 block_child_signal ();
116 record_deleted_pid (p
->pid
);
117 kill (- p
->pid
, SIGKILL
);
120 unblock_child_signal ();
123 /* Clean up when exiting call_process_cleanup. */
126 call_process_kill (Lisp_Object ignored
)
128 if (synch_process_fd
>= 0)
129 emacs_close (synch_process_fd
);
131 if (synch_process_pid
)
133 struct Lisp_Process proc
;
135 proc
.pid
= synch_process_pid
;
136 record_kill_process (&proc
);
142 /* Clean up when exiting Fcall_process.
143 On MSDOS, delete the temporary file on any kind of termination.
144 On Unix, kill the process and any children on termination by signal. */
147 call_process_cleanup (Lisp_Object arg
)
150 Lisp_Object buffer
= Fcar (arg
);
151 Lisp_Object file
= Fcdr (arg
);
153 Lisp_Object buffer
= arg
;
156 Fset_buffer (buffer
);
159 /* If the process still exists, kill its process group. */
160 if (synch_process_pid
)
162 ptrdiff_t count
= SPECPDL_INDEX ();
163 kill (-synch_process_pid
, SIGINT
);
164 record_unwind_protect (call_process_kill
, make_number (0));
165 message1 ("Waiting for process to die...(type C-g again to kill it instantly)");
168 wait_for_termination (synch_process_pid
, 0, 1);
169 synch_process_pid
= 0;
171 specpdl_ptr
= specpdl
+ count
; /* Discard the unwind protect. */
172 message1 ("Waiting for process to die...done");
176 if (synch_process_fd
>= 0)
177 emacs_close (synch_process_fd
);
180 /* FILE is "" when we didn't actually create a temporary file in
182 if (!(strcmp (SDATA (file
), NULL_DEVICE
) == 0 || SREF (file
, 0) == '\0'))
183 unlink (SDATA (file
));
189 DEFUN ("call-process", Fcall_process
, Scall_process
, 1, MANY
, 0,
190 doc
: /* Call PROGRAM synchronously in separate process.
191 The remaining arguments are optional.
192 The program's input comes from file INFILE (nil means `/dev/null').
193 Insert output in DESTINATION before point; t means current buffer; nil for DESTINATION
194 means discard it; 0 means discard and don't wait; and `(:file FILE)', where
195 FILE is a file name string, means that it should be written to that file
196 \(if the file already exists it is overwritten).
197 DESTINATION can also have the form (REAL-BUFFER STDERR-FILE); in that case,
198 REAL-BUFFER says what to do with standard output, as above,
199 while STDERR-FILE says what to do with standard error in the child.
200 STDERR-FILE may be nil (discard standard error output),
201 t (mix it with ordinary output), or a file name string.
203 Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
204 Remaining arguments are strings passed as command arguments to PROGRAM.
206 If executable PROGRAM can't be found as an executable, `call-process'
207 signals a Lisp error. `call-process' reports errors in execution of
208 the program only through its return and output.
210 If DESTINATION is 0, `call-process' returns immediately with value nil.
211 Otherwise it waits for PROGRAM to terminate
212 and returns a numeric exit status or a signal description string.
213 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
215 usage: (call-process PROGRAM &optional INFILE DESTINATION DISPLAY &rest ARGS) */)
216 (ptrdiff_t nargs
, Lisp_Object
*args
)
218 Lisp_Object infile
, buffer
, current_dir
, path
;
220 int fd0
, fd1
, filefd
;
222 ptrdiff_t count
= SPECPDL_INDEX ();
226 /* File to use for stderr in the child.
227 t means use same as standard output. */
228 Lisp_Object error_file
;
229 Lisp_Object output_file
= Qnil
;
230 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
231 char *outf
, *tempfile
= NULL
;
239 struct coding_system process_coding
; /* coding-system of process output */
240 struct coding_system argument_coding
; /* coding-system of arguments */
241 /* Set to the return value of Ffind_operation_coding_system. */
242 Lisp_Object coding_systems
;
243 bool output_to_buffer
= 1;
245 /* Qt denotes that Ffind_operation_coding_system is not yet called. */
248 CHECK_STRING (args
[0]);
253 /* Without asynchronous processes we cannot have BUFFER == 0. */
255 && (INTEGERP (CONSP (args
[2]) ? XCAR (args
[2]) : args
[2])))
256 error ("Operating system cannot handle asynchronous subprocesses");
257 #endif /* subprocesses */
259 /* Decide the coding-system for giving arguments. */
261 Lisp_Object val
, *args2
;
264 /* If arguments are supplied, we may have to encode them. */
267 bool must_encode
= 0;
268 Lisp_Object coding_attrs
;
270 for (i
= 4; i
< nargs
; i
++)
271 CHECK_STRING (args
[i
]);
273 for (i
= 4; i
< nargs
; i
++)
274 if (STRING_MULTIBYTE (args
[i
]))
277 if (!NILP (Vcoding_system_for_write
))
278 val
= Vcoding_system_for_write
;
279 else if (! must_encode
)
283 SAFE_NALLOCA (args2
, 1, nargs
+ 1);
284 args2
[0] = Qcall_process
;
285 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
286 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
287 val
= CONSP (coding_systems
) ? XCDR (coding_systems
) : Qnil
;
289 val
= complement_process_encoding_system (val
);
290 setup_coding_system (Fcheck_coding_system (val
), &argument_coding
);
291 coding_attrs
= CODING_ID_ATTRS (argument_coding
.id
);
292 if (NILP (CODING_ATTR_ASCII_COMPAT (coding_attrs
)))
294 /* We should not use an ASCII incompatible coding system. */
295 val
= raw_text_coding_system (val
);
296 setup_coding_system (val
, &argument_coding
);
301 if (nargs
>= 2 && ! NILP (args
[1]))
303 infile
= Fexpand_file_name (args
[1], BVAR (current_buffer
, directory
));
304 CHECK_STRING (infile
);
307 infile
= build_string (NULL_DEVICE
);
313 /* If BUFFER is a list, its meaning is (BUFFER-FOR-STDOUT
314 FILE-FOR-STDERR), unless the first element is :file, in which case see
315 the next paragraph. */
317 && (! SYMBOLP (XCAR (buffer
))
318 || strcmp (SSDATA (SYMBOL_NAME (XCAR (buffer
))), ":file")))
320 if (CONSP (XCDR (buffer
)))
322 Lisp_Object stderr_file
;
323 stderr_file
= XCAR (XCDR (buffer
));
325 if (NILP (stderr_file
) || EQ (Qt
, stderr_file
))
326 error_file
= stderr_file
;
328 error_file
= Fexpand_file_name (stderr_file
, Qnil
);
331 buffer
= XCAR (buffer
);
334 /* If the buffer is (still) a list, it might be a (:file "file") spec. */
336 && SYMBOLP (XCAR (buffer
))
337 && ! strcmp (SSDATA (SYMBOL_NAME (XCAR (buffer
))), ":file"))
339 output_file
= Fexpand_file_name (XCAR (XCDR (buffer
)),
340 BVAR (current_buffer
, directory
));
341 CHECK_STRING (output_file
);
345 if (!(EQ (buffer
, Qnil
)
347 || INTEGERP (buffer
)))
349 Lisp_Object spec_buffer
;
350 spec_buffer
= buffer
;
351 buffer
= Fget_buffer_create (buffer
);
352 /* Mention the buffer name for a better error message. */
354 CHECK_BUFFER (spec_buffer
);
355 CHECK_BUFFER (buffer
);
361 /* Make sure that the child will be able to chdir to the current
362 buffer's current directory, or its unhandled equivalent. We
363 can't just have the child check for an error when it does the
364 chdir, since it's in a vfork.
366 We have to GCPRO around this because Fexpand_file_name,
367 Funhandled_file_name_directory, and Ffile_accessible_directory_p
368 might call a file name handling function. The argument list is
369 protected by the caller, so all we really have to worry about is
372 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
374 current_dir
= BVAR (current_buffer
, directory
);
376 GCPRO5 (infile
, buffer
, current_dir
, error_file
, output_file
);
378 current_dir
= Funhandled_file_name_directory (current_dir
);
379 if (NILP (current_dir
))
380 /* If the file name handler says that current_dir is unreachable, use
381 a sensible default. */
382 current_dir
= build_string ("~/");
383 current_dir
= expand_and_dir_to_file (current_dir
, Qnil
);
384 current_dir
= Ffile_name_as_directory (current_dir
);
386 if (NILP (Ffile_accessible_directory_p (current_dir
)))
387 report_file_error ("Setting current directory",
388 Fcons (BVAR (current_buffer
, directory
), Qnil
));
390 if (STRING_MULTIBYTE (infile
))
391 infile
= ENCODE_FILE (infile
);
392 if (STRING_MULTIBYTE (current_dir
))
393 current_dir
= ENCODE_FILE (current_dir
);
394 if (STRINGP (error_file
) && STRING_MULTIBYTE (error_file
))
395 error_file
= ENCODE_FILE (error_file
);
396 if (STRINGP (output_file
) && STRING_MULTIBYTE (output_file
))
397 output_file
= ENCODE_FILE (output_file
);
401 display_p
= INTERACTIVE
&& nargs
>= 4 && !NILP (args
[3]);
403 filefd
= emacs_open (SSDATA (infile
), O_RDONLY
, 0);
405 report_file_error ("Opening process input file",
406 Fcons (DECODE_FILE (infile
), Qnil
));
408 if (STRINGP (output_file
))
411 fd_output
= emacs_open (SSDATA (output_file
),
412 O_WRONLY
| O_TRUNC
| O_CREAT
| O_TEXT
,
414 #else /* not DOS_NT */
415 fd_output
= creat (SSDATA (output_file
), 0666);
416 #endif /* not DOS_NT */
419 output_file
= DECODE_FILE (output_file
);
420 report_file_error ("Opening process output file",
421 Fcons (output_file
, Qnil
));
423 if (STRINGP (error_file
) || NILP (error_file
))
424 output_to_buffer
= 0;
427 /* Search for program; barf if not found. */
429 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
431 GCPRO4 (infile
, buffer
, current_dir
, error_file
);
432 openp (Vexec_path
, args
[0], Vexec_suffixes
, &path
, make_number (X_OK
));
437 emacs_close (filefd
);
438 report_file_error ("Searching for program", Fcons (args
[0], Qnil
));
441 /* If program file name starts with /: for quoting a magic name,
443 if (SBYTES (path
) > 2 && SREF (path
, 0) == '/'
444 && SREF (path
, 1) == ':')
445 path
= Fsubstring (path
, make_number (2), Qnil
);
447 new_argv
= SAFE_ALLOCA ((nargs
> 4 ? nargs
- 2 : 2) * sizeof *new_argv
);
450 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
452 GCPRO5 (infile
, buffer
, current_dir
, path
, error_file
);
457 argument_coding
.dst_multibyte
= 0;
458 for (i
= 4; i
< nargs
; i
++)
460 argument_coding
.src_multibyte
= STRING_MULTIBYTE (args
[i
]);
461 if (CODING_REQUIRE_ENCODING (&argument_coding
))
462 /* We must encode this argument. */
463 args
[i
] = encode_coding_string (&argument_coding
, args
[i
], 1);
465 for (i
= 4; i
< nargs
; i
++)
466 new_argv
[i
- 3] = SSDATA (args
[i
]);
471 if (STRING_MULTIBYTE (path
))
472 path
= ENCODE_FILE (path
);
473 new_argv
[0] = SSDATA (path
);
477 #ifdef MSDOS /* MW, July 1993 */
479 /* If we're redirecting STDOUT to a file, that file is already open
483 if ((outf
= egetenv ("TMPDIR")))
484 strcpy (tempfile
= alloca (strlen (outf
) + 20), outf
);
487 tempfile
= alloca (20);
490 dostounix_filename (tempfile
, 0);
491 if (*tempfile
== '\0' || tempfile
[strlen (tempfile
) - 1] != '/')
492 strcat (tempfile
, "/");
493 strcat (tempfile
, "detmp.XXX");
495 outfilefd
= creat (tempfile
, S_IREAD
| S_IWRITE
);
497 emacs_close (filefd
);
498 report_file_error ("Opening process output file",
499 Fcons (build_string (tempfile
), Qnil
));
503 outfilefd
= fd_output
;
508 if (INTEGERP (buffer
))
511 fd1
= emacs_open (NULL_DEVICE
, O_WRONLY
, 0);
519 int pipe_errno
= errno
;
520 emacs_close (filefd
);
522 report_file_error ("Creating process pipe", Qnil
);
535 if (NILP (error_file
))
536 fd_error
= emacs_open (NULL_DEVICE
, O_WRONLY
, 0);
537 else if (STRINGP (error_file
))
540 fd_error
= emacs_open (SSDATA (error_file
),
541 O_WRONLY
| O_TRUNC
| O_CREAT
| O_TEXT
,
543 #else /* not DOS_NT */
544 fd_error
= creat (SSDATA (error_file
), 0666);
545 #endif /* not DOS_NT */
550 emacs_close (filefd
);
558 if (NILP (error_file
))
559 error_file
= build_string (NULL_DEVICE
);
560 else if (STRINGP (error_file
))
561 error_file
= DECODE_FILE (error_file
);
562 report_file_error ("Cannot redirect stderr", Fcons (error_file
, Qnil
));
565 #ifdef MSDOS /* MW, July 1993 */
566 /* Note that on MSDOS `child_setup' actually returns the child process
567 exit status, not its PID, so assign it to status below. */
568 pid
= child_setup (filefd
, outfilefd
, fd_error
, new_argv
, 0, current_dir
);
571 emacs_close (outfilefd
);
572 if (fd_error
!= outfilefd
)
573 emacs_close (fd_error
);
576 synchronize_system_messages_locale ();
578 code_convert_string_norecord (build_string (strerror (child_errno
)),
579 Vlocale_coding_system
, 0);
582 fd1
= -1; /* No harm in closing that one! */
585 /* Since CRLF is converted to LF within `decode_coding', we
586 can always open a file with binary mode. */
587 fd0
= emacs_open (tempfile
, O_RDONLY
| O_BINARY
, 0);
591 emacs_close (filefd
);
592 report_file_error ("Cannot re-open temporary file",
593 Fcons (build_string (tempfile
), Qnil
));
597 fd0
= -1; /* We are not going to read from tempfile. */
600 /* Do the unwind-protect now, even though the pid is not known, so
601 that no storage allocation is done in the critical section.
602 The actual PID will be filled in during the critical section. */
603 synch_process_pid
= 0;
604 synch_process_fd
= fd0
;
607 /* MSDOS needs different cleanup information. */
608 record_unwind_protect (call_process_cleanup
,
609 Fcons (Fcurrent_buffer (),
610 build_string (tempfile
? tempfile
: "")));
612 record_unwind_protect (call_process_cleanup
, Fcurrent_buffer ());
615 block_child_signal ();
618 pid
= child_setup (filefd
, fd1
, fd_error
, new_argv
, 0, current_dir
);
619 /* We need to record the input file of this child, for when we are
620 called from call-process-region to create an async subprocess.
621 That's because call-process-region's unwind procedure will
622 attempt to delete the temporary input file, which will fail
623 because that file is still in use. Recording it with the child
624 will allow us to delete the file when the subprocess exits.
625 The second part of this is in delete_temp_file, q.v. */
626 if (pid
> 0 && INTEGERP (buffer
) && nargs
>= 2 && !NILP (args
[1]))
627 record_infile (pid
, xstrdup (SSDATA (infile
)));
628 #else /* not WINDOWSNT */
630 /* vfork, and prevent local vars from being clobbered by the vfork. */
632 Lisp_Object
volatile buffer_volatile
= buffer
;
633 Lisp_Object
volatile coding_systems_volatile
= coding_systems
;
634 Lisp_Object
volatile current_dir_volatile
= current_dir
;
635 bool volatile display_p_volatile
= display_p
;
636 bool volatile output_to_buffer_volatile
= output_to_buffer
;
637 bool volatile sa_must_free_volatile
= sa_must_free
;
638 int volatile fd1_volatile
= fd1
;
639 int volatile fd_error_volatile
= fd_error
;
640 int volatile fd_output_volatile
= fd_output
;
641 int volatile filefd_volatile
= filefd
;
642 ptrdiff_t volatile count_volatile
= count
;
643 ptrdiff_t volatile sa_count_volatile
= sa_count
;
644 char **volatile new_argv_volatile
= new_argv
;
649 buffer
= buffer_volatile
;
650 coding_systems
= coding_systems_volatile
;
651 current_dir
= current_dir_volatile
;
652 display_p
= display_p_volatile
;
653 output_to_buffer
= output_to_buffer_volatile
;
654 sa_must_free
= sa_must_free_volatile
;
656 fd_error
= fd_error_volatile
;
657 fd_output
= fd_output_volatile
;
658 filefd
= filefd_volatile
;
659 count
= count_volatile
;
660 sa_count
= sa_count_volatile
;
661 new_argv
= new_argv_volatile
;
663 fd0
= synch_process_fd
;
668 unblock_child_signal ();
675 /* Emacs ignores SIGPIPE, but the child should not. */
676 signal (SIGPIPE
, SIG_DFL
);
678 child_setup (filefd
, fd1
, fd_error
, new_argv
, 0, current_dir
);
681 #endif /* not WINDOWSNT */
687 if (INTEGERP (buffer
))
688 record_deleted_pid (pid
);
690 synch_process_pid
= pid
;
693 unblock_child_signal ();
696 /* The MSDOS case did this already. */
698 emacs_close (fd_error
);
699 #endif /* not MSDOS */
701 /* Close most of our file descriptors, but not fd0
702 since we will use that to read input from. */
703 emacs_close (filefd
);
705 emacs_close (fd_output
);
706 if (fd1
>= 0 && fd1
!= fd_error
)
713 report_file_error ("Doing vfork", Qnil
);
716 if (INTEGERP (buffer
))
717 return unbind_to (count
, Qnil
);
719 if (BUFFERP (buffer
))
720 Fset_buffer (buffer
);
724 /* If BUFFER is nil, we must read process output once and then
725 discard it, so setup coding system but with nil. */
726 setup_coding_system (Qnil
, &process_coding
);
727 process_coding
.dst_multibyte
= 0;
731 Lisp_Object val
, *args2
;
734 if (!NILP (Vcoding_system_for_read
))
735 val
= Vcoding_system_for_read
;
738 if (EQ (coding_systems
, Qt
))
742 SAFE_NALLOCA (args2
, 1, nargs
+ 1);
743 args2
[0] = Qcall_process
;
744 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
746 = Ffind_operation_coding_system (nargs
+ 1, args2
);
748 if (CONSP (coding_systems
))
749 val
= XCAR (coding_systems
);
750 else if (CONSP (Vdefault_process_coding_system
))
751 val
= XCAR (Vdefault_process_coding_system
);
755 Fcheck_coding_system (val
);
756 /* In unibyte mode, character code conversion should not take
757 place but EOL conversion should. So, setup raw-text or one
758 of the subsidiary according to the information just setup. */
759 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
761 val
= raw_text_coding_system (val
);
762 setup_coding_system (val
, &process_coding
);
763 process_coding
.dst_multibyte
764 = ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
766 process_coding
.src_multibyte
= 0;
771 if (output_to_buffer
)
773 enum { CALLPROC_BUFFER_SIZE_MIN
= 16 * 1024 };
774 enum { CALLPROC_BUFFER_SIZE_MAX
= 4 * CALLPROC_BUFFER_SIZE_MIN
};
775 char buf
[CALLPROC_BUFFER_SIZE_MAX
];
776 int bufsize
= CALLPROC_BUFFER_SIZE_MIN
;
779 EMACS_INT total_read
= 0;
781 bool display_on_the_fly
= display_p
;
782 struct coding_system saved_coding
;
784 saved_coding
= process_coding
;
787 /* Repeatedly read until we've filled as much as possible
788 of the buffer size we have. But don't read
789 less than 1024--save that for the next bufferful. */
791 while (nread
< bufsize
- 1024)
793 int this_read
= emacs_read (fd0
, buf
+ nread
,
801 process_coding
.mode
|= CODING_MODE_LAST_BLOCK
;
806 total_read
+= this_read
;
808 if (display_on_the_fly
)
812 /* Now NREAD is the total amount of data in the buffer. */
817 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
818 && ! CODING_MAY_REQUIRE_DECODING (&process_coding
))
819 insert_1_both (buf
, nread
, nread
, 0, 1, 0);
821 { /* We have to decode the input. */
823 ptrdiff_t count1
= SPECPDL_INDEX ();
825 XSETBUFFER (curbuf
, current_buffer
);
826 /* We cannot allow after-change-functions be run
827 during decoding, because that might modify the
828 buffer, while we rely on process_coding.produced to
829 faithfully reflect inserted text until we
830 TEMP_SET_PT_BOTH below. */
831 specbind (Qinhibit_modification_hooks
, Qt
);
832 decode_coding_c_string (&process_coding
,
833 (unsigned char *) buf
, nread
, curbuf
);
834 unbind_to (count1
, Qnil
);
835 if (display_on_the_fly
836 && CODING_REQUIRE_DETECTION (&saved_coding
)
837 && ! CODING_REQUIRE_DETECTION (&process_coding
))
839 /* We have detected some coding system. But,
840 there's a possibility that the detection was
841 done by insufficient data. So, we give up
842 displaying on the fly. */
843 if (process_coding
.produced
> 0)
844 del_range_2 (process_coding
.dst_pos
,
845 process_coding
.dst_pos_byte
,
846 process_coding
.dst_pos
847 + process_coding
.produced_char
,
848 process_coding
.dst_pos_byte
849 + process_coding
.produced
, 0);
850 display_on_the_fly
= 0;
851 process_coding
= saved_coding
;
853 /* This is to make the above condition always
854 fails in the future. */
855 saved_coding
.common_flags
856 &= ~CODING_REQUIRE_DETECTION_MASK
;
860 TEMP_SET_PT_BOTH (PT
+ process_coding
.produced_char
,
861 PT_BYTE
+ process_coding
.produced
);
862 carryover
= process_coding
.carryover_bytes
;
864 memcpy (buf
, process_coding
.carryover
,
865 process_coding
.carryover_bytes
);
869 if (process_coding
.mode
& CODING_MODE_LAST_BLOCK
)
872 /* Make the buffer bigger as we continue to read more data,
873 but not past CALLPROC_BUFFER_SIZE_MAX. */
874 if (bufsize
< CALLPROC_BUFFER_SIZE_MAX
&& total_read
> 32 * bufsize
)
875 if ((bufsize
*= 2) > CALLPROC_BUFFER_SIZE_MAX
)
876 bufsize
= CALLPROC_BUFFER_SIZE_MAX
;
881 prepare_menu_bars ();
883 redisplay_preserve_echo_area (1);
884 /* This variable might have been set to 0 for code
885 detection. In that case, we set it back to 1 because
886 we should have already detected a coding system. */
887 display_on_the_fly
= 1;
894 Vlast_coding_system_used
= CODING_ID_NAME (process_coding
.id
);
895 /* If the caller required, let the buffer inherit the
896 coding-system used to decode the process output. */
897 if (inherit_process_coding_system
)
898 call1 (intern ("after-insert-file-set-buffer-file-coding-system"),
899 make_number (total_read
));
903 /* Wait for it to terminate, unless it already has. */
904 wait_for_termination (pid
, &status
, !output_to_buffer
);
909 /* Don't kill any children that the subprocess may have left behind
911 synch_process_pid
= 0;
914 unbind_to (count
, Qnil
);
916 if (WIFSIGNALED (status
))
920 synchronize_system_messages_locale ();
921 signame
= strsignal (WTERMSIG (status
));
926 return code_convert_string_norecord (build_string (signame
),
927 Vlocale_coding_system
, 0);
930 eassert (WIFEXITED (status
));
931 return make_number (WEXITSTATUS (status
));
935 delete_temp_file (Lisp_Object name
)
937 /* Suppress jka-compr handling, etc. */
938 ptrdiff_t count
= SPECPDL_INDEX ();
939 specbind (intern ("file-name-handler-alist"), Qnil
);
941 /* If this is called when the subprocess didn't exit yet, the
942 attempt to delete its input file will fail. In that case, we
943 schedule the file for deletion when the subprocess exits. This
944 is the 2nd part of handling this situation; see the call to
945 record_infile in call-process above, for the first part. */
946 if (!internal_delete_file (name
))
948 Lisp_Object encoded_file
= ENCODE_FILE (name
);
950 record_pending_deletion (SSDATA (encoded_file
));
953 internal_delete_file (name
);
955 unbind_to (count
, Qnil
);
959 DEFUN ("call-process-region", Fcall_process_region
, Scall_process_region
,
961 doc
: /* Send text from START to END to a synchronous process running PROGRAM.
962 The remaining arguments are optional.
963 Delete the text if fourth arg DELETE is non-nil.
965 Insert output in BUFFER before point; t means current buffer; nil for
966 BUFFER means discard it; 0 means discard and don't wait; and `(:file
967 FILE)', where FILE is a file name string, means that it should be
968 written to that file (if the file already exists it is overwritten).
969 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
970 REAL-BUFFER says what to do with standard output, as above,
971 while STDERR-FILE says what to do with standard error in the child.
972 STDERR-FILE may be nil (discard standard error output),
973 t (mix it with ordinary output), or a file name string.
975 Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.
976 Remaining args are passed to PROGRAM at startup as command args.
978 If BUFFER is 0, `call-process-region' returns immediately with value nil.
979 Otherwise it waits for PROGRAM to terminate
980 and returns a numeric exit status or a signal description string.
981 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
983 usage: (call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS) */)
984 (ptrdiff_t nargs
, Lisp_Object
*args
)
987 Lisp_Object filename_string
;
988 register Lisp_Object start
, end
;
989 ptrdiff_t count
= SPECPDL_INDEX ();
990 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
991 Lisp_Object coding_systems
;
992 Lisp_Object val
, *args2
;
996 if (STRINGP (Vtemporary_file_directory
))
997 tmpdir
= Vtemporary_file_directory
;
1002 outf
= getenv ("TMPDIR");
1003 tmpdir
= build_string (outf
? outf
: "/tmp/");
1005 if ((outf
= egetenv ("TMPDIR"))
1006 || (outf
= egetenv ("TMP"))
1007 || (outf
= egetenv ("TEMP")))
1008 tmpdir
= build_string (outf
);
1010 tmpdir
= Ffile_name_as_directory (build_string ("c:/temp"));
1016 Lisp_Object pattern
= Fexpand_file_name (Vtemp_file_name_pattern
, tmpdir
);
1017 Lisp_Object encoded_tem
;
1021 /* Cannot use the result of Fexpand_file_name, because it
1022 downcases the XXXXXX part of the pattern, and mktemp then
1023 doesn't recognize it. */
1024 if (!NILP (Vw32_downcase_file_names
))
1026 Lisp_Object dirname
= Ffile_name_directory (pattern
);
1029 pattern
= Vtemp_file_name_pattern
;
1031 pattern
= concat2 (dirname
, Vtemp_file_name_pattern
);
1035 encoded_tem
= ENCODE_FILE (pattern
);
1036 tempfile
= SAFE_ALLOCA (SBYTES (encoded_tem
) + 1);
1037 memcpy (tempfile
, SDATA (encoded_tem
), SBYTES (encoded_tem
) + 1);
1038 coding_systems
= Qt
;
1045 fd
= mkstemp (tempfile
);
1048 report_file_error ("Failed to open temporary file",
1049 Fcons (build_string (tempfile
), Qnil
));
1060 report_file_error ("Failed to open temporary file using pattern",
1061 Fcons (pattern
, Qnil
));
1065 filename_string
= build_string (tempfile
);
1066 GCPRO1 (filename_string
);
1072 /* Decide coding-system of the contents of the temporary file. */
1073 if (!NILP (Vcoding_system_for_write
))
1074 val
= Vcoding_system_for_write
;
1075 else if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
1080 SAFE_NALLOCA (args2
, 1, nargs
+ 1);
1081 args2
[0] = Qcall_process_region
;
1082 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1083 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1084 val
= CONSP (coding_systems
) ? XCDR (coding_systems
) : Qnil
;
1087 val
= complement_process_encoding_system (val
);
1090 ptrdiff_t count1
= SPECPDL_INDEX ();
1092 specbind (intern ("coding-system-for-write"), val
);
1093 /* POSIX lets mk[s]temp use "."; don't invoke jka-compr if we
1094 happen to get a ".Z" suffix. */
1095 specbind (intern ("file-name-handler-alist"), Qnil
);
1096 Fwrite_region (start
, end
, filename_string
, Qnil
, Qlambda
, Qnil
, Qnil
);
1098 unbind_to (count1
, Qnil
);
1101 /* Note that Fcall_process takes care of binding
1102 coding-system-for-read. */
1104 record_unwind_protect (delete_temp_file
, filename_string
);
1106 if (nargs
> 3 && !NILP (args
[3]))
1107 Fdelete_region (start
, end
);
1119 args
[1] = filename_string
;
1121 RETURN_UNGCPRO (unbind_to (count
, Fcall_process (nargs
, args
)));
1125 static int relocate_fd (int fd
, int minfd
);
1129 add_env (char **env
, char **new_env
, char *string
)
1136 /* See if this string duplicates any string already in the env.
1137 If so, don't put it in.
1138 When an env var has multiple definitions,
1139 we keep the definition that comes first in process-environment. */
1140 for (ep
= env
; ok
&& ep
!= new_env
; ep
++)
1142 char *p
= *ep
, *q
= string
;
1148 /* The string is a lone variable name; keep it for now, we
1149 will remove it later. It is a placeholder for a
1150 variable that is not to be included in the environment. */
1158 *new_env
++ = string
;
1162 /* This is the last thing run in a newly forked inferior
1163 either synchronous or asynchronous.
1164 Copy descriptors IN, OUT and ERR as descriptors 0, 1 and 2.
1165 Initialize inferior's priority, pgrp, connected dir and environment.
1166 then exec another program based on new_argv.
1168 If SET_PGRP, put the subprocess into a separate process group.
1170 CURRENT_DIR is an elisp string giving the path of the current
1171 directory the subprocess should have. Since we can't really signal
1172 a decent error from within the child, this should be verified as an
1173 executable directory by the parent. */
1176 child_setup (int in
, int out
, int err
, char **new_argv
, bool set_pgrp
,
1177 Lisp_Object current_dir
)
1184 #endif /* WINDOWSNT */
1186 pid_t pid
= getpid ();
1188 /* Close Emacs's descriptors that this process should not have. */
1189 close_process_descs ();
1191 /* DOS_NT isn't in a vfork, so if we are in the middle of load-file,
1192 we will lose if we call close_load_descs here. */
1194 close_load_descs ();
1197 /* Note that use of alloca is always safe here. It's obvious for systems
1198 that do not have true vfork or that have true (stack) alloca.
1199 If using vfork and C_ALLOCA (when Emacs used to include
1200 src/alloca.c) it is safe because that changes the superior's
1201 static variables as if the superior had done alloca and will be
1202 cleaned up in the usual way. */
1204 register char *temp
;
1205 size_t i
; /* size_t, because ptrdiff_t might overflow here! */
1207 i
= SBYTES (current_dir
);
1209 /* MSDOS must have all environment variables malloc'ed, because
1210 low-level libc functions that launch subsidiary processes rely
1212 pwd_var
= xmalloc (i
+ 6);
1214 pwd_var
= alloca (i
+ 6);
1217 memcpy (pwd_var
, "PWD=", 4);
1218 memcpy (temp
, SDATA (current_dir
), i
);
1219 if (!IS_DIRECTORY_SEP (temp
[i
- 1])) temp
[i
++] = DIRECTORY_SEP
;
1223 /* We can't signal an Elisp error here; we're in a vfork. Since
1224 the callers check the current directory before forking, this
1225 should only return an error if the directory's permissions
1226 are changed between the check and this chdir, but we should
1228 if (chdir (temp
) < 0)
1231 /* Get past the drive letter, so that d:/ is left alone. */
1232 if (i
> 2 && IS_DEVICE_SEP (temp
[1]) && IS_DIRECTORY_SEP (temp
[2]))
1239 /* Strip trailing slashes for PWD, but leave "/" and "//" alone. */
1240 while (i
> 2 && IS_DIRECTORY_SEP (temp
[i
- 1]))
1244 /* Set `env' to a vector of the strings in the environment. */
1246 register Lisp_Object tem
;
1247 register char **new_env
;
1249 register int new_length
;
1250 Lisp_Object display
= Qnil
;
1254 for (tem
= Vprocess_environment
;
1255 CONSP (tem
) && STRINGP (XCAR (tem
));
1258 if (strncmp (SSDATA (XCAR (tem
)), "DISPLAY", 7) == 0
1259 && (SDATA (XCAR (tem
)) [7] == '\0'
1260 || SDATA (XCAR (tem
)) [7] == '='))
1261 /* DISPLAY is specified in process-environment. */
1266 /* If not provided yet, use the frame's DISPLAY. */
1269 Lisp_Object tmp
= Fframe_parameter (selected_frame
, Qdisplay
);
1270 if (!STRINGP (tmp
) && CONSP (Vinitial_environment
))
1271 /* If still not found, Look for DISPLAY in Vinitial_environment. */
1272 tmp
= Fgetenv_internal (build_string ("DISPLAY"),
1273 Vinitial_environment
);
1281 /* new_length + 2 to include PWD and terminating 0. */
1282 env
= new_env
= alloca ((new_length
+ 2) * sizeof *env
);
1283 /* If we have a PWD envvar, pass one down,
1284 but with corrected value. */
1285 if (egetenv ("PWD"))
1286 *new_env
++ = pwd_var
;
1288 if (STRINGP (display
))
1290 char *vdata
= alloca (sizeof "DISPLAY=" + SBYTES (display
));
1291 strcpy (vdata
, "DISPLAY=");
1292 strcat (vdata
, SSDATA (display
));
1293 new_env
= add_env (env
, new_env
, vdata
);
1297 for (tem
= Vprocess_environment
;
1298 CONSP (tem
) && STRINGP (XCAR (tem
));
1300 new_env
= add_env (env
, new_env
, SSDATA (XCAR (tem
)));
1304 /* Remove variable names without values. */
1308 while (*q
!= 0 && strchr (*q
, '=') == NULL
)
1318 prepare_standard_handles (in
, out
, err
, handles
);
1319 set_process_dir (SDATA (current_dir
));
1320 /* Spawn the child. (See w32proc.c:sys_spawnve). */
1321 cpid
= spawnve (_P_NOWAIT
, new_argv
[0], new_argv
, env
);
1322 reset_standard_handles (in
, out
, err
, handles
);
1324 /* An error occurred while trying to spawn the process. */
1325 report_file_error ("Spawning child process", Qnil
);
1328 #else /* not WINDOWSNT */
1329 /* Make sure that in, out, and err are not actually already in
1330 descriptors zero, one, or two; this could happen if Emacs is
1331 started with its standard in, out, or error closed, as might
1334 int oin
= in
, oout
= out
;
1336 /* We have to avoid relocating the same descriptor twice! */
1338 in
= relocate_fd (in
, 3);
1343 out
= relocate_fd (out
, 3);
1347 else if (err
== oout
)
1350 err
= relocate_fd (err
, 3);
1364 if (err
!= in
&& err
!= out
)
1370 execve (new_argv
[0], new_argv
, env
);
1372 emacs_write (1, "Can't exec program: ", 20);
1373 emacs_write (1, new_argv
[0], strlen (new_argv
[0]));
1374 emacs_write (1, "\n", 1);
1378 pid
= run_msdos_command (new_argv
, pwd_var
+ 4, in
, out
, err
, env
);
1381 /* An error occurred while trying to run the subprocess. */
1382 report_file_error ("Spawning child process", Qnil
);
1385 #endif /* not WINDOWSNT */
1389 /* Move the file descriptor FD so that its number is not less than MINFD.
1390 If the file descriptor is moved at all, the original is freed. */
1392 relocate_fd (int fd
, int minfd
)
1398 int new = fcntl (fd
, F_DUPFD
, minfd
);
1401 const char *message_1
= "Error while setting up child: ";
1402 const char *errmessage
= strerror (errno
);
1403 const char *message_2
= "\n";
1404 emacs_write (2, message_1
, strlen (message_1
));
1405 emacs_write (2, errmessage
, strlen (errmessage
));
1406 emacs_write (2, message_2
, strlen (message_2
));
1413 #endif /* not WINDOWSNT */
1416 getenv_internal_1 (const char *var
, ptrdiff_t varlen
, char **value
,
1417 ptrdiff_t *valuelen
, Lisp_Object env
)
1419 for (; CONSP (env
); env
= XCDR (env
))
1421 Lisp_Object entry
= XCAR (env
);
1423 && SBYTES (entry
) >= varlen
1425 /* NT environment variables are case insensitive. */
1426 && ! strnicmp (SDATA (entry
), var
, varlen
)
1427 #else /* not WINDOWSNT */
1428 && ! memcmp (SDATA (entry
), var
, varlen
)
1429 #endif /* not WINDOWSNT */
1432 if (SBYTES (entry
) > varlen
&& SREF (entry
, varlen
) == '=')
1434 *value
= SSDATA (entry
) + (varlen
+ 1);
1435 *valuelen
= SBYTES (entry
) - (varlen
+ 1);
1438 else if (SBYTES (entry
) == varlen
)
1440 /* Lone variable names in Vprocess_environment mean that
1441 variable should be removed from the environment. */
1451 getenv_internal (const char *var
, ptrdiff_t varlen
, char **value
,
1452 ptrdiff_t *valuelen
, Lisp_Object frame
)
1454 /* Try to find VAR in Vprocess_environment first. */
1455 if (getenv_internal_1 (var
, varlen
, value
, valuelen
,
1456 Vprocess_environment
))
1457 return *value
? 1 : 0;
1459 /* For DISPLAY try to get the values from the frame or the initial env. */
1460 if (strcmp (var
, "DISPLAY") == 0)
1463 = Fframe_parameter (NILP (frame
) ? selected_frame
: frame
, Qdisplay
);
1464 if (STRINGP (display
))
1466 *value
= SSDATA (display
);
1467 *valuelen
= SBYTES (display
);
1470 /* If still not found, Look for DISPLAY in Vinitial_environment. */
1471 if (getenv_internal_1 (var
, varlen
, value
, valuelen
,
1472 Vinitial_environment
))
1473 return *value
? 1 : 0;
1479 DEFUN ("getenv-internal", Fgetenv_internal
, Sgetenv_internal
, 1, 2, 0,
1480 doc
: /* Get the value of environment variable VARIABLE.
1481 VARIABLE should be a string. Value is nil if VARIABLE is undefined in
1482 the environment. Otherwise, value is a string.
1484 This function searches `process-environment' for VARIABLE.
1486 If optional parameter ENV is a list, then search this list instead of
1487 `process-environment', and return t when encountering a negative entry
1488 \(an entry for a variable with no value). */)
1489 (Lisp_Object variable
, Lisp_Object env
)
1494 CHECK_STRING (variable
);
1497 if (getenv_internal_1 (SSDATA (variable
), SBYTES (variable
),
1498 &value
, &valuelen
, env
))
1499 return value
? make_string (value
, valuelen
) : Qt
;
1503 else if (getenv_internal (SSDATA (variable
), SBYTES (variable
),
1504 &value
, &valuelen
, env
))
1505 return make_string (value
, valuelen
);
1510 /* A version of getenv that consults the Lisp environment lists,
1511 easily callable from C. */
1513 egetenv (const char *var
)
1518 if (getenv_internal (var
, strlen (var
), &value
, &valuelen
, Qnil
))
1525 /* This is run before init_cmdargs. */
1528 init_callproc_1 (void)
1531 const char *etc_dir
= ns_etc_directory ();
1532 const char *path_exec
= ns_exec_path ();
1535 Vdata_directory
= decode_env_path ("EMACSDATA",
1540 Vdata_directory
= Ffile_name_as_directory (Fcar (Vdata_directory
));
1542 Vdoc_directory
= decode_env_path ("EMACSDOC",
1547 Vdoc_directory
= Ffile_name_as_directory (Fcar (Vdoc_directory
));
1549 /* Check the EMACSPATH environment variable, defaulting to the
1550 PATH_EXEC path from epaths.h. */
1551 Vexec_path
= decode_env_path ("EMACSPATH",
1553 path_exec
? path_exec
:
1556 Vexec_directory
= Ffile_name_as_directory (Fcar (Vexec_path
));
1557 /* FIXME? For ns, path_exec should go at the front? */
1558 Vexec_path
= nconc2 (decode_env_path ("PATH", ""), Vexec_path
);
1561 /* This is run after init_cmdargs, when Vinstallation_directory is valid. */
1564 init_callproc (void)
1566 char *data_dir
= egetenv ("EMACSDATA");
1569 Lisp_Object tempdir
;
1573 const char *etc_dir
= ns_etc_directory ();
1576 data_dir
= alloca (strlen (etc_dir
) + 1);
1577 strcpy (data_dir
, etc_dir
);
1582 if (!NILP (Vinstallation_directory
))
1584 /* Add to the path the lib-src subdir of the installation dir. */
1586 tem
= Fexpand_file_name (build_string ("lib-src"),
1587 Vinstallation_directory
);
1589 /* MSDOS uses wrapped binaries, so don't do this. */
1590 if (NILP (Fmember (tem
, Vexec_path
)))
1593 const char *path_exec
= ns_exec_path ();
1595 Vexec_path
= decode_env_path ("EMACSPATH",
1597 path_exec
? path_exec
:
1600 Vexec_path
= Fcons (tem
, Vexec_path
);
1601 Vexec_path
= nconc2 (decode_env_path ("PATH", ""), Vexec_path
);
1604 Vexec_directory
= Ffile_name_as_directory (tem
);
1605 #endif /* not MSDOS */
1607 /* Maybe use ../etc as well as ../lib-src. */
1610 tem
= Fexpand_file_name (build_string ("etc"),
1611 Vinstallation_directory
);
1612 Vdoc_directory
= Ffile_name_as_directory (tem
);
1616 /* Look for the files that should be in etc. We don't use
1617 Vinstallation_directory, because these files are never installed
1618 near the executable, and they are never in the build
1619 directory when that's different from the source directory.
1621 Instead, if these files are not in the nominal place, we try the
1622 source directory. */
1625 Lisp_Object tem
, tem1
, srcdir
;
1627 srcdir
= Fexpand_file_name (build_string ("../src/"),
1628 build_string (PATH_DUMPLOADSEARCH
));
1629 tem
= Fexpand_file_name (build_string ("GNU"), Vdata_directory
);
1630 tem1
= Ffile_exists_p (tem
);
1631 if (!NILP (Fequal (srcdir
, Vinvocation_directory
)) || NILP (tem1
))
1634 newdir
= Fexpand_file_name (build_string ("../etc/"),
1635 build_string (PATH_DUMPLOADSEARCH
));
1636 tem
= Fexpand_file_name (build_string ("GNU"), newdir
);
1637 tem1
= Ffile_exists_p (tem
);
1639 Vdata_directory
= newdir
;
1647 tempdir
= Fdirectory_file_name (Vexec_directory
);
1648 if (! file_accessible_directory_p (SSDATA (tempdir
)))
1649 dir_warning ("arch-dependent data dir", Vexec_directory
);
1652 tempdir
= Fdirectory_file_name (Vdata_directory
);
1653 if (! file_accessible_directory_p (SSDATA (tempdir
)))
1654 dir_warning ("arch-independent data dir", Vdata_directory
);
1656 sh
= getenv ("SHELL");
1657 Vshell_file_name
= build_string (sh
? sh
: "/bin/sh");
1660 Vshared_game_score_directory
= Qnil
;
1662 Vshared_game_score_directory
= build_string (PATH_GAME
);
1663 if (NILP (Ffile_accessible_directory_p (Vshared_game_score_directory
)))
1664 Vshared_game_score_directory
= Qnil
;
1669 set_initial_environment (void)
1672 for (envp
= environ
; *envp
; envp
++)
1673 Vprocess_environment
= Fcons (build_string (*envp
),
1674 Vprocess_environment
);
1675 /* Ideally, the `copy' shouldn't be necessary, but it seems it's frequent
1676 to use `delete' and friends on process-environment. */
1677 Vinitial_environment
= Fcopy_sequence (Vprocess_environment
);
1681 syms_of_callproc (void)
1684 Vtemp_file_name_pattern
= build_string ("emacsXXXXXX");
1685 #elif defined (WINDOWSNT)
1686 Vtemp_file_name_pattern
= build_string ("emXXXXXX");
1688 Vtemp_file_name_pattern
= build_string ("detmp.XXX");
1690 staticpro (&Vtemp_file_name_pattern
);
1692 DEFVAR_LISP ("shell-file-name", Vshell_file_name
,
1693 doc
: /* File name to load inferior shells from.
1694 Initialized from the SHELL environment variable, or to a system-dependent
1695 default if SHELL is not set. */);
1697 DEFVAR_LISP ("exec-path", Vexec_path
,
1698 doc
: /* List of directories to search programs to run in subprocesses.
1699 Each element is a string (directory name) or nil (try default directory). */);
1701 DEFVAR_LISP ("exec-suffixes", Vexec_suffixes
,
1702 doc
: /* List of suffixes to try to find executable file names.
1703 Each element is a string. */);
1704 Vexec_suffixes
= Qnil
;
1706 DEFVAR_LISP ("exec-directory", Vexec_directory
,
1707 doc
: /* Directory for executables for Emacs to invoke.
1708 More generally, this includes any architecture-dependent files
1709 that are built and installed from the Emacs distribution. */);
1711 DEFVAR_LISP ("data-directory", Vdata_directory
,
1712 doc
: /* Directory of machine-independent files that come with GNU Emacs.
1713 These are files intended for Emacs to use while it runs. */);
1715 DEFVAR_LISP ("doc-directory", Vdoc_directory
,
1716 doc
: /* Directory containing the DOC file that comes with GNU Emacs.
1717 This is usually the same as `data-directory'. */);
1719 DEFVAR_LISP ("configure-info-directory", Vconfigure_info_directory
,
1720 doc
: /* For internal use by the build procedure only.
1721 This is the name of the directory in which the build procedure installed
1722 Emacs's info files; the default value for `Info-default-directory-list'
1724 Vconfigure_info_directory
= build_string (PATH_INFO
);
1726 DEFVAR_LISP ("shared-game-score-directory", Vshared_game_score_directory
,
1727 doc
: /* Directory of score files for games which come with GNU Emacs.
1728 If this variable is nil, then Emacs is unable to use a shared directory. */);
1730 Vshared_game_score_directory
= Qnil
;
1732 Vshared_game_score_directory
= build_string (PATH_GAME
);
1735 DEFVAR_LISP ("initial-environment", Vinitial_environment
,
1736 doc
: /* List of environment variables inherited from the parent process.
1737 Each element should be a string of the form ENVVARNAME=VALUE.
1738 The elements must normally be decoded (using `locale-coding-system') for use. */);
1739 Vinitial_environment
= Qnil
;
1741 DEFVAR_LISP ("process-environment", Vprocess_environment
,
1742 doc
: /* List of overridden environment variables for subprocesses to inherit.
1743 Each element should be a string of the form ENVVARNAME=VALUE.
1745 Entries in this list take precedence to those in the frame-local
1746 environments. Therefore, let-binding `process-environment' is an easy
1747 way to temporarily change the value of an environment variable,
1748 irrespective of where it comes from. To use `process-environment' to
1749 remove an environment variable, include only its name in the list,
1752 This variable is set to nil when Emacs starts.
1754 If multiple entries define the same variable, the first one always
1757 Non-ASCII characters are encoded according to the initial value of
1758 `locale-coding-system', i.e. the elements must normally be decoded for
1761 See `setenv' and `getenv'. */);
1762 Vprocess_environment
= Qnil
;
1764 defsubr (&Scall_process
);
1765 defsubr (&Sgetenv_internal
);
1766 defsubr (&Scall_process_region
);