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
This commit is contained in:
Xiyue Deng 2023-12-01 16:19:18 -08:00 committed by Eli Zaretskii
parent fbaf113bf3
commit 7f0bef47dd

View file

@ -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