diff options
author | Sean Whitton <spwhitton@spwhitton.name> | 2024-10-01 09:15:44 +0800 |
---|---|---|
committer | Sean Whitton <spwhitton@spwhitton.name> | 2024-10-01 09:15:44 +0800 |
commit | 3e92f952aa15ff3dd3f9a8523646252dcb1dc412 (patch) | |
tree | 42fbff3d5195f95de18f34ab747c2dfdd57e2b18 /lisp/emacs-lisp | |
parent | b64f69f6dcc08e5aeea0464f6d8b560ed7002d36 (diff) | |
download | emacs-3e92f952aa15ff3dd3f9a8523646252dcb1dc412.tar.gz emacs-3e92f952aa15ff3dd3f9a8523646252dcb1dc412.tar.bz2 emacs-3e92f952aa15ff3dd3f9a8523646252dcb1dc412.zip |
; * lisp/emacs-lisp/cond-star.el (cond*): Fix typo.
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 543386bfcf5..9495ad96a6c 100644 --- a/lisp/emacs-lisp/cond-star.el +++ b/lisp/emacs-lisp/cond-star.el @@ -58,7 +58,7 @@ When a clause's condition is true, and it exits the `cond*' or is the last clause, the value of the last expression in its body becomes the return value of the `cond*' construct. -Mon-exit clause: +Non-exit clause: If a clause has only one element, or if its first element is t, or if it ends with the keyword :non-exit, then |