]> git.eshelyaron.com Git - emacs.git/commitdiff
(Qwhen): Declare external; it's now defined in callint.c.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 24 Feb 2003 07:58:51 +0000 (07:58 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 24 Feb 2003 07:58:51 +0000 (07:58 +0000)
(syms_of_xdisp): Don't initialize Qwhen.

src/ChangeLog
src/xdisp.c

index 3e056ced267714f0ed2174fc78f5db3ee122a5f2..a3f5d91d77a0c70be9c76dae1c466de85a6552b6 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-24  Juanma Barranquero  <lektu@terra.es>
+
+       * xdisp.c (Qwhen): Declare external; it's now defined in callint.c.
+       (syms_of_xdisp): Don't initialize Qwhen.
+
 2003-02-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
        * keyboard.c (cancel_hourglass_unwind): New function.
@@ -10,7 +15,7 @@
        (Fcall_interactively): Call fix_command.
        (Qif, Qwhen): New variables.
        (syms_of_callint): Init and staticpro them.
-       
+
        * regex.c (print_partial_compiled_pattern): Output to stderr.
 
 2003-02-23  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
index 5da63f2f4075ec2e949b947e74f4d98a83ee1617..f9ad45445d46964606e61a8aeb2eacd2e532c9f7 100644 (file)
@@ -218,12 +218,13 @@ extern Lisp_Object Qmode_line, Qmode_line_inactive, Qheader_line;
 extern Lisp_Object Voverriding_local_map;
 extern Lisp_Object Voverriding_local_map_menu_flag;
 extern Lisp_Object Qmenu_item;
+extern Lisp_Object Qwhen;
 
 Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
 Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
 Lisp_Object Qredisplay_end_trigger_functions;
 Lisp_Object Qinhibit_point_motion_hooks;
-Lisp_Object QCeval, Qwhen, QCfile, QCdata, QCpropertize;
+Lisp_Object QCeval, QCfile, QCdata, QCpropertize;
 Lisp_Object Qfontified;
 Lisp_Object Qgrow_only;
 Lisp_Object Qinhibit_eval_during_redisplay;
@@ -15658,8 +15659,6 @@ syms_of_xdisp ()
   staticpro (&QCeval);
   QCpropertize = intern (":propertize");
   staticpro (&QCpropertize);
-  Qwhen = intern ("when");
-  staticpro (&Qwhen);
   QCfile = intern (":file");
   staticpro (&QCfile);
   Qfontified = intern ("fontified");