diff options
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 c955e14f548..18a1c344860 100644 --- a/lisp/emacs-lisp/cond-star.el +++ b/lisp/emacs-lisp/cond-star.el @@ -53,7 +53,7 @@ or `(pcase* PATTERN DATUM)', `(bind* BINDINGS...)' means to bind BINDINGS (as if they were in `let*') for the body of the clause, and all subsequent clauses, since the `bind*' clause is always a non-exit clause. As a condition, it counts as true -and runs the body of the clause if the first binding's value is non-nil. +and runs the body of the clause if the first binding's value is non-nil. `(match* PATTERN DATUM)' means to match DATUM against the pattern PATTERN For its patterns, see `match*'. |