mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
Silence warnings for variables created by `generate-temporaries'
* module/ice-9/psyntax.scm (generate-temporaries): Give temporaries the current module, so that they may be bound at the top level. * module/ice-9/psyntax-pp.scm: Regenerate.
This commit is contained in:
parent
95643853d7
commit
933c6eb795
2 changed files with 1742 additions and 1738 deletions
File diff suppressed because it is too large
Load diff
|
@ -2428,7 +2428,8 @@
|
|||
(set! generate-temporaries
|
||||
(lambda (ls)
|
||||
(arg-check list? ls 'generate-temporaries)
|
||||
(map (lambda (x) (wrap (gensym-hook) top-wrap #f)) ls)))
|
||||
(let ((mod (cons 'hygiene (module-name (current-module)))))
|
||||
(map (lambda (x) (wrap (gensym-hook) top-wrap mod)) ls))))
|
||||
|
||||
(set! free-identifier=?
|
||||
(lambda (x y)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue