From 25659d5a75e837bdd2197b11fac1d02969a7da06 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 2 May 2026 13:10:33 +0300 Subject: [PATCH] ; * lisp/emacs-lisp/pcase.el (pcase-exhaustive): Doc fix. --- lisp/emacs-lisp/pcase.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lisp/emacs-lisp/pcase.el b/lisp/emacs-lisp/pcase.el index 6126679e870..166b346fbbe 100644 --- a/lisp/emacs-lisp/pcase.el +++ b/lisp/emacs-lisp/pcase.el @@ -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"))