Fix example in Emacs Lisp Intro manual

* doc/lispintro/emacs-lisp-intro.texi (beginning-of-buffer opt
arg): Fix indentation in example.  Reported by Xiyue Deng
<manphiz@gmail.com>.  (Bug#67560)
This commit is contained in:
Eli Zaretskii 2023-12-01 10:47:27 +02:00
parent a6e9c26c8f
commit c7e459132a

View file

@ -6044,12 +6044,13 @@ like this:
@group
(if (> (buffer-size) 10000)
;; @r{Avoid overflow for large buffer sizes!}
(* (prefix-numeric-value arg)
(/ size 10))
(* (prefix-numeric-value arg)
(/ size 10))
(/
(+ 10
(*
size (prefix-numeric-value arg))) 10)))
(* size
(prefix-numeric-value arg)))
10))
@end group
@end smallexample