]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/pgtkterm.c (pgtk_draw_fringe_bitmap): Synchronize logic with X.
authorPo Lu <luangruo@yahoo.com>
Fri, 4 Mar 2022 01:11:36 +0000 (09:11 +0800)
committerPo Lu <luangruo@yahoo.com>
Fri, 4 Mar 2022 01:11:36 +0000 (09:11 +0800)
src/pgtkterm.c

index 7855b7053abc95e1e4f3539d4856c606723fc4a7..ce167fdac2f58807d154708831514c9fd61ad319 100644 (file)
@@ -3573,10 +3573,23 @@ pgtk_draw_fringe_bitmap (struct window *w, struct glyph_row *row,
        }
     }
 
-  if (p->which && p->which < max_fringe_bmp)
+  if (p->which
+      && p->which < max_fringe_bmp
+      && p->which < max_used_fringe_bitmap)
     {
       Emacs_GC gcv;
 
+      if (!fringe_bmp[p->which])
+       {
+         /* This fringe bitmap is known to fringe.c, but lacks the
+            cairo_pattern_t pattern which shadows that bitmap.  This
+            is typical to define-fringe-bitmap being called when the
+            selected frame was not a GUI frame, for example, when
+            packages that define fringe bitmaps are loaded by a
+            daemon Emacs.  Create the missing pattern now.  */
+         gui_define_fringe_bitmap (f, p->which);
+       }
+
       gcv.foreground = (p->cursor_p
                        ? (p->overlay_p ? face->background
                           : FRAME_X_OUTPUT (f)->cursor_color)