diff options
-rw-r--r-- | config.org | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config.org b/config.org index c4641f8..0502255 100644 --- a/config.org +++ b/config.org | |||
@@ -403,10 +403,11 @@ Anyway, I should probably be able to figure out how to properly change the theme | |||
403 | (catch :return | 403 | (catch :return |
404 | (dolist (font fonts) | 404 | (dolist (font fonts) |
405 | (when (find-font (font-spec :family (car font))) | 405 | (when (find-font (font-spec :family (car font))) |
406 | (apply #'set-face-attribute `(,face nil | 406 | (apply #'set-face-attribute `(,face |
407 | :family ,(car font) | 407 | nil |
408 | ,@(cdr font))) | 408 | :family (car font) |
409 | (throw :return font))))) | 409 | ,@(cdr font))) |
410 | (throw :return font))))) | ||
410 | 411 | ||
411 | (defun acdw/setup-fonts () | 412 | (defun acdw/setup-fonts () |
412 | "Setup fonts. This has to happen after the frame is setup for | 413 | "Setup fonts. This has to happen after the frame is setup for |