Hi! "Jose A. Ortega Ruiz" <j...@gnu.org> writes:
> (I'm still curious about the meaning of the > modules with gensyms as names, though.) psyntax expects modules to have a name so that it can refer to them in expanded code. Thus, there can be no anonymous modules: modules are always given a name, see ‘module-name’. This allows things like the “compile in fresh module” test to work. Thanks, Ludo’.