aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-08-30 13:18:07 +0000
committerGerd Moellmann <[email protected]>2000-08-30 13:18:07 +0000
commit5226a93199bccca738870ecc6ab60c09039b8443 (patch)
tree3046989dc3475e055a7b277ef0cd7db92e3844b1
parentaf9ba8ad6c6b2e2673352d80e90d729b68eeb5c3 (diff)
(set_font_frame_param): Use Fmodify_frame_parameters
instead of store_frame_param.
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xfaces.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c6375fc2f9..4aeda60f2f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2000-08-30 Gerd Moellmann <[email protected]>
+
+ * xfaces.c (set_font_frame_param): Use Fmodify_frame_parameters
+ instead of store_frame_param.
+
2000-08-29 Gerd Moellmann <[email protected]>
* dispnew.c (build_frame_matrix_from_leaf_window): If a row of a
diff --git a/src/xfaces.c b/src/xfaces.c
index 3161108268..ca7df408c2 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -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));
}