]> git.eshelyaron.com Git - emacs.git/commitdiff
(set-face-font): Call resolve-fontset-name on w32.
authorAndrew Innes <andrewi@gnu.org>
Tue, 3 Nov 1998 22:26:56 +0000 (22:26 +0000)
committerAndrew Innes <andrewi@gnu.org>
Tue, 3 Nov 1998 22:26:56 +0000 (22:26 +0000)
(set-face-font-auto): Ditto.

lisp/faces.el

index e3e521bd713b2c8ac5e2e953b9ca91345524d824..24abd40a06cfc312fcdf1101384eba7d05ac8845 100644 (file)
@@ -149,8 +149,7 @@ If the optional FRAME argument is provided, change only
 in that frame; otherwise change each frame."
   (interactive (internal-face-interactive "font"))
   (if (stringp font)
-      (setq font (or (and (not (eq window-system 'w32))
-                         (resolve-fontset-name font))
+      (setq font (or (resolve-fontset-name font)
                     (x-resolve-font-name font 'default frame))))
   (internal-set-face-1 face 'font font 3 frame)
   ;; Record that this face's font was set explicitly, not automatically,
@@ -165,8 +164,7 @@ If the optional FRAME argument is provided, change only
 in that frame; otherwise change each frame."
   (interactive (internal-face-interactive "font"))
   (if (stringp font)
-      (setq font (or (and (not (eq window-system 'w32))
-                         (resolve-fontset-name font))
+      (setq font (or (resolve-fontset-name font)
                     (x-resolve-font-name font 'default frame))))
   (internal-set-face-1 face 'font font 3 frame))