From e5b0ff7622068e7929b00ca551f9ceba2ba3eb65 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Wed, 12 Feb 2025 11:22:14 +0100 Subject: [PATCH] ; (scope--analyze-define-widget): Fix typo. --- lisp/emacs-lisp/scope.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))) -- 2.39.5