aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2004-06-24 20:24:52 +0000
committerRichard M. Stallman2004-06-24 20:24:52 +0000
commit4304f02fd4da517c7d514767b8419506c17ec36a (patch)
tree39aebf0a0f94ca34874ace4d887abcdf292fa721 /src
parent379031d1fd95b5f038267f2b162deb40e1461c52 (diff)
downloademacs-4304f02fd4da517c7d514767b8419506c17ec36a.tar.gz
emacs-4304f02fd4da517c7d514767b8419506c17ec36a.zip
(Vsignal_USR1_hook, Vsignal_USR2_hook): Definitions deleted.
(syms_of_emacs): Lisp variables deleted.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 7535c607599..6ecfdbd4231 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -126,14 +126,6 @@ Lisp_Object Vkill_emacs_hook;
126/* An empty lisp string. To avoid having to build any other. */ 126/* An empty lisp string. To avoid having to build any other. */
127Lisp_Object empty_string; 127Lisp_Object empty_string;
128 128
129#ifdef SIGUSR1
130/* Hooks for signal USR1 and USR2 handling. */
131Lisp_Object Vsignal_USR1_hook;
132#ifdef SIGUSR2
133Lisp_Object Vsignal_USR2_hook;
134#endif
135#endif
136
137/* Search path separator. */ 129/* Search path separator. */
138Lisp_Object Vpath_separator; 130Lisp_Object Vpath_separator;
139 131
@@ -2371,18 +2363,6 @@ The hook is not run in batch mode, i.e., if `noninteractive' is non-nil. */);
2371 empty_string = build_string (""); 2363 empty_string = build_string ("");
2372 staticpro (&empty_string); 2364 staticpro (&empty_string);
2373 2365
2374#ifdef SIGUSR1
2375 DEFVAR_LISP ("signal-USR1-hook", &Vsignal_USR1_hook,
2376 doc: /* Hook to be run whenever emacs receives a USR1 signal. */);
2377 Vsignal_USR1_hook = Qnil;
2378#ifdef SIGUSR2
2379 DEFVAR_LISP ("signal-USR2-hook", &Vsignal_USR2_hook,
2380 doc: /* Hook to be run whenever emacs receives a USR2 signal. */);
2381 Vsignal_USR2_hook = Qnil;
2382#endif
2383#endif
2384
2385
2386 DEFVAR_INT ("emacs-priority", &emacs_priority, 2366 DEFVAR_INT ("emacs-priority", &emacs_priority,
2387 doc: /* Priority for Emacs to run at. 2367 doc: /* Priority for Emacs to run at.
2388This value is effective only if set before Emacs is dumped, 2368This value is effective only if set before Emacs is dumped,