summaryrefslogtreecommitdiff
path: root/src/tg/method-macros.lisp
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-10-18 08:57:59 +0300
committerGravatar Uko Kokņevičs2025-10-18 08:57:59 +0300
commitd93940bcb93a3ff3d235c079ddeb5eef18259175 (patch)
treef59aa7d933be16241c57cacf9a5157433d4ec86d /src/tg/method-macros.lisp
parentMove enable-f-strings within the eval-when (diff)
downloadukkoclot-d93940bcb93a3ff3d235c079ddeb5eef18259175.tar.gz
ukkoclot-d93940bcb93a3ff3d235c079ddeb5eef18259175.tar.xz
ukkoclot-d93940bcb93a3ff3d235c079ddeb5eef18259175.zip
Properly fix enable-f-strings
Diffstat (limited to 'src/tg/method-macros.lisp')
-rw-r--r--src/tg/method-macros.lisp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tg/method-macros.lisp b/src/tg/method-macros.lisp
index a522c28..82da47c 100644
--- a/src/tg/method-macros.lisp
+++ b/src/tg/method-macros.lisp
@@ -13,8 +13,9 @@
13(in-package :ukkoclot/tg/method-macros) 13(in-package :ukkoclot/tg/method-macros)
14 14
15(eval-when (:compile-toplevel :load-toplevel :execute) 15(eval-when (:compile-toplevel :load-toplevel :execute)
16 (enable-f-strings) 16 (enable-f-strings))
17 17
18(eval-when (:compile-toplevel :load-toplevel :execute)
18 (defstruct (param (:constructor make-param%)) name type default skip-if-default) 19 (defstruct (param (:constructor make-param%)) name type default skip-if-default)
19 20
20 (defparameter +unique+ (gensym)) 21 (defparameter +unique+ (gensym))