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
5c677d44
Commit
5c677d44
authored
Nov 03, 2012
by
Glenn Morris
Browse files
* lisp/emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
parent
685b0026
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/emacs-lisp/cl-macs.el
lisp/emacs-lisp/cl-macs.el
+3
-0
No files found.
lisp/ChangeLog
View file @
5c677d44
2012-11-03 Glenn Morris <rgm@gnu.org>
* emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
2012-11-03 Eli Zaretskii <eliz@gnu.org>
* term/pc-win.el: Don't load term/internal from here.
...
...
lisp/emacs-lisp/cl-macs.el
View file @
5c677d44
...
...
@@ -1579,6 +1579,9 @@ from OBARRAY.
;;;###autoload
(
defmacro
cl-do-all-symbols
(
spec
&rest
body
)
"Like `cl-do-symbols', but use the default obarray.
\(fn (VAR [RESULT]) BODY...)"
(
declare
(
indent
1
)
(
debug
((
symbolp
&optional
form
)
cl-declarations
body
)))
`
(
cl-do-symbols
(
,
(
car
spec
)
nil
,
(
cadr
spec
))
,@
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