]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't call xwidget functions until GTK has been initialized
authorRobert Pluim <rpluim@gmail.com>
Tue, 27 Nov 2018 08:39:30 +0000 (09:39 +0100)
committerRobert Pluim <rpluim@gmail.com>
Tue, 27 Nov 2018 08:41:59 +0000 (09:41 +0100)
Follow up fix to Bug#33294.

* src/gtkutil.c: Define xg_gtk_initialized.
(xg_initialize): Set it when GTK has finished initializing.

* src/gtkutil.h: Declare xg_gtk_initialized.

* src/xwidget.c (Fmake_xwidget): Error out if GTK has not been
initialized.
(xwidget_init_view): Likewise.

src/gtkutil.c
src/gtkutil.h
src/xwidget.c

index 5879ab683ea126bd15831396e7dabeee00d2f0df..9540bd9072b5b2eed007571bdccbe23063e26e68 100644 (file)
@@ -147,6 +147,8 @@ struct xg_frame_tb_info
   GtkTextDirection dir;
 };
 
+bool xg_gtk_initialized;        /* Used to make sure xwidget calls are possible */
+
 static GtkWidget * xg_get_widget_from_map (ptrdiff_t idx);
 
 \f
@@ -5306,6 +5308,8 @@ xg_initialize (void)
 #ifdef HAVE_FREETYPE
   x_last_font_name = NULL;
 #endif
+
+  xg_gtk_initialized = true;
 }
 
 #endif /* USE_GTK */
index 7dcd549f5c0e28df27e2bf0025be2abf84bbcaf4..3b074073e44bd9a9cba14be0d02d6faea0888806 100644 (file)
@@ -202,5 +202,6 @@ extern void xg_initialize (void);
    to indicate that the callback should do nothing.  */
 extern bool xg_ignore_gtk_scrollbar;
 
+extern bool xg_gtk_initialized;
 #endif /* USE_GTK */
 #endif /* GTKUTIL_H */
index bcc450bac60bd9c7e875bb8a8b448ee70c816015..09c65d0d3eed2004712ddb8387c7eee3986711a8 100644 (file)
@@ -78,6 +78,8 @@ Returns the newly constructed xwidget, or nil if construction fails.  */)
    Lisp_Object title, Lisp_Object width, Lisp_Object height,
    Lisp_Object arguments, Lisp_Object buffer)
 {
+  if (!xg_gtk_initialized)
+    error ("make-xwidget: GTK has not been initialized");
   CHECK_SYMBOL (type);
   CHECK_NATNUM (width);
   CHECK_NATNUM (height);
@@ -508,6 +510,10 @@ xwidget_init_view (struct xwidget *xww,
                    struct glyph_string *s,
                    int x, int y)
 {
+
+  if (!xg_gtk_initialized)
+    error ("xwidget_init_view: GTK has not been initialized");
+
   struct xwidget_view *xv = allocate_xwidget_view ();
   Lisp_Object val;