Remove "symbol" from list of changed charsets

This prevents minor mode lighters from being displayed in the Chinese font. Since the new glyphs are often higher, separators of powerline do not match the new height.
This commit is contained in:
Yufan Lou 2015-09-25 01:26:58 +08:00 committed by syl20bnr
parent 4b869b9821
commit 084dd7bde1

View file

@ -22,7 +22,7 @@
(defun spacemacs//set-monospaced-font (english chinese english-size chinese-size)
(set-face-attribute 'default nil :font
(format "%s:pixelsize=%d" english english-size))
(dolist (charset '(kana han symbol cjk-misc bopomofo))
(dolist (charset '(kana han cjk-misc bopomofo))
(set-fontset-font (frame-parameter nil 'font) charset
(font-spec :family chinese :size chinese-size))))