1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-04 08:47:11 +00:00

faces.el:face-set-after-frame-default: treat ns as other window systems

This commit is contained in:
Adrian Robert 2008-07-28 01:45:53 +00:00
parent bd6ce2baf7
commit d5d6ae6b65
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
* faces.el (face-set-after-frame-default): Treat 'ns as all other
window systems.
2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
* term/ns-win.el (do-applescript): New alias in carbon-compat section.

View File

@ -2027,7 +2027,7 @@ frame parameters in PARAMETERS and `default-frame-alist'."
;; X resouces for the default face are applied during
;; x-create-frame.
(and (not (eq face 'default))
(memq (window-system frame) '(x w32))
(memq (window-system frame) '(x w32 ns))
(make-face-x-resource-internal face frame))
;; Apply attributes specified by face-new-frame-defaults
(internal-merge-in-global-face face frame))