(scope-define-function-analyzer setopt--set (&optional var _val)
(when-let ((q (scope--unqoute var))) (scope-report-s q 'variable)))
+(scope-define-function-analyzer autoload (&optional func _file _doc int &rest _)
+ (when-let ((q (scope--unqoute func))) (scope-report-s q 'function))
+ (when-let ((q (scope--unqoute int)) ((listp q)))
+ (dolist (mode q) (scope-report-s mode 'major-mode))))
+
(scope-define-macro-analyzer define-globalized-minor-mode (l global mode turn-on &rest body)
(scope-report-s mode 'function)
(scope-report-s turn-on 'function)