diff options
author | Kenichi Handa <handa@m17n.org> | 1997-07-31 05:54:43 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-07-31 05:54:43 +0000 |
commit | 0f36e5fc3b831900fe90978442875f8a87cc209a (patch) | |
tree | 9368a96f60af9e336abc9ba3096a5b500d76dd0a /lisp/term/x-win.el | |
parent | b9f33f360256714a9021e9dbcd8104d9fc1999ec (diff) | |
download | emacs-0f36e5fc3b831900fe90978442875f8a87cc209a.tar.gz |
Do not create style-variants of fontset. They
are just registered in uninstanciated-fontset-alist.
Diffstat (limited to 'lisp/term/x-win.el')
-rw-r--r-- | lisp/term/x-win.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index 9eeb1e9ad58..c16c021164d 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el @@ -651,9 +651,9 @@ This is in addition to the primary selection.") ;; 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-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) @@ -688,9 +688,9 @@ This is in addition to the primary selection.") (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 'bold t) + ;;(create-fontset-from-fontset-spec fontset-spec 'italic t) + ;;(create-fontset-from-fontset-spec fontset-spec 'bold-italic t) (setq fontset-alias-alist (cons (cons fontset font) fontset-alias-alist))) ))))) |