Hi, "Kjetil S. Matheussen" <[EMAIL PROTECTED]> writes:
> Now I wonder, is this safe and portable? Or are there > other and better ways to do this? Neither `define-macro' nor `procedure->macro' is portable: both are Guile-specific (SCM may have similar forms, though). Another, simpler, Guile-specific way to do this would be: (module-define! (current-module) 'gakk 'some-value) There's no R[56]RS-portable way to do this AFAIK. Thanks, Ludovic. _______________________________________________ Guile-user mailing list [email protected] http://lists.gnu.org/mailman/listinfo/guile-user
