]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge fix for Bug#4238 from trunk
authorChong Yidong <cyd@stupidchicken.com>
Fri, 22 Jul 2011 15:23:10 +0000 (11:23 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 22 Jul 2011 15:23:10 +0000 (11:23 -0400)
src/ChangeLog
src/frame.c

index 84280a9a90f942a5c7183a79c14df807878a3502..09a6180e79d143bb15cb8d1d9709047ce8a6a1da 100644 (file)
@@ -1,3 +1,8 @@
+2011-07-22  Chong Yidong  <cyd@stupidchicken.com>
+
+       * frame.c (Fmodify_frame_parameters): In tty case, update the
+       default face if necessary (Bug#4238).
+
 2011-07-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
        * s/darwin.h (LD_SWITCH_SYSTEM_TEMACS): Add -fno-pie so as to suppress
index f1cc0ce019dffdc56a9ee7336a3a8fe08d4996ea..a568342966affa7107ca2591872cc5da352e7a29 100644 (file)
@@ -2606,11 +2606,9 @@ use is not recommended.  Explicitly check for a frame-parameter instead.  */)
          val = values[i];
          store_frame_param (f, prop, val);
 
-         /* Changing the background color might change the background
-            mode, so that we have to load new defface specs.
-            Call frame-set-background-mode to do that.  */
-         if (EQ (prop, Qbackground_color))
-           call1 (Qframe_set_background_mode, frame);
+         if (EQ (prop, Qforeground_color)
+             || EQ (prop, Qbackground_color))
+           update_face_from_frame_parameter (f, prop, val);
        }
     }
   return Qnil;