diff options
author | Case Duckworth | 2021-01-02 10:02:24 -0600 |
---|---|---|
committer | Case Duckworth | 2021-01-02 10:02:24 -0600 |
commit | 563c67ec2fcff48e176e3ed36eb21f45a0873bd1 (patch) | |
tree | bdd7ca8cccfe99868614066bdf1919fdac5dbd77 | |
parent | Change cursor in non-selected windows to hbar (diff) | |
download | emacs-563c67ec2fcff48e176e3ed36eb21f45a0873bd1.tar.gz emacs-563c67ec2fcff48e176e3ed36eb21f45a0873bd1.zip |
Whitespace
-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 |