diff options
| author | Karl Heuer | 1994-09-17 02:05:34 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-09-17 02:05:34 +0000 |
| commit | f0fc0b1a46c0accb687a02d395af5fce40dfb51b (patch) | |
| tree | 8a6b8f3f6fb74d74c2215f24a090ede2c70307b8 /src | |
| parent | d5a67884b7fa06ffd1f555e498ac9285d088bc1c (diff) | |
| download | emacs-f0fc0b1a46c0accb687a02d395af5fce40dfb51b.tar.gz emacs-f0fc0b1a46c0accb687a02d395af5fce40dfb51b.zip | |
(Vsystem_configuration_options): New variable.
(syms_of_emacs): Initialize it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/emacs.c b/src/emacs.c index 91dec351a88..f430a198600 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -84,7 +84,11 @@ Lisp_Object Vsystem_type; | |||
| 84 | 84 | ||
| 85 | /* Variable whose value is string giving configuration built for. */ | 85 | /* Variable whose value is string giving configuration built for. */ |
| 86 | Lisp_Object Vsystem_configuration; | 86 | Lisp_Object Vsystem_configuration; |
| 87 | 87 | ||
| 88 | /* Variable whose value is string giving configuration options, | ||
| 89 | for use when reporting bugs. */ | ||
| 90 | Lisp_Object Vsystem_configuration_options; | ||
| 91 | |||
| 88 | /* If non-zero, emacs should not attempt to use an window-specific code, | 92 | /* If non-zero, emacs should not attempt to use an window-specific code, |
| 89 | but instead should use the virtual terminal under which it was started */ | 93 | but instead should use the virtual terminal under which it was started */ |
| 90 | int inhibit_window_system; | 94 | int inhibit_window_system; |
| @@ -1025,6 +1029,10 @@ syms_of_emacs () | |||
| 1025 | "Value is string indicating configuration Emacs was built for."); | 1029 | "Value is string indicating configuration Emacs was built for."); |
| 1026 | Vsystem_configuration = build_string (EMACS_CONFIGURATION); | 1030 | Vsystem_configuration = build_string (EMACS_CONFIGURATION); |
| 1027 | 1031 | ||
| 1032 | DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options, | ||
| 1033 | "String containing the configuration options Emacs was built with."); | ||
| 1034 | Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS); | ||
| 1035 | |||
| 1028 | DEFVAR_BOOL ("noninteractive", &noninteractive1, | 1036 | DEFVAR_BOOL ("noninteractive", &noninteractive1, |
| 1029 | "Non-nil means Emacs is running without interactive terminal."); | 1037 | "Non-nil means Emacs is running without interactive terminal."); |
| 1030 | 1038 | ||