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
dee96f4a
Commit
dee96f4a
authored
Apr 25, 2017
by
Gemini Lasswell
Browse files
* lisp/emacs-lisp/cl-macs.el (cl-letf): Fix Edebug spec (bug#24765)
parent
12e864eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lisp/emacs-lisp/cl-macs.el
lisp/emacs-lisp/cl-macs.el
+3
-1
No files found.
lisp/emacs-lisp/cl-macs.el
View file @
dee96f4a
...
...
@@ -2438,7 +2438,9 @@ As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
the PLACE is not modified before executing BODY.
\(fn ((PLACE VALUE) ...) BODY...)"
(
declare
(
indent
1
)
(
debug
((
&rest
(
gate
gv-place
&optional
form
))
body
)))
(
declare
(
indent
1
)
(
debug
((
&rest
[&or
(
symbolp
form
)
(
gate
gv-place
&optional
form
)
]
)
body
)))
(
if
(
and
(
not
(
cdr
bindings
))
(
cdar
bindings
)
(
symbolp
(
caar
bindings
)))
`
(
let
,
bindings
,@
body
)
(
cl--letf
bindings
()
()
body
)))
...
...
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