summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d
diff options
context:
space:
mode:
authorAlan Pearce2016-06-25 22:51:13 +0200
committerAlan Pearce2016-06-25 22:51:13 +0200
commit6445538807f6a08316eed74fbee4c1daca188b49 (patch)
tree3f137643608fb9f2435473c0bb63fe7ef9bf4c50 /tag-emacs/emacs.d
parente5fd4b92bca4b75c622351d1147ade8777cb3ee7 (diff)
downloadnixfiles-6445538807f6a08316eed74fbee4c1daca188b49.tar.lz
nixfiles-6445538807f6a08316eed74fbee4c1daca188b49.tar.zst
nixfiles-6445538807f6a08316eed74fbee4c1daca188b49.zip
Emacs: Fix ap/set-fonts argument errors
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r--tag-emacs/emacs.d/init.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 33950290..18bf622c 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -175,14 +175,14 @@ because I manage those in my [[file:~/projects/dotfiles/tag-xresources/xresource
         (interactive)
         (cond
          ((eq window-system 'w32)
-          (ap/set-fonts "Consolas" 10 "Segoe UI" 11))
+          (ap/set-fonts "Consolas" 10 "Segoe UI" 11 t))
          ((eq window-system 'ns)
           (let ((displays (string-to-number (shell-command-to-string "system_profiler SPDisplaysDataType | grep \"Online: Yes\" | wc -l"))))
             (if (eq displays 1)
                 (ap/set-fonts "PT Mono" 12 "Lucide Grande" 12 t)
               (ap/set-fonts "Anonymous Pro" 11 "Lucida Grande" 12 nil))))
          ((eq window-system 'x)
-          (ap/set-fonts "Source Code Pro" 10 "Input Sans" 10))))
+          (ap/set-fonts "Source Code Pro" 10 "Input Sans" 10 t))))
 
       (ap/set-fonts-according-to-system))
 #+END_SRC