forked from FG42/FG42
1
0
Fork 0

Fix the remaining fg42/config= ref

This commit is contained in:
Sameer Rahmani 2024-04-30 17:33:42 +01:00
parent 741bb46566
commit a8f94e667f
Signed by: lxsameer
GPG Key ID: 8741FACBF412FFA5
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
(defmacro config-when (key value &rest body)
"Run the BODY only if config KEY has the VALUE."
(declare (indent defun))
(when (eval `(fg42/config= ,key ,value))
(when (eval `(config= ,key ,value))
`(progn
,@body)))