From: Stefan Monnier Date: Wed, 7 May 2025 03:04:46 +0000 (-0400) Subject: (cl-generic-generalizers): Fix typo in last change X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=49cf47e08829337a64f72ba2feec64cf89d7353e;p=emacs.git (cl-generic-generalizers): Fix typo in last change (cherry picked from commit 2eb90d43e6e3b8325503d56c7778b9245b930d88) --- 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))))