diff options
author | Chong Yidong <cyd@gnu.org> | 2012-06-17 13:13:40 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-06-17 13:13:40 +0800 |
commit | 41b7f8bc6c4511ab6fcf7f6b1f9e7fdcd8592821 (patch) | |
tree | 83b5228b63fe4bf45ec71aa25b5a21ab6aff3676 /doc/lispref/macros.texi | |
parent | 82a25657c58b7a5ad2f6d247aa91e11f0b2a783b (diff) | |
parent | 05c44a7512ba0da34f7e6c3869c22f2f3517d255 (diff) | |
download | emacs-41b7f8bc6c4511ab6fcf7f6b1f9e7fdcd8592821.tar.gz emacs-41b7f8bc6c4511ab6fcf7f6b1f9e7fdcd8592821.tar.bz2 emacs-41b7f8bc6c4511ab6fcf7f6b1f9e7fdcd8592821.zip |
Merge changes from emacs-24; up to 2012-04-26T02:03:19Z!ueno@unixuser.org
Diffstat (limited to 'doc/lispref/macros.texi')
-rw-r--r-- | doc/lispref/macros.texi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/lispref/macros.texi b/doc/lispref/macros.texi index 1f02480cd32..b9b0e03c65a 100644 --- a/doc/lispref/macros.texi +++ b/doc/lispref/macros.texi @@ -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 |