aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXiyue Deng2023-12-13 16:21:10 -0800
committerEli Zaretskii2023-12-23 11:35:33 +0200
commitfba7b9db39771edbbc71a8122c7b0ea1ce24ec96 (patch)
tree01d522cf8e0587d3defd42621819aa78a5958aa4
parent77232826821a60b50ab2c1f315ebffd4ebecfe66 (diff)
downloademacs-fba7b9db39771edbbc71a8122c7b0ea1ce24ec96.tar.gz
emacs-fba7b9db39771edbbc71a8122c7b0ea1ce24ec96.zip
Add explanation for extra parentheses in ELisp Introduction
* doc/lispintro/emacs-lisp-intro.texi (fwd-para while): Add a note to explain the extra parentheses. (Bug#67820)
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index aaa7511ef30..4a0e8dfa1fc 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -13248,6 +13248,10 @@ The last expression when there is no fill prefix is
13248@end smallexample 13248@end smallexample
13249 13249
13250@noindent 13250@noindent
13251(Note that this code snippet is copied verbatim from the original code,
13252so the two extra ending parentheses are matching the previous @code{if}
13253and @code{while}.)
13254
13251This says that if there is no fill prefix and if we are not at the 13255This says that if there is no fill prefix and if we are not at the
13252end, point should move to the beginning of whatever was found by the 13256end, point should move to the beginning of whatever was found by the
13253regular expression search for @code{sp-parstart}. 13257regular expression search for @code{sp-parstart}.