In the current CVS Guile:
/home/bil/cl/ ../test/bin/guile guile> (define defvar #f) guile> (set! defvar define) guile> (set! defvar define)
Backtrace: In standard input: 3: 0* (set! defvar define)
standard input:3:1: In procedure memoization in expression (set! defvar define): standard input:3:1: Misplaced syntactic keyword defvar. ABORT: (syntax-error) guile>
Even shorter, though I'm not sure this is legal:
guile> (set! define define)
Backtrace: In standard input: 1: 0* (set! define define)
standard input:1:1: In procedure memoization in expression (set! define define): standard input:1:1: Misplaced syntactic keyword define. ABORT: (syntax-error)
(The first example is abstracted from a larger context where I'm using the same code in both Scheme and Common Lisp).
_______________________________________________ Bug-guile mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-guile
