diff options
author | Kenichi Handa <handa@gnu.org> | 2012-11-14 22:39:49 +0900 |
---|---|---|
committer | Kenichi Handa <handa@gnu.org> | 2012-11-14 22:39:49 +0900 |
commit | 9ba02fc3046a5aeaca7e4d3e207a365f6ce33a93 (patch) | |
tree | d648c55dca0513838634254617723954c50567d2 /lisp/emacs-lisp/gv.el | |
parent | 0cdbf84521791935fdfeabf2e84f585cc64db325 (diff) | |
parent | c62792e7dfa403db8c36cb92f32fb69258a199ef (diff) | |
download | emacs-9ba02fc3046a5aeaca7e4d3e207a365f6ce33a93.tar.gz emacs-9ba02fc3046a5aeaca7e4d3e207a365f6ce33a93.tar.bz2 emacs-9ba02fc3046a5aeaca7e4d3e207a365f6ce33a93.zip |
merge trunk
Diffstat (limited to 'lisp/emacs-lisp/gv.el')
-rw-r--r-- | lisp/emacs-lisp/gv.el | 2 |
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))) |