From 11acc30400d2066bc173a3bfaafb883c843c3169 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 16 Dec 2019 19:01:11 -0500 Subject: [PATCH] Half-revert c522ca4fc Closes #2200 --- core/core-ui.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/core-ui.el b/core/core-ui.el index fd80d6000..b8081ec24 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -464,7 +464,9 @@ treat Emacs as a non-application window." :init (defadvice! doom--disable-all-the-icons-in-tty-a (orig-fn &rest args) "Return a blank string in tty Emacs, which doesn't support multiple fonts." - :around #'all-the-icons-insert + :around '(all-the-icons-octicon all-the-icons-material + all-the-icons-faicon all-the-icons-fileicon + all-the-icons-wicon all-the-icons-alltheicon) (if (display-multi-font-p) (apply orig-fn args) "")))