From be46d31866504f0db691ff98b4bb92dc7a57348c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 23 Jul 2019 17:27:55 +0200 Subject: [PATCH] Use display-multi-font-p check in all-the-icons advice display-multi-font-p is just an alias for display-graphic-p, but it communicates better the purpose of this advice. --- 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 40606a949..fdacfd397 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -462,7 +462,7 @@ treat Emacs as a non-application window." :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-graphic-p) + (if (display-multi-font-p) (apply orig-fn args) "")))