1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

; Fix typos

* doc/lispref/control.texi (cond* Macro):
* etc/NEWS: Fix typos.
This commit is contained in:
Michael Albinus 2024-08-29 15:52:16 +02:00
parent 38650b630b
commit 00f9927693
2 changed files with 2 additions and 2 deletions

View File

@ -1411,7 +1411,7 @@ argument:
@end defmac @end defmac
@node cond* Macro @node cond* Macro
@subsection The @code{pcase} macro @subsection The @code{cond*} macro
@findex cond*@r{, a macro} @findex cond*@r{, a macro}
The @code{cond*} macro is an alternative to @code{pcase}, and supports The @code{cond*} macro is an alternative to @code{pcase}, and supports

View File

@ -343,7 +343,7 @@ The new macro 'cond*' is an alternative to 'pcase'. Like 'pcase', it
allows to define several clauses, each one of with its own condition; allows to define several clauses, each one of with its own condition;
the first clause that matches will cause its body to be evaluated. the first clause that matches will cause its body to be evaluated.
'cond*' uses syntax that is different from that of 'pcase', which some 'cond*' uses syntax that is different from that of 'pcase', which some
users might find less cryptic. See the Info node "(elisp) cond Macro" users might find less cryptic. See the Info node "(elisp) cond* Macro"
for details. for details.