# HG changeset patch # User stephent # Date 1050426117 0 # Node ID d47e87058e8fdeb6f103692d9a71ac96eded9004 # Parent 56496b4938889a6192ad87028e1281508e57b9fe [xemacs-hg @ 2003-04-15 17:01:56 by stephent] restore GTK declarations <87istfbstq.fsf@tleepslib.sk.tsukuba.ac.jp> <87he8zbsrr.fsf@tleepslib.sk.tsukuba.ac.jp> diff -r 56496b493888 -r d47e87058e8f src/ChangeLog --- a/src/ChangeLog Tue Apr 15 16:09:47 2003 +0000 +++ b/src/ChangeLog Tue Apr 15 17:01:57 2003 +0000 @@ -1,3 +1,15 @@ +2003-04-16 Stephen J. Turnbull + + * symsinit.h (reinit_console_type_create_gtk): + (reinit_vars_of_menubar_gtk): + (reinit_vars_of_event_gtk): + Declare. + +2003-04-12 Malcolm Purvis + + * event-gtk.c: Added missing declaration of + non_fake_input_wait_mask. + 2003-04-04 Daiki Ueno * regex.c (re_match_2_internal): Fix charset/charset_not matching diff -r 56496b493888 -r d47e87058e8f src/event-gtk.c --- a/src/event-gtk.c Tue Apr 15 16:09:47 2003 +0000 +++ b/src/event-gtk.c Tue Apr 15 17:01:57 2003 +0000 @@ -79,7 +79,8 @@ static int tty_events_occurred; /* Mask of bits indicating the descriptors that we wait for input on */ -extern SELECT_TYPE input_wait_mask, process_only_mask, tty_only_mask; +extern SELECT_TYPE input_wait_mask, non_fake_input_wait_mask; +extern SELECT_TYPE process_only_mask, tty_only_mask; static Lisp_Object gtk_keysym_to_emacs_keysym (); void debug_process_finalization (struct Lisp_Process *p); diff -r 56496b493888 -r d47e87058e8f src/symsinit.h --- a/src/symsinit.h Tue Apr 15 16:09:47 2003 +0000 +++ b/src/symsinit.h Tue Apr 15 17:01:57 2003 +0000 @@ -520,6 +520,7 @@ void syms_of_widget_accessors (void); void syms_of_ui_byhand (void); void console_type_create_gtk (void); +void reinit_console_type_create_gtk (void); void console_type_create_device_gtk (void); void console_type_create_frame_gtk (void); void console_type_create_glyphs_gtk (void); @@ -533,10 +534,12 @@ void vars_of_device_gtk (void); void vars_of_dialog_gtk (void); void vars_of_event_gtk (void); +void reinit_vars_of_event_gtk (void); void vars_of_frame_gtk (void); void vars_of_glyphs_gtk (void); void vars_of_gui_gtk (void); void vars_of_menubar_gtk (void); +void reinit_vars_of_menubar_gtk (void); void vars_of_objects_gtk (void); void vars_of_scrollbar_gtk (void); void vars_of_select_gtk (void);