Opened 11 years ago
Last modified 17 months ago
#349 new defect
ANSI lacuna: interaction between SHARPSIGN-LEFT-PARENTHENSIS and backquote splice operator
Reported by: | Mark Evenson | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.9.3 |
Component: | interpreter | Version: | 1.3.0-dev |
Keywords: | ansi lacunae | Cc: | |
Parent Tickets: |
Description
Faré notes in <http://article.gmane.org/gmane.lisp.armedbear.devel/3101>:
What should this form read as? `#5(1 , <at> `(2 3)) ECL, LispWorks and fare-quasiquote agree on #(1 2 3 2 3) allegro, ccl, clisp, sbcl return the arguably conformant #(1 2 3 2 3 2 3 2 3) abcl, cmucl, gcl, xcl all return the arguably completely buggy #(1 2 3)
Change History (19)
comment:1 Changed 11 years ago by
Keywords: | ansi lacunae added |
---|---|
Summary: | Incorret interaction between SHARPSIGN-LEFT-PARENTHENSIS and backquote splice operator → ANSI lacuna: interaction between SHARPSIGN-LEFT-PARENTHENSIS and backquote splice operator |
comment:2 Changed 11 years ago by
comment:3 Changed 11 years ago by
Try for sbcl
`#6(1 ,@`(2 3 4)) ==> #(1 2 3 4 2 3 4 2 3 4 2 3 4 2 3 4)
is surely bad…
comment:6 Changed 11 years ago by
Milestone: | 2.0.0 → 1.4.0 |
---|
comment:11 Changed 4 years ago by
Milestone: | 1.6.2 → 1.7.0 |
---|
comment:16 Changed 3 years ago by
Milestone: | 1.8.1 → 1.9.0 |
---|
comment:17 Changed 22 months ago by
Milestone: | 1.9.0 → 1.9.1 |
---|
comment:18 Changed 21 months ago by
Milestone: | 1.9.1 → 1.9.2 |
---|
comment:19 Changed 17 months ago by
Milestone: | 1.9.2 → 1.9.3 |
---|
Note: See
TracTickets for help on using
tickets.
Pascal notes