1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-29 16:30:19 +02:00

* psyntax.ss (build-lexical-var): Use gentemp instead of gensym;

Convert first argument to a string.
This commit is contained in:
Mikael Djurfeldt 2000-09-12 06:03:22 +00:00
parent a86869dc59
commit 2a6ba08d36

View file

@ -399,7 +399,7 @@
(define-syntax build-lexical-var
(syntax-rules ()
((_ src id) (gensym id generated-symbols))))
((_ src id) (gentemp (symbol->string id) generated-symbols))))
(define-syntax self-evaluating?
(syntax-rules ()