From 475e2f9982299ba99ae64d0e836d28823d696247 Mon Sep 17 00:00:00 2001 From: Patrick Elliott Date: Tue, 4 Sep 2018 10:13:48 +0200 Subject: [PATCH] Fix unicode regression --- core/core-ui.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-ui.el b/core/core-ui.el index e63b5bab7..0a018fd8d 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -346,7 +346,7 @@ frame's window-system, the theme will be reloaded.") `(variable-pitch ((t (:font ,(font-xlfd-name doom-variable-pitch-font)))))) ;; Fallback to `doom-unicode-font' for Unicode characters (when (fontp doom-unicode-font) - (set-fontset-font t 'unicode doom-unicode-font nil 'append) + (set-fontset-font t nil doom-unicode-font nil 'append) nil)) ((debug error) (if (string-prefix-p "Font not available: " (error-message-string e))