mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-15 09:47:20 +00:00
Improve the default fontset when Symbola is not installed
* lisp/international/fontset.el (setup-default-fontset): Only prepend Symbola and FreeMono font specs for symbols and punctuation; do not replace the default spec for them. This should have better results when Symbola/FreeMono are not installed. (Bug#20727)
This commit is contained in:
parent
f75d189ed8
commit
eb92f89c21
@ -733,9 +733,10 @@
|
||||
(#x1F700 . #x1F77F) ;; Alchemical Symbols
|
||||
(#x1F780 . #x1F7FF) ;; Geometric Shapes Extended
|
||||
(#x1F800 . #x1F8FF))) ;; Supplemental Arrows-C
|
||||
(set-fontset-font "fontset-default" symbol-subgroup "Symbola"))
|
||||
(set-fontset-font "fontset-default" symbol-subgroup "Symbola" nil 'prepend))
|
||||
;; Box Drawing and Block Elements
|
||||
(set-fontset-font "fontset-default" '(#x2500 . #x259F) "FreeMono")
|
||||
(set-fontset-font "fontset-default" '(#x2500 . #x259F)
|
||||
"FreeMono" nil 'prepend)
|
||||
|
||||
;; Append CJK fonts for characters other than han, kana, cjk-misc.
|
||||
;; Append fonts for scripts whose name is also a charset name.
|
||||
|
Loading…
Reference in New Issue
Block a user