#417: Bug in CL:DESTRUCTURING-BIND ---------------------------------------------+------------------------ Reporter: mevenson | Owner: Type: defect | Status: new Priority: major | Milestone: 1.5.0 Component: interpreter | Version: Keywords: github-issue ansi-compatibility | Parent Tickets: ---------------------------------------------+------------------------ {{{ (defun test (args) (destructuring-bind (a b &rest c) args (list a b))) (test '(1)) -> '(1 nil) }}}
should signal an error
without the &rest args
{{{ (defun test (args) (destructuring-bind (a b) args (list a b))) (test '(1)) }}} signals an error as expected
Initial report on Github from Alan https://github.com/armedbear/abcl/issues/8.
-- Ticket URL: http://abcl.org/trac/ticket/417 armedbear http://abcl.org armedbear
#417: Bug in CL:DESTRUCTURING-BIND -----------------------------+--------------------------------------------- Reporter: mevenson | Owner: Type: defect | Status: new Priority: major | Milestone: 1.5.0 Component: | Version: interpreter | Resolution: | Keywords: github-issue ansi-compatibility Parent Tickets: | -----------------------------+---------------------------------------------
Comment (by mevenson):
See http://abcl.org/trac/ticket/382 for possible additional/related problems with CL:DESTRUCTURING-BIND
-- Ticket URL: http://abcl.org/trac/ticket/417#comment:1 armedbear http://abcl.org armedbear
#417: Bug in CL:DESTRUCTURING-BIND -----------------------------+--------------------------------------------- Reporter: mevenson | Owner: Type: defect | Status: closed Priority: major | Milestone: 1.5.0 Component: | Version: interpreter | Resolution: fixed | Keywords: github-issue ansi-compatibility Parent Tickets: | -----------------------------+--------------------------------------------- Changes (by mevenson):
* status: new => closed * resolution: => fixed
Comment:
Fixed with http://abcl.org/trac/changeset/15004
-- Ticket URL: http://abcl.org/trac/ticket/417#comment:2 armedbear http://abcl.org armedbear
armedbear-ticket@common-lisp.net