]> code.delx.au - gnu-emacs/blobdiff - doc/lispref/macros.texi
Merge changes from emacs-24; up to 2012-04-26T02:03:19Z!ueno@unixuser.org
[gnu-emacs] / doc / lispref / macros.texi
index 1f02480cd32abc820862de76537b41241fb4a188..b9b0e03c65aa4f00a0295d84b975d8c517853c55 100644 (file)
@@ -338,8 +338,9 @@ problem.  This macro allows us to write a ``for'' loop construct.
   "Execute a simple \"for\" loop.
 For example, (for i from 1 to 10 do (print i))."
   (list 'let (list (list var init))
-        (cons 'while (cons (list '<= var final)
-                           (append body (list (list 'inc var)))))))
+        (cons 'while
+              (cons (list '<= var final)
+                    (append body (list (list 'inc var)))))))
 @end group
 @result{} for