From: Jan Djärv Date: Thu, 22 Nov 2007 08:40:20 +0000 (+0000) Subject: (update_frame_tool_bar): Don't call x-gtk-map-stock if X-Git-Tag: emacs-pretest-22.1.90~335 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1fbf5386109f20bd66a8c061ab1982f6ec3c3193;p=emacs.git (update_frame_tool_bar): Don't call x-gtk-map-stock if file for image is nil. --- diff --git a/src/ChangeLog b/src/ChangeLog index 5d3fdf4b9af..642ad1f638e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2007-11-22 Jan Dj,Ad(Brv + + * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if + file for image is nil. + 2007-11-19 Jason Rumney * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font): CreateFileMapping diff --git a/src/gtkutil.c b/src/gtkutil.c index 86a4703d0b7..9b2f11b1f72 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c @@ -3808,6 +3808,7 @@ update_frame_tool_bar (f) GtkWidget *wbutton = NULL; GtkWidget *weventbox; Lisp_Object func = intern ("x-gtk-map-stock"); + Lisp_Object specified_file; ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (x->toolbar_widget), i); @@ -3826,8 +3827,9 @@ update_frame_tool_bar (f) continue; } - if (EQ (Qt, Ffboundp (func))) - stock = call1 (func, file_for_image (image)); + specified_file = file_for_image (image); + if (!NILP (specified_file) && EQ (Qt, Ffboundp (func))) + stock = call1 (func, specified_file); if (! NILP (stock) && STRINGP (stock)) {