aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/emacs.c b/src/emacs.c
index b9654d0e03c..d09c3c36c8a 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1,7 +1,7 @@
1/* Fully extensible Emacs, running on Unix, intended for GNU. 1/* Fully extensible Emacs, running on Unix, intended for GNU.
2 2
3Copyright (C) 1985-1987, 1993-1995, 1997-1999, 2001-2014 3Copyright (C) 1985-1987, 1993-1995, 1997-1999, 2001-2015 Free Software
4 Free Software Foundation, Inc. 4Foundation, Inc.
5 5
6This file is part of GNU Emacs. 6This file is part of GNU Emacs.
7 7
@@ -148,13 +148,6 @@ static bool malloc_using_checking;
148extern void malloc_enable_thread (void); 148extern void malloc_enable_thread (void);
149#endif 149#endif
150 150
151Lisp_Object Qfile_name_handler_alist;
152
153Lisp_Object Qrisky_local_variable;
154
155Lisp_Object Qkill_emacs;
156static Lisp_Object Qkill_emacs_hook;
157
158/* If true, Emacs should not attempt to use a window-specific code, 151/* If true, Emacs should not attempt to use a window-specific code,
159 but instead should use the virtual terminal under which it was started. */ 152 but instead should use the virtual terminal under which it was started. */
160bool inhibit_window_system; 153bool inhibit_window_system;
@@ -1913,7 +1906,7 @@ all of which are called before Emacs is actually killed. */)
1913 /* Fsignal calls emacs_abort () if it sees that waiting_for_input is 1906 /* Fsignal calls emacs_abort () if it sees that waiting_for_input is
1914 set. */ 1907 set. */
1915 waiting_for_input = 0; 1908 waiting_for_input = 0;
1916 Frun_hooks (1, &Qkill_emacs_hook); 1909 run_hook (Qkill_emacs_hook);
1917 UNGCPRO; 1910 UNGCPRO;
1918 1911
1919#ifdef HAVE_X_WINDOWS 1912#ifdef HAVE_X_WINDOWS