comparison src/frame-msw.c @ 424:11054d720c21 r21-2-20

Import from CVS: tag r21-2-20
author cvs
date Mon, 13 Aug 2007 11:26:11 +0200
parents 697ef44129c6
children
comparison
equal deleted inserted replaced
423:28d9c139be4c 424:11054d720c21
246 if (first_on_console) 246 if (first_on_console)
247 redisplay (); 247 redisplay ();
248 } 248 }
249 249
250 static void 250 static void
251 mswindows_mark_frame (struct frame *f, void (*markobj) (Lisp_Object)) 251 mswindows_mark_frame (struct frame *f)
252 { 252 {
253 markobj (FRAME_MSWINDOWS_MENU_HASH_TABLE (f)); 253 mark_object (FRAME_MSWINDOWS_MENU_HASH_TABLE (f));
254 #ifdef HAVE_TOOLBARS 254 #ifdef HAVE_TOOLBARS
255 markobj (FRAME_MSWINDOWS_TOOLBAR_HASH_TABLE (f)); 255 mark_object (FRAME_MSWINDOWS_TOOLBAR_HASH_TABLE (f));
256 #endif 256 #endif
257 markobj (FRAME_MSWINDOWS_WIDGET_HASH_TABLE (f)); 257 mark_object (FRAME_MSWINDOWS_WIDGET_HASH_TABLE (f));
258 } 258 }
259 259
260 static void 260 static void
261 mswindows_focus_on_frame (struct frame *f) 261 mswindows_focus_on_frame (struct frame *f)
262 { 262 {
739 syms_of_frame_mswindows (void) 739 syms_of_frame_mswindows (void)
740 { 740 {
741 } 741 }
742 742
743 void 743 void
744 vars_of_frame_mswindows (void) 744 reinit_vars_of_frame_mswindows (void)
745 { 745 {
746 /* Needn't staticpro -- see comment above. */ 746 /* Needn't staticpro -- see comment above. */
747 Vmswindows_frame_being_created = Qnil; 747 Vmswindows_frame_being_created = Qnil;
748 }
749
750 void
751 vars_of_frame_mswindows (void)
752 {
753 reinit_vars_of_frame_mswindows ();
748 754
749 DEFVAR_LISP ("mswindows-use-system-frame-size-defaults", &Vmswindows_use_system_frame_size_defaults /* 755 DEFVAR_LISP ("mswindows-use-system-frame-size-defaults", &Vmswindows_use_system_frame_size_defaults /*
750 Controls whether to use system or XEmacs defaults for frame size. 756 Controls whether to use system or XEmacs defaults for frame size.
751 If nil then reasonable defaults are used for intial frame sizes. If t 757 If nil then reasonable defaults are used for intial frame sizes. If t
752 then the system will choose default sizes for the frame. 758 then the system will choose default sizes for the frame.