summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2023-07-08 11:46:00 -0700
committercolin <colin@cicadas.surf>2023-07-08 11:46:00 -0700
commite89cece0b915691b3242e23405c61879b93fb803 (patch)
treee431be99efb9b06d03bd042d1dde9043fdebefea
parent7f7df2c630a93f3ba210dc0e513186ad83bc184d (diff)
Fix: bad fussy.el cli argument
-rw-r--r--fussy.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fussy.lisp b/fussy.lisp
index 942c5d3..e8db39f 100644
--- a/fussy.lisp
+++ b/fussy.lisp
@@ -325,7 +325,7 @@ that they are not loaded during image gen.")
(defun generate-elisp-to-fetch-and-exclude (package-names)
(let ((downcaser
(a:compose #'string-downcase #'symbol-name)))
- (format nil "(setq fussy-themes-packages '(~{~a~^ ~}) fussy-excluded-themes '(~{~a~^ ~}))"
+ (format nil "(setq fussy-themes-packages-to-load '(~{~a~^ ~}) fussy-excluded-themes '(~{~a~^ ~}))"
(mapcar downcaser package-names)
(mapcar downcaser +standard-themes+))))