From c7e459132a9a39dd2081ca7edda5709e28bda262 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 1 Dec 2023 10:47:27 +0200 Subject: [PATCH] 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 . (Bug#67560) --- doc/lispintro/emacs-lisp-intro.texi | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 7563d66bad1..fa5f797bf8d 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -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 -- 2.39.2