>From 64c7a4e14cea39112dec5c027d82819ae73adccb Mon Sep 17 00:00:00 2001 From: Xiyue Deng Date: Fri, 1 Dec 2023 16:19:18 -0800 Subject: [PATCH] Drop trailing unmatched parentheses in example code (Bug#67576) * doc/lispintro/emacs-lisp-intro.texi (Small buffer case): Drop trailing unmatched parentheses --- doc/lispintro/emacs-lisp-intro.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index e4a0f585f69..c485f62d8b5 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -6182,7 +6182,7 @@ The code looks like this: @c Keep this on one line. @smallexample -(/ (+ 10 (* size (prefix-numeric-value arg))) 10)) +(/ (+ 10 (* size (prefix-numeric-value arg))) 10) @end smallexample @need 1200 @@ -6199,7 +6199,7 @@ enclosing expression: (* size (prefix-numeric-value arg))) - 10)) + 10) @end group @end smallexample -- 2.39.2