projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fbaf113
)
Drop extra parenthesis in example code in Emacs Lisp Introduction
author
Xiyue Deng
<manphiz@gmail.com>
Sat, 2 Dec 2023 00:19:18 +0000
(16:19 -0800)
committer
Eli 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
patch
|
blob
|
history
diff --git
a/doc/lispintro/emacs-lisp-intro.texi
b/doc/lispintro/emacs-lisp-intro.texi
index ef2d63372a5020404de0034a8d89c5339c547bfe..d6627a2a1ca88286b6bc75505d65e1bc474a33bf 100644
(file)
--- 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