Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f7511647
Commit
f7511647
authored
May 18, 1994
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(syms_of_emacs): EMACS_CONFIGURATION renamed from CONFIGURATION.
(shut_down_emacs): Don't call intern.
parent
9fab67cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
src/emacs.c
src/emacs.c
+6
-2
No files found.
src/emacs.c
View file @
f7511647
...
...
@@ -850,7 +850,11 @@ shut_down_emacs (sig, no_x, stuff)
#endif
#ifdef HAVE_X_WINDOWS
if
(
!
noninteractive
&&
EQ
(
Vwindow_system
,
intern
(
"x"
))
&&
!
no_x
)
/* It's not safe to call intern here. Maybe we are crashing. */
if
(
!
noninteractive
&&
SYMBOLP
(
Vwindow_system
)
&&
XSYMBOL
(
Vwindow_system
)
->
name
->
size
==
1
&&
XSYMBOL
(
Vwindow_system
)
->
name
->
data
[
0
]
==
'x'
&&
!
no_x
)
Fx_close_current_connection
();
#endif
/* HAVE_X_WINDOWS */
...
...
@@ -1008,7 +1012,7 @@ syms_of_emacs ()
DEFVAR_LISP
(
"system-configuration"
,
&
Vsystem_configuration
,
"Value is string indicating configuration Emacs was built for."
);
Vsystem_configuration
=
build_string
(
CONFIGURATION
);
Vsystem_configuration
=
build_string
(
EMACS_
CONFIGURATION
);
DEFVAR_BOOL
(
"noninteractive"
,
&
noninteractive1
,
"Non-nil means Emacs is running without interactive terminal."
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment