Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
be2d23e5
Commit
be2d23e5
authored
Jan 27, 2015
by
Katsumi Yamaoka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lisp/emacs-lisp/cl.el (cl--function-convert): Merge cache that cl--labels-convert adds (bug#19699)
parent
7e157b25
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emacs-lisp/cl.el
lisp/emacs-lisp/cl.el
+3
-1
No files found.
lisp/ChangeLog
View file @
be2d23e5
2015-01-27 Katsumi Yamaoka <yamaoka@jpl.org>
* emacs-lisp/cl.el (cl--function-convert):
Merge cache that cl--labels-convert adds (bug#19699).
2015-01-27 Ivan Shmakov <ivan@siamics.net>
* tar-mode.el: Allow for adding new archive members. (Bug#19274)
...
...
lisp/emacs-lisp/cl.el
View file @
be2d23e5
...
...
@@ -377,7 +377,9 @@ The two cases that are handled are:
res
))))
(
t
(
setq
cl--labels-convert-cache
cl--function-convert-cache
)
(
cl--labels-convert
f
))))
(
prog1
(
cl--labels-convert
f
)
(
setq
cl--function-convert-cache
cl--labels-convert-cache
)))))
(
defmacro
lexical-let
(
bindings
&rest
body
)
"Like `let', but lexically scoped.
...
...
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