emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r110869: Backport fix for bug#1287


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r110869: Backport fix for bug#12879 from trunk
Date: Wed, 14 Nov 2012 20:27:52 -0500
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110869
fixes bug: http://debbugs.gnu.org/12879
author: Stefan Monnier <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: emacs-24
timestamp: Wed 2012-11-14 20:27:52 -0500
message:
  Backport fix for bug#12879 from trunk
  
  * lisp/emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/gv.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-11-14 08:29:25 +0000
+++ b/lisp/ChangeLog    2012-11-15 01:27:52 +0000
@@ -1,3 +1,8 @@
+2012-11-15  Stefan Monnier  <address@hidden>
+
+       * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
+       (bug#12879).
+
 2012-11-14  Glenn Morris  <address@hidden>
 
        * subr.el (set-temporary-overlay-map): Doc fix.

=== modified file 'lisp/emacs-lisp/gv.el'
--- a/lisp/emacs-lisp/gv.el     2012-11-12 21:31:15 +0000
+++ b/lisp/emacs-lisp/gv.el     2012-11-15 01:27:52 +0000
@@ -236,7 +236,7 @@
 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)))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]