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:
parent
a6e9c26c8f
commit
c7e459132a
1 changed files with 5 additions and 4 deletions
|
@ -6044,12 +6044,13 @@ like this:
|
||||||
@group
|
@group
|
||||||
(if (> (buffer-size) 10000)
|
(if (> (buffer-size) 10000)
|
||||||
;; @r{Avoid overflow for large buffer sizes!}
|
;; @r{Avoid overflow for large buffer sizes!}
|
||||||
(* (prefix-numeric-value arg)
|
(* (prefix-numeric-value arg)
|
||||||
(/ size 10))
|
(/ size 10))
|
||||||
(/
|
(/
|
||||||
(+ 10
|
(+ 10
|
||||||
(*
|
(* size
|
||||||
size (prefix-numeric-value arg))) 10)))
|
(prefix-numeric-value arg)))
|
||||||
|
10))
|
||||||
@end group
|
@end group
|
||||||
@end smallexample
|
@end smallexample
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue