aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-08-30 13:18:07 +0000
committerGerd Moellmann2000-08-30 13:18:07 +0000
commit5226a93199bccca738870ecc6ab60c09039b8443 (patch)
tree3046989dc3475e055a7b277ef0cd7db92e3844b1 /src
parentaf9ba8ad6c6b2e2673352d80e90d729b68eeb5c3 (diff)
downloademacs-5226a93199bccca738870ecc6ab60c09039b8443.tar.gz
emacs-5226a93199bccca738870ecc6ab60c09039b8443.zip
(set_font_frame_param): Use Fmodify_frame_parameters
instead of store_frame_param.
Diffstat (limited to 'src')
-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 c6375fc2f98..4aeda60f2f1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12000-08-30 Gerd Moellmann <gerd@gnu.org>
2
3 * xfaces.c (set_font_frame_param): Use Fmodify_frame_parameters
4 instead of store_frame_param.
5
12000-08-29 Gerd Moellmann <gerd@gnu.org> 62000-08-29 Gerd Moellmann <gerd@gnu.org>
2 7
3 * dispnew.c (build_frame_matrix_from_leaf_window): If a row of a 8 * dispnew.c (build_frame_matrix_from_leaf_window): If a row of a
diff --git a/src/xfaces.c b/src/xfaces.c
index 31611082680..ca7df408c2c 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -4059,7 +4059,8 @@ set_font_frame_param (frame, lface)
4059 font_name = build_string (font); 4059 font_name = build_string (font);
4060 xfree (font); 4060 xfree (font);
4061 } 4061 }
4062 store_frame_param (f, Qfont, font_name); 4062
4063 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, font_name), Qnil));
4063} 4064}
4064 4065
4065 4066