aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term/x-win.el
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>1997-08-03 02:51:30 +0000
committerKenichi Handa <[email protected]>1997-08-03 02:51:30 +0000
commit9ff9457b2d71a33db8ceef8bf6e5745e7db7338a (patch)
tree7729e48550464b76e63c654d1b2d7d62fbdf54b0 /lisp/term/x-win.el
parent5871092a2c633961c3b76d9a094932a5f06c8f0a (diff)
Fix previous change.
Diffstat (limited to 'lisp/term/x-win.el')
-rw-r--r--lisp/term/x-win.el9
1 files changed, 1 insertions, 8 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index c16c021164..d991f3b76a 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -650,10 +650,6 @@ This is in addition to the primary selection.")
(progn
;; Create the standard fontset.
(create-fontset-from-fontset-spec standard-fontset-spec)
- ;; Create variants of the standard fontset.
- ;;(create-fontset-from-fontset-spec standard-fontset-spec 'bold)
- ;;(create-fontset-from-fontset-spec standard-fontset-spec 'italic)
- ;;(create-fontset-from-fontset-spec standard-fontset-spec 'bold-italic)
;; Create fontset specified in X resources "Fontset-N" (N is 0, 1, ...).
(create-fontset-from-x-resource)
@@ -687,10 +683,7 @@ This is in addition to the primary selection.")
(aset xlfd-fields xlfd-regexp-encoding-subnum "startup")
(setq fontset (x-compose-font-name xlfd-fields))
(setq fontset-spec (concat fontset ", ascii:" font))
- (create-fontset-from-fontset-spec fontset-spec nil t)
- ;;(create-fontset-from-fontset-spec fontset-spec 'bold t)
- ;;(create-fontset-from-fontset-spec fontset-spec 'italic t)
- ;;(create-fontset-from-fontset-spec fontset-spec 'bold-italic t)
+ (create-fontset-from-fontset-spec fontset-spec t)
(setq fontset-alias-alist
(cons (cons fontset font) fontset-alias-alist)))
)))))