summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lispref/macros.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/macros.texi b/lispref/macros.texi
index e28ab80ac6b..9a0ef696662 100644
--- a/lispref/macros.texi
+++ b/lispref/macros.texi
@@ -448,7 +448,7 @@ For example, (for i from 1 to 10 do (print i))."
(let ((i 1))
(while (<= i 3)
(setq square (* i i))
- (princ (format "%d %d" i square))
+ (princ (format "\n%d %d" i square))
(inc i)))
@end group
@group