]> git.eshelyaron.com Git - emacs.git/commitdiff
(set_font_frame_param): Use Fmodify_frame_parameters
authorGerd Moellmann <gerd@gnu.org>
Wed, 30 Aug 2000 13:18:07 +0000 (13:18 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 30 Aug 2000 13:18:07 +0000 (13:18 +0000)
instead of store_frame_param.

src/ChangeLog
src/xfaces.c

index c6375fc2f98b94076d82cd6b310f3b002fc663ca..4aeda60f2f1689dd613cc431f073d2338ecbce21 100644 (file)
@@ -1,3 +1,8 @@
+2000-08-30  Gerd Moellmann  <gerd@gnu.org>
+
+       * xfaces.c (set_font_frame_param): Use Fmodify_frame_parameters
+       instead of store_frame_param.
+
 2000-08-29  Gerd Moellmann  <gerd@gnu.org>
 
        * dispnew.c (build_frame_matrix_from_leaf_window): If a row of a
index 31611082680f0440e331e0b36d99bb239326da2d..ca7df408c2c3447232c2577a500e44491e3ef7ad 100644 (file)
@@ -4059,7 +4059,8 @@ set_font_frame_param (frame, lface)
       font_name = build_string (font);
       xfree (font);
     }
-  store_frame_param (f, Qfont, font_name);
+  
+  Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, font_name), Qnil));
 }