about summary refs log tree commit diff
path: root/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2022-11-21T02·46-0800
committerwpcarro <wpcarro@gmail.com>2022-11-21T17·12+0000
commitc537cc6fcee5f5cde4b0e6f8c5d6dcd5d8e3690f (patch)
tree20ce9d3100c1eecd5328bc7ebdc6d6e436a6edf3 /users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el
parent878dc6c22717971f5dd4720f314f36c47a0c762e (diff)
refactor(wpcarro/emacs): Simplify fonts.el r/5300
- Drop `cycle` and all associated methods
- Fix call-sites depedencies

Change-Id: I35304424c0c3925f5bf7771dec33e75d326d0961
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7315
Tested-by: BuildkiteCI
Reviewed-by: wpcarro <wpcarro@gmail.com>
Diffstat (limited to 'users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el')
-rw-r--r--users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el b/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el
index ce2f8beb72..02904e83a5 100644
--- a/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el
+++ b/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el
@@ -166,9 +166,7 @@
 (when window-system
   ;; On OSX, JetBrainsMono is installed as "JetBrains Mono", and I'm
   ;; not sure how to change that.
-  (let ((font (if (memq window-system '(ns))
-		  "JetBrains Mono"
-		"JetBrainsMono")))
+  (let ((font (if (memq window-system '(ns)) "JetBrains Mono" "JetBrainsMono")))
     (fonts-set font)
     ;; Some themes (e.g. doom-acario-*) change the font for comments. This
     ;; should prevent that.