diff options
| author | Xiyue Deng | 2023-12-13 16:21:10 -0800 |
|---|---|---|
| committer | Eli Zaretskii | 2023-12-23 11:35:33 +0200 |
| commit | fba7b9db39771edbbc71a8122c7b0ea1ce24ec96 (patch) | |
| tree | 01d522cf8e0587d3defd42621819aa78a5958aa4 | |
| parent | 77232826821a60b50ab2c1f315ebffd4ebecfe66 (diff) | |
| download | emacs-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.texi | 4 |
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, | ||
| 13252 | so the two extra ending parentheses are matching the previous @code{if} | ||
| 13253 | and @code{while}.) | ||
| 13254 | |||
| 13251 | This says that if there is no fill prefix and if we are not at the | 13255 | This says that if there is no fill prefix and if we are not at the |
| 13252 | end, point should move to the beginning of whatever was found by the | 13256 | end, point should move to the beginning of whatever was found by the |
| 13253 | regular expression search for @code{sp-parstart}. | 13257 | regular expression search for @code{sp-parstart}. |