diff options
author | Gautier Ponsinet <gautier@gautierponsinet.xyz> | 2024-08-11 14:52:11 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2024-08-11 17:17:29 +0300 |
commit | d60f3d5dd4b753f23f99d862b0a051af9a8ca930 (patch) | |
tree | 0aeb7cad153c7b734520c417ba19a66f86427b3b /lisp/emacs-lisp | |
parent | ca56dc2e71660cf501f417ab683590ba2e333661 (diff) | |
download | emacs-d60f3d5dd4b753f23f99d862b0a051af9a8ca930.tar.gz emacs-d60f3d5dd4b753f23f99d862b0a051af9a8ca930.tar.bz2 emacs-d60f3d5dd4b753f23f99d862b0a051af9a8ca930.zip |
; Fix a typo in the doc-strings of cond*
* lisp/emacs-lisp/cond-star.el (cond*): Fix a typo in the
doc-string. (Bug#72576)
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cond-star.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cond-star.el b/lisp/emacs-lisp/cond-star.el index 5e8564c29c2..b1a7391a5b0 100644 --- a/lisp/emacs-lisp/cond-star.el +++ b/lisp/emacs-lisp/cond-star.el @@ -35,7 +35,7 @@ (defmacro cond* (&rest clauses) "Extended form of traditional Lisp `cond' construct. A `cond*' construct is a series of clauses, and a clause -normally has the form (CONDITION BDOY...). +normally has the form (CONDITION BODY...). CONDITION can be a Lisp expression, as in `cond'. Or it can be `(bind* BINDINGS...)' or `(match* PATTERN DATUM)'. |