aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTino Calancha2016-06-07 13:48:11 -0400
committerGlenn Morris2016-06-07 13:48:11 -0400
commita3f7ae80b171d7747f42e697169611a8c879f7bb (patch)
tree10ff7e4b40e8115cb776d2bcb25b3e6b0e3f8a3f
parent601b9b2acdd417b43756c4e975a99fca5bb34231 (diff)
downloademacs-a3f7ae80b171d7747f42e697169611a8c879f7bb.tar.gz
emacs-a3f7ae80b171d7747f42e697169611a8c879f7bb.zip
* lisp/emacs-lisp/cl-macs.el (cl-loop): Doc fix re "by".
-rw-r--r--lisp/emacs-lisp/cl-macs.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index 68abe67698c..2cb821edcd3 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -851,9 +851,9 @@ This is compatible with Common Lisp, but note that `defun' and
851 "The Common Lisp `loop' macro. 851 "The Common Lisp `loop' macro.
852Valid clauses include: 852Valid clauses include:
853 For clauses: 853 For clauses:
854 for VAR from/upfrom/downfrom EXPR1 to/upto/downto/above/below EXPR2 by EXPR3 854 for VAR from/upfrom/downfrom EXPR1 to/upto/downto/above/below EXPR2 [by EXPR3]
855 for VAR = EXPR1 then EXPR2 855 for VAR = EXPR1 then EXPR2
856 for VAR in/on/in-ref LIST by FUNC 856 for VAR in/on/in-ref LIST [by FUNC]
857 for VAR across/across-ref ARRAY 857 for VAR across/across-ref ARRAY
858 for VAR being: 858 for VAR being:
859 the elements of/of-ref SEQUENCE [using (index VAR2)] 859 the elements of/of-ref SEQUENCE [using (index VAR2)]