From: Eshel Yaron Date: Wed, 12 Feb 2025 10:22:14 +0000 (+0100) Subject: ; (scope--analyze-define-widget): Fix typo. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e5b0ff7622068e7929b00ca551f9ceba2ba3eb65;p=emacs.git ; (scope--analyze-define-widget): Fix typo. --- diff --git a/lisp/emacs-lisp/scope.el b/lisp/emacs-lisp/scope.el index fc8a71e8bfe..687a2163433 100644 --- a/lisp/emacs-lisp/scope.el +++ b/lisp/emacs-lisp/scope.el @@ -1287,7 +1287,7 @@ a (possibly empty) list of safe macros.") (scope-define-function-analyzer define-widget (name class _doc &rest args) (when-let ((q (scope--unqoute name))) (scope-report-s q 'widget-type)) - (when-let ((q (scope--unqoute class))) (scope-report-s q 'type)) + (when-let ((q (scope--unqoute class))) (scope-report-s q 'widget-type)) (while-let ((kw (car-safe args)) (bkw (scope-sym-bare kw)) ((keywordp bkw)))