core-fonts-support: clarify comment, removed unnecessary codepoints

This commit is contained in:
Lucius Hu 2022-07-25 03:47:12 -04:00
parent 2e897fcc89
commit 00d19c3656
No known key found for this signature in database
GPG Key ID: 7E474E82E29B5A7A
1 changed files with 6 additions and 6 deletions

View File

@ -79,18 +79,18 @@ The return value is nil if no font was found, truthy otherwise."
(fallback-spec2 (apply 'font-spec
:name fallback-font-name2
fallback-props)))
;; window numbers
;; window numbers (ding bang circled digits)
(set-fontset-font "fontset-default"
'(#x2776 . #x2793) fallback-spec nil 'prepend)
;; mode-line circled letters
;; mode-line circled letters (circled latin capital/small letters)
(set-fontset-font "fontset-default"
'(#x24b6 . #x24fe) fallback-spec nil 'prepend)
;; mode-line additional characters
'(#x24b6 . #x24e9) fallback-spec nil 'prepend)
;; mode-line additional characters (circled/squared mathematical operators)
(set-fontset-font "fontset-default"
'(#x2295 . #x22a1) fallback-spec nil 'prepend)
;; new version lighter
;; new version lighter (arrow block)
(set-fontset-font "fontset-default"
'(#x2190 . #x2200) fallback-spec2 nil 'prepend))))
'(#x2190 . #x21ff) fallback-spec2 nil 'prepend))))
(throw 'break t)))
nil))