commit ab3937dbb68c159d0a0ca41ca8171e75a1bcc7e4
parent afdf846cdea02e5156b1849906b96d92247f0ac9
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date: Fri, 3 May 2019 16:47:56 +0200
Simplify call to set-fontset-font
AFAICT, the last argument, ADD, will be nil by default,
dixit (elisp)Argument List. This changes the semantics since I used
to pass 'append explicitly, but I have no idea why I was doing that in
the first place, so π€·
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.emacs b/.emacs
@@ -291,7 +291,7 @@
(setq default-justification 'full))
;; Font stuff (π€· π€¦)
-(set-fontset-font "fontset-default" nil (font-spec :name "Symbola") nil 'append)
+(set-fontset-font t nil "Symbola")
(defun my/project-root ()
(when-let ((project (project-current)))