From 8944a4d47f9faef1eda9f7d40e257d7e8bf1dc37 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Tue, 14 Apr 2020 22:01:39 -0400 Subject: [PATCH] Revert "Only set "Hack" font as default if it is availible" This reverts commit 4d1e1cc4f7fda4328127aa8557ae57cfe3a57557. --- .emacs.d/fred-theme.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.emacs.d/fred-theme.el b/.emacs.d/fred-theme.el index 8ad3ea3..a95679f 100644 --- a/.emacs.d/fred-theme.el +++ b/.emacs.d/fred-theme.el @@ -9,9 +9,7 @@ (custom-theme-set-faces 'fred - ;; check if "Hack" font is availible before setting it - `(default ((default ,(let ((font '(:foundry "SRC" :family "Hack" :height 110))) - (when (find-font (apply 'font-spec font)) font))) + '(default ((default (:foundry "SRC" :family "Hack" :height 110)) (((class color) (min-colors 4096)) (:foreground "#eeeeec" :background "#151515")) (((class color) (min-colors 256)) (:foreground "#eeeeec" :background "#222")) (((class color) (min-colors 89)) (:foreground "#eeeeec" :background "black"))))