1 /* Synchronous subprocess invocation for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
28 extern char *strerror ();
30 /* Define SIGCHLD as an alias for SIGCLD. */
32 #if !defined (SIGCHLD) && defined (SIGCLD)
33 #define SIGCHLD SIGCLD
36 #include <sys/types.h>
40 #define INCLUDED_FCNTL
47 #include <stdlib.h> /* for proper declaration of environ */
50 #define _P_NOWAIT 1 /* from process.h */
53 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
55 #define INCLUDED_FCNTL
58 #include <sys/param.h>
75 #include "syssignal.h"
79 extern noshare
char **environ
;
81 extern char **environ
;
84 #define max(a, b) ((a) > (b) ? (a) : (b))
87 /* When we are starting external processes we need to know whether they
88 take binary input (no conversion) or text input (\n is converted to
89 \r\n). Similar for output: if newlines are written as \r\n then it's
90 text process output, otherwise it's binary. */
91 Lisp_Object Vbinary_process_input
;
92 Lisp_Object Vbinary_process_output
;
95 Lisp_Object Vexec_path
, Vexec_directory
, Vdata_directory
, Vdoc_directory
;
96 Lisp_Object Vconfigure_info_directory
;
98 Lisp_Object Vshell_file_name
;
100 Lisp_Object Vprocess_environment
;
103 Lisp_Object Qbuffer_file_type
;
106 /* True iff we are about to fork off a synchronous process or if we
107 are waiting for it. */
108 int synch_process_alive
;
110 /* Nonzero => this is a string explaining death of synchronous subprocess. */
111 char *synch_process_death
;
113 /* If synch_process_death is zero,
114 this is exit code of synchronous subprocess. */
115 int synch_process_retcode
;
117 extern Lisp_Object Vdoc_file_name
;
119 /* Clean up when exiting Fcall_process.
120 On MSDOS, delete the temporary file on any kind of termination.
121 On Unix, kill the process and any children on termination by signal. */
123 /* Nonzero if this is termination due to exit. */
124 static int call_process_exited
;
126 #ifndef VMS /* VMS version is in vmsproc.c. */
129 call_process_kill (fdpid
)
132 close (XFASTINT (Fcar (fdpid
)));
133 EMACS_KILLPG (XFASTINT (Fcdr (fdpid
)), SIGKILL
);
134 synch_process_alive
= 0;
139 call_process_cleanup (fdpid
)
143 /* for MSDOS fdpid is really (fd . tempfile) */
144 register Lisp_Object file
;
146 close (XFASTINT (Fcar (fdpid
)));
147 if (strcmp (XSTRING (file
)-> data
, NULL_DEVICE
) != 0)
148 unlink (XSTRING (file
)->data
);
149 #else /* not MSDOS */
150 register int pid
= XFASTINT (Fcdr (fdpid
));
153 if (call_process_exited
)
155 close (XFASTINT (Fcar (fdpid
)));
159 if (EMACS_KILLPG (pid
, SIGINT
) == 0)
161 int count
= specpdl_ptr
- specpdl
;
162 record_unwind_protect (call_process_kill
, fdpid
);
163 message1 ("Waiting for process to die...(type C-g again to kill it instantly)");
166 wait_for_termination (pid
);
168 specpdl_ptr
= specpdl
+ count
; /* Discard the unwind protect. */
169 message1 ("Waiting for process to die...done");
171 synch_process_alive
= 0;
172 close (XFASTINT (Fcar (fdpid
)));
173 #endif /* not MSDOS */
177 DEFUN ("call-process", Fcall_process
, Scall_process
, 1, MANY
, 0,
178 "Call PROGRAM synchronously in separate process.\n\
179 The program's input comes from file INFILE (nil means `/dev/null').\n\
180 Insert output in BUFFER before point; t means current buffer;\n\
181 nil for BUFFER means discard it; 0 means discard and don't wait.\n\
182 Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.\n\
183 Remaining arguments are strings passed as command arguments to PROGRAM.\n\
184 If BUFFER is 0, returns immediately with value nil.\n\
185 Otherwise waits for PROGRAM to terminate\n\
186 and returns a numeric exit status or a signal description string.\n\
187 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
190 register Lisp_Object
*args
;
192 Lisp_Object infile
, buffer
, current_dir
, display
, path
;
197 int count
= specpdl_ptr
- specpdl
;
198 register unsigned char **new_argv
199 = (unsigned char **) alloca ((max (2, nargs
- 2)) * sizeof (char *));
200 struct buffer
*old
= current_buffer
;
201 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
202 char *outf
, *tempfile
;
208 CHECK_STRING (args
[0], 0);
211 /* Without asynchronous processes we cannot have BUFFER == 0. */
212 if (nargs
>= 3 && INTEGERP (args
[2]))
213 error ("Operating system cannot handle asynchronous subprocesses");
214 #endif /* subprocesses */
216 if (nargs
>= 2 && ! NILP (args
[1]))
218 infile
= Fexpand_file_name (args
[1], current_buffer
->directory
);
219 CHECK_STRING (infile
, 1);
222 infile
= build_string (NULL_DEVICE
);
226 register Lisp_Object tem
;
228 buffer
= tem
= args
[2];
231 || XFASTINT (tem
) == 0))
233 buffer
= Fget_buffer (tem
);
234 CHECK_BUFFER (buffer
, 2);
240 /* Make sure that the child will be able to chdir to the current
241 buffer's current directory, or its unhandled equivalent. We
242 can't just have the child check for an error when it does the
243 chdir, since it's in a vfork.
245 We have to GCPRO around this because Fexpand_file_name,
246 Funhandled_file_name_directory, and Ffile_accessible_directory_p
247 might call a file name handling function. The argument list is
248 protected by the caller, so all we really have to worry about is
251 struct gcpro gcpro1
, gcpro2
, gcpro3
;
253 current_dir
= current_buffer
->directory
;
255 GCPRO3 (infile
, buffer
, current_dir
);
258 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir
),
260 if (NILP (Ffile_accessible_directory_p (current_dir
)))
261 report_file_error ("Setting current directory",
262 Fcons (current_buffer
->directory
, Qnil
));
267 display
= nargs
>= 4 ? args
[3] : Qnil
;
269 filefd
= open (XSTRING (infile
)->data
, O_RDONLY
, 0);
272 report_file_error ("Opening process input file", Fcons (infile
, Qnil
));
274 /* Search for program; barf if not found. */
278 GCPRO1 (current_dir
);
279 openp (Vexec_path
, args
[0], EXEC_SUFFIXES
, &path
, 1);
285 report_file_error ("Searching for program", Fcons (args
[0], Qnil
));
287 new_argv
[0] = XSTRING (path
)->data
;
290 for (i
= 4; i
< nargs
; i
++)
292 CHECK_STRING (args
[i
], i
);
293 new_argv
[i
- 3] = XSTRING (args
[i
])->data
;
298 #ifdef MSDOS /* MW, July 1993 */
299 /* These vars record information from process termination.
300 Clear them now before process can possibly terminate,
301 to avoid timing error if process terminates soon. */
302 synch_process_death
= 0;
303 synch_process_retcode
= 0;
305 if ((outf
= egetenv ("TMP")) || (outf
= egetenv ("TEMP")))
306 strcpy (tempfile
= alloca (strlen (outf
) + 20), outf
);
309 tempfile
= alloca (20);
312 dostounix_filename (tempfile
);
313 if (*tempfile
== '\0' || tempfile
[strlen (tempfile
) - 1] != '/')
314 strcat (tempfile
, "/");
315 strcat (tempfile
, "detmp.XXX");
318 outfilefd
= creat (tempfile
, S_IREAD
| S_IWRITE
);
322 report_file_error ("Opening process output file", Fcons (tempfile
, Qnil
));
326 if (INTEGERP (buffer
))
327 fd
[1] = open (NULL_DEVICE
, O_WRONLY
), fd
[0] = -1;
332 pipe_with_inherited_out (fd
);
333 #else /* not WINDOWSNT */
335 #endif /* not WINDOWSNT */
338 /* Replaced by close_process_descs */
339 set_exclusive_use (fd
[0]);
344 /* child_setup must clobber environ in systems with true vfork.
345 Protect it from permanent change. */
346 register char **save_environ
= environ
;
347 register int fd1
= fd
[1];
349 #if 0 /* Some systems don't have sigblock. */
350 mask
= sigblock (sigmask (SIGCHLD
));
353 /* Record that we're about to create a synchronous process. */
354 synch_process_alive
= 1;
356 /* These vars record information from process termination.
357 Clear them now before process can possibly terminate,
358 to avoid timing error if process terminates soon. */
359 synch_process_death
= 0;
360 synch_process_retcode
= 0;
362 #ifdef MSDOS /* MW, July 1993 */
363 /* ??? Someone who knows MSDOG needs to check whether this properly
364 closes all descriptors that it opens. */
365 pid
= run_msdos_command (new_argv
, current_dir
, filefd
, outfilefd
);
367 fd1
= -1; /* No harm in closing that one! */
368 fd
[0] = open (tempfile
, NILP (Vbinary_process_output
) ? O_TEXT
: O_BINARY
);
373 report_file_error ("Cannot re-open temporary file", Qnil
);
375 #else /* not MSDOS */
377 pid
= child_setup (filefd
, fd1
, fd1
, new_argv
, 0, current_dir
);
378 #else /* not WINDOWSNT */
390 child_setup (filefd
, fd1
, fd1
, new_argv
, 0, current_dir
);
392 #endif /* not MSDOS */
393 #endif /* not WINDOWSNT */
395 environ
= save_environ
;
397 /* Close most of our fd's, but not fd[0]
398 since we will use that to read input from. */
408 report_file_error ("Doing vfork", Qnil
);
411 if (INTEGERP (buffer
))
416 /* If Emacs has been built with asynchronous subprocess support,
417 we don't need to do this, I think because it will then have
418 the facilities for handling SIGCHLD. */
419 wait_without_blocking ();
420 #endif /* subprocesses */
424 /* Enable sending signal if user quits below. */
425 call_process_exited
= 0;
428 /* MSDOS needs different cleanup information. */
429 record_unwind_protect (call_process_cleanup
,
430 Fcons (make_number (fd
[0]), build_string (tempfile
)));
432 record_unwind_protect (call_process_cleanup
,
433 Fcons (make_number (fd
[0]), make_number (pid
)));
434 #endif /* not MSDOS */
437 if (BUFFERP (buffer
))
438 Fset_buffer (buffer
);
447 while ((nread
= read (fd
[0], buf
, sizeof buf
)) != 0)
451 #if defined (__osf__) && defined (__alpha)
452 continue; /* Work around bug in DEC OSF/1 V3.0. */
460 if (!NILP (display
) && INTERACTIVE
)
463 prepare_menu_bars ();
465 redisplay_preserve_echo_area ();
472 /* Wait for it to terminate, unless it already has. */
473 wait_for_termination (pid
);
477 set_buffer_internal (old
);
479 /* Don't kill any children that the subprocess may have left behind
481 call_process_exited
= 1;
483 unbind_to (count
, Qnil
);
485 if (synch_process_death
)
486 return build_string (synch_process_death
);
487 return make_number (synch_process_retcode
);
492 delete_temp_file (name
)
495 /* Use Fdelete_file (indirectly) because that runs a file name handler.
496 We did that when writing the file, so we should do so when deleting. */
497 internal_delete_file (name
);
500 DEFUN ("call-process-region", Fcall_process_region
, Scall_process_region
,
502 "Send text from START to END to a synchronous process running PROGRAM.\n\
503 Delete the text if fourth arg DELETE is non-nil.\n\
504 Insert output in BUFFER before point; t means current buffer;\n\
505 nil for BUFFER means discard it; 0 means discard and don't wait.\n\
506 Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.\n\
507 Remaining args are passed to PROGRAM at startup as command args.\n\
508 If BUFFER is nil, returns immediately with value nil.\n\
509 Otherwise waits for PROGRAM to terminate\n\
510 and returns a numeric exit status or a signal description string.\n\
511 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
514 register Lisp_Object
*args
;
517 Lisp_Object filename_string
;
518 register Lisp_Object start
, end
;
524 int count
= specpdl_ptr
- specpdl
;
528 if ((outf
= egetenv ("TMP")) || (outf
= egetenv ("TEMP")))
529 strcpy (tempfile
= alloca (strlen (outf
) + 20), outf
);
532 tempfile
= alloca (20);
535 dostounix_filename (tempfile
);
536 if (tempfile
[strlen (tempfile
) - 1] != '/')
537 strcat (tempfile
, "/");
538 strcat (tempfile
, "detmp.XXX");
539 #else /* not DOS_NT */
542 strcpy (tempfile
, "tmp:emacsXXXXXX.");
544 strcpy (tempfile
, "/tmp/emacsXXXXXX");
546 #endif /* not DOS_NT */
550 filename_string
= build_string (tempfile
);
551 GCPRO1 (filename_string
);
555 specbind (Qbuffer_file_type
, Vbinary_process_input
);
556 Fwrite_region (start
, end
, filename_string
, Qnil
, Qlambda
);
557 unbind_to (count
, Qnil
);
558 #else /* not DOS_NT */
559 Fwrite_region (start
, end
, filename_string
, Qnil
, Qlambda
);
560 #endif /* not DOS_NT */
562 record_unwind_protect (delete_temp_file
, filename_string
);
565 Fdelete_region (start
, end
);
567 args
[3] = filename_string
;
569 RETURN_UNGCPRO (unbind_to (count
, Fcall_process (nargs
- 2, args
+ 2)));
572 #ifndef VMS /* VMS version is in vmsproc.c. */
574 /* This is the last thing run in a newly forked inferior
575 either synchronous or asynchronous.
576 Copy descriptors IN, OUT and ERR as descriptors 0, 1 and 2.
577 Initialize inferior's priority, pgrp, connected dir and environment.
578 then exec another program based on new_argv.
580 This function may change environ for the superior process.
581 Therefore, the superior process must save and restore the value
582 of environ around the vfork and the call to this function.
584 ENV is the environment for the subprocess.
586 SET_PGRP is nonzero if we should put the subprocess into a separate
589 CURRENT_DIR is an elisp string giving the path of the current
590 directory the subprocess should have. Since we can't really signal
591 a decent error from within the child, this should be verified as an
592 executable directory by the parent. */
594 child_setup (in
, out
, err
, new_argv
, set_pgrp
, current_dir
)
596 register char **new_argv
;
598 Lisp_Object current_dir
;
601 /* The MSDOS port of gcc cannot fork, vfork, ... so we must call system
603 #else /* not MSDOS */
609 #endif /* WINDOWSNT */
613 #ifdef SET_EMACS_PRIORITY
615 extern int emacs_priority
;
617 if (emacs_priority
< 0)
618 nice (- emacs_priority
);
623 /* Close Emacs's descriptors that this process should not have. */
624 close_process_descs ();
628 /* Note that use of alloca is always safe here. It's obvious for systems
629 that do not have true vfork or that have true (stack) alloca.
630 If using vfork and C_ALLOCA it is safe because that changes
631 the superior's static variables as if the superior had done alloca
632 and will be cleaned up in the usual way. */
637 i
= XSTRING (current_dir
)->size
;
638 pwd_var
= (char *) alloca (i
+ 6);
640 bcopy ("PWD=", pwd_var
, 4);
641 bcopy (XSTRING (current_dir
)->data
, temp
, i
);
642 if (!IS_DIRECTORY_SEP (temp
[i
- 1])) temp
[i
++] = DIRECTORY_SEP
;
645 /* We can't signal an Elisp error here; we're in a vfork. Since
646 the callers check the current directory before forking, this
647 should only return an error if the directory's permissions
648 are changed between the check and this chdir, but we should
650 if (chdir (temp
) < 0)
653 /* Strip trailing slashes for PWD, but leave "/" and "//" alone. */
654 while (i
> 2 && IS_DIRECTORY_SEP (temp
[i
- 1]))
658 /* Set `env' to a vector of the strings in Vprocess_environment. */
660 register Lisp_Object tem
;
661 register char **new_env
;
662 register int new_length
;
665 for (tem
= Vprocess_environment
;
666 CONSP (tem
) && STRINGP (XCONS (tem
)->car
);
667 tem
= XCONS (tem
)->cdr
)
670 /* new_length + 2 to include PWD and terminating 0. */
671 env
= new_env
= (char **) alloca ((new_length
+ 2) * sizeof (char *));
673 /* If we have a PWD envvar, pass one down,
674 but with corrected value. */
676 *new_env
++ = pwd_var
;
678 /* Copy the Vprocess_environment strings into new_env. */
679 for (tem
= Vprocess_environment
;
680 CONSP (tem
) && STRINGP (XCONS (tem
)->car
);
681 tem
= XCONS (tem
)->cdr
)
684 char *string
= (char *) XSTRING (XCONS (tem
)->car
)->data
;
685 /* See if this string duplicates any string already in the env.
686 If so, don't put it in.
687 When an env var has multiple definitions,
688 we keep the definition that comes first in process-environment. */
689 for (; ep
!= new_env
; ep
++)
691 char *p
= *ep
, *q
= string
;
695 /* The string is malformed; might as well drop it. */
710 prepare_standard_handles (in
, out
, err
, handles
);
711 #else /* not WINDOWSNT */
712 /* Make sure that in, out, and err are not actually already in
713 descriptors zero, one, or two; this could happen if Emacs is
714 started with its standard in, out, or error closed, as might
716 in
= relocate_fd (in
, 3);
718 err
= out
= relocate_fd (out
, 3);
721 out
= relocate_fd (out
, 3);
722 err
= relocate_fd (err
, 3);
735 #endif /* not WINDOWSNT */
738 #ifndef SETPGRP_RELEASES_CTTY
739 setpgrp (); /* No arguments but equivalent in this case */
744 /* setpgrp_of_tty is incorrect here; it uses input_fd. */
745 EMACS_SET_TTY_PGRP (0, &pid
);
748 something missing here
;
752 /* Spawn the child. (See ntproc.c:Spawnve). */
753 cpid
= spawnve (_P_NOWAIT
, new_argv
[0], new_argv
, env
);
754 if (cpid
== -1) { ????
755 report_file_error ("Spawning child process", Qnil
);
757 reset_standard_handles (in
, out
, err
, handles
);
759 #else /* not WINDOWSNT */
760 /* execvp does not accept an environment arg so the only way
761 to pass this environment is to set environ. Our caller
762 is responsible for restoring the ambient value of environ. */
764 execvp (new_argv
[0], new_argv
);
766 write (1, "Couldn't exec the program ", 26);
767 write (1, new_argv
[0], strlen (new_argv
[0]));
769 #endif /* not WINDOWSNT */
770 #endif /* not MSDOS */
773 /* Move the file descriptor FD so that its number is not less than MIN.
774 If the file descriptor is moved at all, the original is freed. */
776 relocate_fd (fd
, min
)
786 char *message1
= "Error while setting up child: ";
787 char *errmessage
= strerror (errno
);
788 char *message2
= "\n";
789 write (2, message1
, strlen (message1
));
790 write (2, errmessage
, strlen (errmessage
));
791 write (2, message2
, strlen (message2
));
794 /* Note that we hold the original FD open while we recurse,
795 to guarantee we'll get a new FD if we need it. */
796 new = relocate_fd (new, min
);
803 getenv_internal (var
, varlen
, value
, valuelen
)
811 for (scan
= Vprocess_environment
; CONSP (scan
); scan
= XCONS (scan
)->cdr
)
815 entry
= XCONS (scan
)->car
;
817 && XSTRING (entry
)->size
> varlen
818 && XSTRING (entry
)->data
[varlen
] == '='
820 /* NT environment variables are case insensitive. */
821 && ! strnicmp (XSTRING (entry
)->data
, var
, varlen
))
822 #else /* not WINDOWSNT */
823 && ! bcmp (XSTRING (entry
)->data
, var
, varlen
))
824 #endif /* not WINDOWSNT */
826 *value
= (char *) XSTRING (entry
)->data
+ (varlen
+ 1);
827 *valuelen
= XSTRING (entry
)->size
- (varlen
+ 1);
835 DEFUN ("getenv", Fgetenv
, Sgetenv
, 1, 1, 0,
836 "Return the value of environment variable VAR, as a string.\n\
837 VAR should be a string. Value is nil if VAR is undefined in the environment.\n\
838 This function consults the variable ``process-environment'' for its value.")
845 CHECK_STRING (var
, 0);
846 if (getenv_internal (XSTRING (var
)->data
, XSTRING (var
)->size
,
848 return make_string (value
, valuelen
);
853 /* A version of getenv that consults process_environment, easily
862 if (getenv_internal (var
, strlen (var
), &value
, &valuelen
))
870 /* This is run before init_cmdargs. */
874 char *data_dir
= egetenv ("EMACSDATA");
875 char *doc_dir
= egetenv ("EMACSDOC");
878 = Ffile_name_as_directory (build_string (data_dir
? data_dir
881 = Ffile_name_as_directory (build_string (doc_dir
? doc_dir
884 /* Check the EMACSPATH environment variable, defaulting to the
885 PATH_EXEC path from paths.h. */
886 Vexec_path
= decode_env_path ("EMACSPATH", PATH_EXEC
);
887 Vexec_directory
= Ffile_name_as_directory (Fcar (Vexec_path
));
888 Vexec_path
= nconc2 (decode_env_path ("PATH", ""), Vexec_path
);
891 /* This is run after init_cmdargs, so that Vinvocation_directory is valid. */
895 char *data_dir
= egetenv ("EMACSDATA");
900 if (initialized
&& !NILP (Vinstallation_directory
))
902 /* Add to the path the lib-src subdir of the installation dir. */
904 tem
= Fexpand_file_name (build_string ("lib-src"),
905 Vinstallation_directory
);
906 if (NILP (Fmember (tem
, Vexec_path
)))
909 /* MSDOS uses wrapped binaries, so don't do this. */
910 Vexec_path
= nconc2 (Vexec_path
, Fcons (tem
, Qnil
));
911 Vexec_directory
= Ffile_name_as_directory (tem
);
912 #endif /* not DOS_NT */
914 /* If we use ../lib-src, maybe use ../etc as well.
915 Do so if ../etc exists and has our DOC-... file in it. */
918 tem
= Fexpand_file_name (build_string ("etc"),
919 Vinstallation_directory
);
920 Vdoc_directory
= Ffile_name_as_directory (tem
);
925 /* Look for the files that should be in etc. We don't use
926 Vinstallation_directory, because these files are never installed
927 in /bin near the executable, and they are never in the build
928 directory when that's different from the source directory.
930 Instead, if these files are not in the nominal place, we try the
934 Lisp_Object tem
, tem1
, newdir
;
936 tem
= Fexpand_file_name (build_string ("GNU"), Vdata_directory
);
937 tem1
= Ffile_exists_p (tem
);
940 newdir
= Fexpand_file_name (build_string ("../etc/"),
941 build_string (PATH_DUMPLOADSEARCH
));
942 tem
= Fexpand_file_name (build_string ("GNU"), newdir
);
943 tem1
= Ffile_exists_p (tem
);
945 Vdata_directory
= newdir
;
949 tempdir
= Fdirectory_file_name (Vexec_directory
);
950 if (access (XSTRING (tempdir
)->data
, 0) < 0)
953 "Warning: arch-dependent data dir (%s) does not exist.\n",
954 XSTRING (Vexec_directory
)->data
);
958 tempdir
= Fdirectory_file_name (Vdata_directory
);
959 if (access (XSTRING (tempdir
)->data
, 0) < 0)
962 "Warning: arch-independent data dir (%s) does not exist.\n",
963 XSTRING (Vdata_directory
)->data
);
968 Vshell_file_name
= build_string ("*dcl*");
970 sh
= (char *) getenv ("SHELL");
971 Vshell_file_name
= build_string (sh
? sh
: "/bin/sh");
975 set_process_environment ()
977 register char **envp
;
979 Vprocess_environment
= Qnil
;
983 for (envp
= environ
; *envp
; envp
++)
984 Vprocess_environment
= Fcons (build_string (*envp
),
985 Vprocess_environment
);
991 Qbuffer_file_type
= intern ("buffer-file-type");
992 staticpro (&Qbuffer_file_type
);
994 DEFVAR_LISP ("binary-process-input", &Vbinary_process_input
,
995 "*If non-nil then new subprocesses are assumed to take binary input.");
996 Vbinary_process_input
= Qnil
;
998 DEFVAR_LISP ("binary-process-output", &Vbinary_process_output
,
999 "*If non-nil then new subprocesses are assumed to produce binary output.");
1000 Vbinary_process_output
= Qnil
;
1003 DEFVAR_LISP ("shell-file-name", &Vshell_file_name
,
1004 "*File name to load inferior shells from.\n\
1005 Initialized from the SHELL environment variable.");
1007 DEFVAR_LISP ("exec-path", &Vexec_path
,
1008 "*List of directories to search programs to run in subprocesses.\n\
1009 Each element is a string (directory name) or nil (try default directory).");
1011 DEFVAR_LISP ("exec-directory", &Vexec_directory
,
1012 "Directory of architecture-dependent files that come with GNU Emacs,\n\
1013 especially executable programs intended for Emacs to invoke.");
1015 DEFVAR_LISP ("data-directory", &Vdata_directory
,
1016 "Directory of architecture-independent files that come with GNU Emacs,\n\
1017 intended for Emacs to use.");
1019 DEFVAR_LISP ("doc-directory", &Vdoc_directory
,
1020 "Directory containing the DOC file that comes with GNU Emacs.\n\
1021 This is usually the same as data-directory.");
1023 DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory
,
1024 "For internal use by the build procedure only.\n\
1025 This is the name of the directory in which the build procedure installed\n\
1026 Emacs's info files; the default value for Info-default-directory-list\n\
1028 Vconfigure_info_directory
= build_string (PATH_INFO
);
1030 DEFVAR_LISP ("process-environment", &Vprocess_environment
,
1031 "List of environment variables for subprocesses to inherit.\n\
1032 Each element should be a string of the form ENVVARNAME=VALUE.\n\
1033 The environment which Emacs inherits is placed in this variable\n\
1034 when Emacs starts.");
1037 defsubr (&Scall_process
);
1040 defsubr (&Scall_process_region
);