mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
; * lisp/emacs-lisp/pcase.el (pcase-exhaustive): Doc fix.
This commit is contained in:
parent
e575817e8f
commit
25659d5a75
1 changed files with 2 additions and 3 deletions
|
|
@ -228,10 +228,9 @@ Emacs Lisp manual for more information and examples."
|
|||
;;;###autoload
|
||||
(defmacro pcase-exhaustive (exp &rest cases)
|
||||
"The exhaustive version of `pcase' (which see).
|
||||
If EXP fails to match any of the patterns in CASES, an error is
|
||||
signaled.
|
||||
If EXP fails to match any of the patterns in CASES, signal an error.
|
||||
|
||||
In contrast, `pcase' will return nil if there is no match, but
|
||||
In contrast, `pcase' will return nil if there is no match, but will
|
||||
not signal an error."
|
||||
(declare (indent 1) (debug pcase))
|
||||
(let* ((x (gensym "x"))
|
||||
|
|
|
|||
Loading…
Reference in a new issue