aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index ef2d63372a5..d6627a2a1ca 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -6187,7 +6187,7 @@ The code looks like this:
6187 6187
6188@c Keep this on one line. 6188@c Keep this on one line.
6189@smallexample 6189@smallexample
6190(/ (+ 10 (* size (prefix-numeric-value arg))) 10)) 6190(/ (+ 10 (* size (prefix-numeric-value arg))) 10)
6191@end smallexample 6191@end smallexample
6192 6192
6193@need 1200 6193@need 1200
@@ -6204,7 +6204,7 @@ enclosing expression:
6204 (* 6204 (*
6205 size 6205 size
6206 (prefix-numeric-value arg))) 6206 (prefix-numeric-value arg)))
6207 10)) 6207 10)
6208@end group 6208@end group
6209@end smallexample 6209@end smallexample
6210 6210