]> git.eshelyaron.com Git - emacs.git/commitdiff
Drop extra parenthesis in example code in Emacs Lisp Introduction
authorXiyue Deng <manphiz@gmail.com>
Sat, 2 Dec 2023 00:19:18 +0000 (16:19 -0800)
committerEli Zaretskii <eliz@gnu.org>
Sat, 2 Dec 2023 07:59:43 +0000 (09:59 +0200)
* 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

index ef2d63372a5020404de0034a8d89c5339c547bfe..d6627a2a1ca88286b6bc75505d65e1bc474a33bf 100644 (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