From 6445538807f6a08316eed74fbee4c1daca188b49 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 25 Jun 2016 22:51:13 +0200 Subject: Emacs: Fix ap/set-fonts argument errors --- tag-emacs/emacs.d/init.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 3395029..18bf622 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 -- cgit 1.4.1