]> git.eshelyaron.com Git - emacs.git/commitdiff
Consider all user-defined bitmaps in gui_init_fringe()
authorGregory Heytings <gregory@heytings.org>
Tue, 25 May 2021 04:21:03 +0000 (06:21 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 25 May 2021 04:21:03 +0000 (06:21 +0200)
* src/fringe.c (gui_init_fringe): Consider user-defined bitmaps
that override default ones (bug#47832).

src/fringe.c

index 65c9a84ac99ef122581df27c963e05eeff23f2f9..47615f51f9709f8941a73345717ecbedfbf5e6a1 100644 (file)
@@ -1776,14 +1776,15 @@ gui_init_fringe (struct redisplay_interface *rif)
   for (bt = NO_FRINGE_BITMAP + 1; bt < MAX_STANDARD_FRINGE_BITMAPS; bt++)
     {
       struct fringe_bitmap *fb = &standard_bitmaps[bt];
-      rif->define_fringe_bitmap (bt, fb->bits, fb->height, fb->width);
+      if (!fringe_bitmaps[bt])
+        rif->define_fringe_bitmap (bt, fb->bits, fb->height, fb->width);
     }
 
   /* Set up user-defined fringe bitmaps that might have been defined
      before the frame of this kind was initialized.  This can happen
      if Emacs is started as a daemon and the init files define fringe
      bitmaps.  */
-  for ( ; bt < max_used_fringe_bitmap; bt++)
+  for (bt = NO_FRINGE_BITMAP + 1; bt < max_used_fringe_bitmap; bt++)
     {
       struct fringe_bitmap *fb = fringe_bitmaps[bt];
       if (fb)