diff options
author | Jim Blandy <jimb@redhat.com> | 1993-05-25 06:38:43 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-05-25 06:38:43 +0000 |
commit | ed61592a799cf82479d157dca0fa1d6f6216990d (patch) | |
tree | 680db9adea2a99830cbbd9b1d587a6057c965f3b /src/callproc.c | |
parent | 7af17c1c21b1fd545b6aaaf94e2de0eaa6cd8ff8 (diff) | |
download | emacs-ed61592a799cf82479d157dca0fa1d6f6216990d.tar.gz |
* paths.h (PATH_INFO): New path, to edited by the configuration
process.
* callproc.c (Vconfigure_info_directory): New variable, used
internally by build process.
(syms_of_callproc): DEFVAR it and initialize it.
Diffstat (limited to 'src/callproc.c')
-rw-r--r-- | src/callproc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/callproc.c b/src/callproc.c index 2750f9a3f5e..51ba9301cdc 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -65,6 +65,7 @@ extern char **environ; #define max(a, b) ((a) > (b) ? (a) : (b)) Lisp_Object Vexec_path, Vexec_directory, Vdata_directory; +Lisp_Object Vconfigure_info_directory; Lisp_Object Vshell_file_name; @@ -704,6 +705,13 @@ especially executable programs intended for Emacs to invoke."); "Directory of architecture-independent files that come with GNU Emacs,\n\ intended for Emacs to use."); + DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory, + "For internal use by the build procedure only.\n\ +This is the name of the directory in which the build procedure installed\n\ +Emacs's info files; the default value for Info-default-directory-list\n\ +includes this."); + Vconfigure_info_directory = build_string (PATH_INFO); + DEFVAR_LISP ("process-environment", &Vprocess_environment, "List of environment variables for subprocesses to inherit.\n\ Each element should be a string of the form ENVVARNAME=VALUE.\n\ |