GNU bug report logs -
#67580
29.1; Anomaly in cl-destructuring-bind &rest handling
Previous Next
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
;; These three return the first value to which `a' was bound, which is
;; probably OK.
(cl-destructuring-bind (a &rest a) (list 1 2 3 4)
a)
;; => 1
(cl-destructuring-bind (b a &rest a) (list 1 2 3 4)
a)
;; => 2
(cl-destructuring-bind (a b &rest b) (list 1 2 3 4)
a)
;; => 1
;; These two produce the anomaly. When the &rest parameter has the
;; same variable same as a positional parameter, and there are at
;; least two positional parameters, then &rest tries to decode the
;; list tail from whatever value was first assigned to the variable by
;; a positional parameter.
(cl-destructuring-bind (a b &rest a) (list 1 2 3 4)
a)
;; error: (wrong-type-argument listp 1)
(cl-destructuring-bind (a a &rest a) (list 1 2 3 4)
a)
;; error: (wrong-type-argument listp 1)
This bug report was last modified 1 year and 202 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.