Close bug#6408.
authorHelmut Eller <eller.helmut@gmail.com>
Sat, 12 Jun 2010 07:06:15 +0000 (00:06 -0700)
committerGlenn Morris <rgm@gnu.org>
Sat, 12 Jun 2010 07:06:15 +0000 (00:06 -0700)
* lisp/emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
used by cl-do-arglist.

lisp/ChangeLog
lisp/emacs-lisp/cl-macs.el

index d193663..1de8e4a 100644 (file)
@@ -1,3 +1,8 @@
+2010-06-12  Helmut Eller  <eller.helmut@gmail.com>
+
+       * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
+       used by cl-do-arglist.  (Bug#6408)
+
 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emacs-lisp/advice.el (ad-compile-function):
index 8a60ffd..3e800c5 100644 (file)
@@ -432,7 +432,7 @@ It is a list of elements of the form either:
 ;;;###autoload
 (defmacro destructuring-bind (args expr &rest body)
   (let* ((bind-lets nil) (bind-forms nil) (bind-inits nil)
-        (bind-defs nil) (bind-block 'cl-none))
+        (bind-defs nil) (bind-block 'cl-none) (bind-enquote nil))
     (cl-do-arglist (or args '(&aux)) expr)
     (append '(progn) bind-inits
            (list (nconc (list 'let* (nreverse bind-lets))