+2003-01-24 Jan D. <jan.h.d@swipnet.se>
+
+ * gtkutil.c (xg_initialize): Initialize id_to_widget here instead
+ of static initializer.
+
2003-01-24 Dave Love <fx@gnu.org>
* s/gnu-linux.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define for more
GtkWidget **widgets;
int max_size;
int used;
-} id_to_widget = { 0, 0, 0 };
+} id_to_widget;
/* Grow this much every time we need to allocate more */
#define ID_TO_WIDGET_INCR 32
xg_menu_cb_list.prev = xg_menu_cb_list.next =
xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
+ id_to_widget.max_size = id_to_widget.used = 0;
+ id_to_widget.widgets = 0;
+
/* Remove F10 as a menu accelerator, it does not mix well with Emacs key
bindings. It doesn't seem to be any way to remove properties,
so we set it to VoidSymbol which in X means "no key". */
"gtk-menu-bar-accel",
"VoidSymbol",
EMACS_CLASS);
+
+ /* Make GTK text input widgets use Emacs style keybindings. This is
+ Emacs after all. */
+ gtk_settings_set_string_property (gtk_settings_get_default (),
+ "gtk-key-theme-name",
+ "Emacs",
+ EMACS_CLASS);
}
#endif /* USE_GTK */