aboutsummaryrefslogtreecommitdiff
path: root/src/propspec.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-19 10:44:56 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-19 18:56:59 -0700
commit871e9c2c82f485c655a0ce97efbd9d97d9016a4c (patch)
tree2551750e905a22e53714878c93fe6a0d095cd95e /src/propspec.lisp
parentb3b35e2288a65fa18ed0a371675565c380be058f (diff)
downloadconsfigurator-871e9c2c82f485c655a0ce97efbd9d97d9016a4c.tar.gz
pass function property combinator name to GENSYM
Makes debugging output more useful. Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/propspec.lisp')
-rw-r--r--src/propspec.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/propspec.lisp b/src/propspec.lisp
index e59f1ce..13204d9 100644
--- a/src/propspec.lisp
+++ b/src/propspec.lisp
@@ -272,7 +272,7 @@ application specification expression to a property application specification."
,@docstring
,@declarations
(flet ((:retprop (&rest all &key args &allow-other-keys)
- (let ((psym (gensym))
+ (let ((psym (gensym ,(symbol-name name)))
(setprop-args (remove-from-plist all :args)))
(apply #'setprop psym setprop-args)
(return-from ,name (list* psym args)))))