Changes between Initial Version and Version 1 of Ticket #571
- Timestamp:
- 05/01/11 02:11:52 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #571 – Description
initial v1 1 1 The following code causes a compile-time error. Somehow the calls to `fail` are incorrectly modified for rest-parameter merging. The output should be "UNBOUND VARIABLE: (foo)", but it is "UNBOUND VARIABLE: foo". This happens with "-O1 -inline". 2 2 3 {{{ 3 4 (define (lisp-eval x a bt) 4 5 (fail bt "UNBOUND VARIABLE" x)) … … 21 22 22 23 (lisp-eval 'foo '() '()) 24 }}}