changeset 1415:d47e87058e8f

[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>
author stephent
date Tue, 15 Apr 2003 17:01:57 +0000
parents 56496b493888
children b0c1d9dc4b08
files src/ChangeLog src/event-gtk.c src/symsinit.h
diffstat 3 files changed, 17 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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  <stephen@xemacs.org>
+
+	* symsinit.h (reinit_console_type_create_gtk):
+	(reinit_vars_of_menubar_gtk):
+	(reinit_vars_of_event_gtk):
+	Declare.
+
+2003-04-12  Malcolm Purvis  <malcolmpurvis@optushome.com.au>
+
+	* event-gtk.c: Added missing declaration of
+	non_fake_input_wait_mask.
+
 2003-04-04  Daiki Ueno  <daiki@xemacs.org>
 
 	* regex.c (re_match_2_internal): Fix charset/charset_not matching
--- 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);
--- 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);