diff options
Diffstat (limited to 'lisp/term/x-win.el')
-rw-r--r-- | lisp/term/x-win.el | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index c16c021164d..d991f3b76a8 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))) ))))) |