From: Stefan Monnier Date: Wed, 14 Nov 2012 01:12:52 +0000 (-0500) Subject: * lisp/emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments. X-Git-Tag: emacs-24.3.90~173^2~18^2~115 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9c3912d3d9aaa1e20e3f7168f5764695ad5e43fd;p=emacs.git * lisp/emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments. Fixes: debbugs:12879 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 898722232f1..48eced16fe1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-11-14 Stefan Monnier + + * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments + (bug#12879). + 2012-11-13 Dmitry Gutov * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block diff --git a/lisp/emacs-lisp/gv.el b/lisp/emacs-lisp/gv.el index 02eec08f96b..5488330a1a4 100644 --- a/lisp/emacs-lisp/gv.el +++ b/lisp/emacs-lisp/gv.el @@ -236,7 +236,7 @@ For example, (setf (cadr x) y) is equivalent to (setcar (cdr x) y). The return value is the last VAL in the list. \(fn PLACE VAL PLACE VAL ...)" - (declare (debug (gv-place form))) + (declare (debug (&rest [gv-place form]))) (if (and args (null (cddr args))) (let ((place (pop args)) (val (car args)))