From 7f0bef47dddbcbdaa12b9fc4aa25e0c41ac340a2 Mon Sep 17 00:00:00 2001 From: Xiyue Deng Date: Fri, 1 Dec 2023 16:19:18 -0800 Subject: [PATCH] Drop extra parenthesis in example code in Emacs Lisp Introduction * doc/lispintro/emacs-lisp-intro.texi (Small buffer case): Drop trailing unmatched parenthesis. (Bug#67576) Copyright-paperwork-exempt: yes --- 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 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: @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 @@ -6204,7 +6204,7 @@ enclosing expression: (* size (prefix-numeric-value arg))) - 10)) + 10) @end group @end smallexample -- 2.39.2