aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2012-11-03 11:03:39 -0700
committerGlenn Morris2012-11-03 11:03:39 -0700
commit5c677d44107c87c6d89090e4052adba44fd12de3 (patch)
tree9795b277a33daf8058b32c8f0243ecc34a31e9f1 /lisp
parent685b00269debcb77f533f65ba5e6421d8539229d (diff)
downloademacs-5c677d44107c87c6d89090e4052adba44fd12de3.tar.gz
emacs-5c677d44107c87c6d89090e4052adba44fd12de3.zip
* lisp/emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/cl-macs.el3
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 993d4a2c4a0..466e13b276c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12012-11-03 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
4
12012-11-03 Eli Zaretskii <eliz@gnu.org> 52012-11-03 Eli Zaretskii <eliz@gnu.org>
2 6
3 * term/pc-win.el: Don't load term/internal from here. 7 * term/pc-win.el: Don't load term/internal from here.
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index a448973c1bb..e7a66ad1b1a 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -1579,6 +1579,9 @@ from OBARRAY.
1579 1579
1580;;;###autoload 1580;;;###autoload
1581(defmacro cl-do-all-symbols (spec &rest body) 1581(defmacro cl-do-all-symbols (spec &rest body)
1582 "Like `cl-do-symbols', but use the default obarray.
1583
1584\(fn (VAR [RESULT]) BODY...)"
1582 (declare (indent 1) (debug ((symbolp &optional form) cl-declarations body))) 1585 (declare (indent 1) (debug ((symbolp &optional form) cl-declarations body)))
1583 `(cl-do-symbols (,(car spec) nil ,(cadr spec)) ,@body)) 1586 `(cl-do-symbols (,(car spec) nil ,(cadr spec)) ,@body))
1584 1587