diff options
| author | Gautier Ponsinet | 2024-08-11 14:52:11 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2024-08-11 17:17:29 +0300 |
| commit | d60f3d5dd4b753f23f99d862b0a051af9a8ca930 (patch) | |
| tree | 0aeb7cad153c7b734520c417ba19a66f86427b3b | |
| parent | ca56dc2e71660cf501f417ab683590ba2e333661 (diff) | |
| download | emacs-d60f3d5dd4b753f23f99d862b0a051af9a8ca930.tar.gz 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)
| -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 @@ | |||
| 35 | (defmacro cond* (&rest clauses) | 35 | (defmacro cond* (&rest clauses) |
| 36 | "Extended form of traditional Lisp `cond' construct. | 36 | "Extended form of traditional Lisp `cond' construct. |
| 37 | A `cond*' construct is a series of clauses, and a clause | 37 | A `cond*' construct is a series of clauses, and a clause |
| 38 | normally has the form (CONDITION BDOY...). | 38 | normally has the form (CONDITION BODY...). |
| 39 | 39 | ||
| 40 | CONDITION can be a Lisp expression, as in `cond'. | 40 | CONDITION can be a Lisp expression, as in `cond'. |
| 41 | Or it can be `(bind* BINDINGS...)' or `(match* PATTERN DATUM)'. | 41 | Or it can be `(bind* BINDINGS...)' or `(match* PATTERN DATUM)'. |