From: Richard M. Stallman Date: Thu, 24 Jun 2004 20:24:52 +0000 (+0000) Subject: (Vsignal_USR1_hook, Vsignal_USR2_hook): Definitions deleted. X-Git-Tag: ttn-vms-21-2-B4~5644 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4304f02fd4da517c7d514767b8419506c17ec36a;p=emacs.git (Vsignal_USR1_hook, Vsignal_USR2_hook): Definitions deleted. (syms_of_emacs): Lisp variables deleted. --- 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; /* An empty lisp string. To avoid having to build any other. */ Lisp_Object empty_string; -#ifdef SIGUSR1 -/* Hooks for signal USR1 and USR2 handling. */ -Lisp_Object Vsignal_USR1_hook; -#ifdef SIGUSR2 -Lisp_Object Vsignal_USR2_hook; -#endif -#endif - /* Search path separator. */ Lisp_Object Vpath_separator; @@ -2371,18 +2363,6 @@ The hook is not run in batch mode, i.e., if `noninteractive' is non-nil. */); empty_string = build_string (""); staticpro (&empty_string); -#ifdef SIGUSR1 - DEFVAR_LISP ("signal-USR1-hook", &Vsignal_USR1_hook, - doc: /* Hook to be run whenever emacs receives a USR1 signal. */); - Vsignal_USR1_hook = Qnil; -#ifdef SIGUSR2 - DEFVAR_LISP ("signal-USR2-hook", &Vsignal_USR2_hook, - doc: /* Hook to be run whenever emacs receives a USR2 signal. */); - Vsignal_USR2_hook = Qnil; -#endif -#endif - - DEFVAR_INT ("emacs-priority", &emacs_priority, doc: /* Priority for Emacs to run at. This value is effective only if set before Emacs is dumped,