(frame-notice-user-settings): If we change the frame's font,

call frame-update-faces.
This commit is contained in:
Richard M. Stallman 1994-08-11 21:38:02 +00:00
parent 985a7a04dc
commit 86e58378af

View file

@ -323,8 +323,11 @@ These supersede the values given in `default-frame-alist'.")
(setq newparms
(cons (cons (car (car tail)) newval) newparms))))
(setq tail (cdr tail)))
(setq newparms (nreverse newparms))
(modify-frame-parameters frame-initial-frame
(nreverse newparms)))))
newparms)
(if (assq 'font newparms)
(frame-update-faces frame-initial-frame)))))
;; Restore the original buffer.
(set-buffer old-buffer)