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
9c3912d3
Commit
9c3912d3
authored
Nov 13, 2012
by
Stefan Monnier
Browse files
* lisp/emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments.
Fixes: debbugs:12879
parent
5e9419e8
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 @
9c3912d3
2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
(bug#12879).
2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
* progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
...
...
lisp/emacs-lisp/gv.el
View file @
9c3912d3
...
...
@@ -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