From ab3937dbb68c159d0a0ca41ca8171e75a1bcc7e4 Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Fri, 3 May 2019 16:47:56 +0200 Subject: Simplify call to set-fontset-font MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 🤷 --- .emacs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.emacs b/.emacs index 68b3f43..1bf4a52 100644 --- 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))) -- cgit v1.2.3