summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2012-11-13 20:12:52 -0500
committerStefan Monnier <monnier@iro.umontreal.ca>2012-11-13 20:12:52 -0500
commit9c3912d3d9aaa1e20e3f7168f5764695ad5e43fd (patch)
treec87d1194b4b60cdabe4a98de953b1939b30a30e4 /lisp/emacs-lisp
parent5e9419e849410373473691611778572622ea490a (diff)
downloademacs-9c3912d3d9aaa1e20e3f7168f5764695ad5e43fd.tar.gz
emacs-9c3912d3d9aaa1e20e3f7168f5764695ad5e43fd.tar.bz2
emacs-9c3912d3d9aaa1e20e3f7168f5764695ad5e43fd.zip
* lisp/emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments.
Fixes: debbugs:12879
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/gv.el2
1 files changed, 1 insertions, 1 deletions
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)))