Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3a514ab0
Commit
3a514ab0
authored
Nov 14, 2012
by
Stefan Monnier
Committed by
Glenn Morris
Nov 14, 2012
Browse files
Backport fix for bug#12879 from trunk
* lisp/emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
parent
22b762c7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emacs-lisp/gv.el
lisp/emacs-lisp/gv.el
+1
-1
No files found.
lisp/ChangeLog
View file @
3a514ab0
2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
(bug#12879).
2012-11-14 Glenn Morris <rgm@gnu.org>
* subr.el (set-temporary-overlay-map): Doc fix.
...
...
lisp/emacs-lisp/gv.el
View file @
3a514ab0
...
...
@@ -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
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment