From 49cf47e08829337a64f72ba2feec64cf89d7353e Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 6 May 2025 23:04:46 -0400 Subject: [PATCH] (cl-generic-generalizers): Fix typo in last change (cherry picked from commit 2eb90d43e6e3b8325503d56c7778b9245b930d88) --- lisp/emacs-lisp/cl-lib.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/cl-lib.el b/lisp/emacs-lisp/cl-lib.el index b566f587dbc..708ff15f289 100644 --- a/lisp/emacs-lisp/cl-lib.el +++ b/lisp/emacs-lisp/cl-lib.el @@ -564,7 +564,7 @@ If ALIST is non-nil, the new pairs are prepended to it." (if (and (symbolp type) (cl-type-class-p (cl--find-class type)) ;; Make sure this derived type can be used without arguments. (let ((expander (get type 'cl-deftype-handler))) - (and expander (ignore-error (funcall expander))))) + (and expander (ignore-errors (funcall expander))))) (cl--type-generalizers type) (cl-call-next-method)))) -- 2.39.5