From 29f88e6c63a204aa1c7c64b5cc8740c51309b832 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 28 Jun 2017 18:05:11 +0200 Subject: [PATCH] Add fboundp guard around fringe-mode --- 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 11c290628..abc824ff5 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -214,7 +214,7 @@ local value, whether or not it's permanent-local. Therefore, we cycle ;; a good indicator that Emacs isn't frozen (add-hook 'doom-post-init-hook #'blink-cursor-mode) ;; standardize default fringe width -(fringe-mode doom-fringe-size) +(if (fboundp 'fringe-mode) (fringe-mode doom-fringe-size)) ;; draw me like one of your French editors (tooltip-mode -1) ; relegate tooltips to echo area only (menu-bar-mode -1)