(scope-define-function-analyzer fboundp (symbol)
(when-let ((q (scope--unqoute symbol))) (scope-report-s q 'function)))
-(scope-define-function-analyzer overlay-put (_ov prop val)
+(scope-define-function-analyzer overlay-put (&optional _ov prop val)
(when-let ((q (scope--unqoute prop))
((eq (scope-sym-bare q) 'face))
(face (scope--unqoute val)))
(:group (scope-report-s (cadr q) 'group)))
(setq q (cddr q)))))
+(scope-define-function-analyzer setopt--set (&optional var _val)
+ (when-let ((q (scope--unqoute var))) (scope-report-s q 'variable)))
+
(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)