summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2025-02-23 07:51:44 +0200
committerEli Zaretskii <eliz@gnu.org>2025-02-23 07:51:44 +0200
commit3a1195894e55db5c48c4a337bff5f6e58ce356f5 (patch)
treee6e8feaa31d3303d32951e22a06a4bc3902dc1b6 /lisp/emacs-lisp
parent8334a9bd73f01a714ba352a49b1f040264ed4eac (diff)
downloademacs-3a1195894e55db5c48c4a337bff5f6e58ce356f5.tar.gz
emacs-3a1195894e55db5c48c4a337bff5f6e58ce356f5.tar.bz2
emacs-3a1195894e55db5c48c4a337bff5f6e58ce356f5.zip
; * lisp/emacs-lisp/cond-star.el (cond*): Fix whitespace.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/cond-star.el2
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*'.