From d51025db619e0e5d9f8a586a1af7c83912701777 Mon Sep 17 00:00:00 2001 From: David Florness Date: Tue, 11 Sep 2018 12:28:14 -0600 Subject: [PATCH] Try to set frame font --- lisp/setup-appearance.el | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/lisp/setup-appearance.el b/lisp/setup-appearance.el index 93c9dc6..4ceed36 100644 --- a/lisp/setup-appearance.el +++ b/lisp/setup-appearance.el @@ -12,13 +12,14 @@ ;;; Font -(set-frame-font - (font-spec - :name "Source Code Pro" - :size 13 - :weight 'normal - :width 'normal) - nil t) +(ignore-errors + (set-frame-font + (font-spec + :name "Source Code Pro" + :size 13 + :weight 'normal + :width 'normal) + nil t)) ;;; Disable menu bar -- 2.38.4