emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master bb56cc4cad 1/2: Fix crash on setting frame background color


From: Po Lu
Subject: master bb56cc4cad 1/2: Fix crash on setting frame background color
Date: Wed, 3 Aug 2022 08:17:44 -0400 (EDT)

branch: master
commit bb56cc4cad3a5680e30dc29723690708bcff08f2
Author: Po Lu <luangruo@yahoo.com>
Commit: Po Lu <luangruo@yahoo.com>

    Fix crash on setting frame background color
    
    * src/xfns.c (x_set_background_color): Stop setting scroll bar
    window background, since this is now taken care of
    automatically.
---
 src/xfns.c | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/src/xfns.c b/src/xfns.c
index c149eaeca3..614a5b3455 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -1202,20 +1202,6 @@ x_set_background_color (struct frame *f, Lisp_Object 
arg, Lisp_Object oldval)
       xg_set_background_color (f, bg);
 #endif
 
-#ifndef USE_TOOLKIT_SCROLL_BARS /* Turns out to be annoying with
-                                  toolkit scroll bars.  */
-      {
-       Lisp_Object bar;
-       for (bar = FRAME_SCROLL_BARS (f);
-            !NILP (bar);
-            bar = XSCROLL_BAR (bar)->next)
-         {
-           Window window = XSCROLL_BAR (bar)->x_window;
-           XSetWindowBackground (dpy, window, bg);
-         }
-      }
-#endif /* USE_TOOLKIT_SCROLL_BARS */
-
       unblock_input ();
       update_face_from_frame_parameter (f, Qbackground_color, arg);
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]