Function: elisp-scope-report-s

elisp-scope-report-s is a byte-compiled function defined in elisp-scope.el.gz.

Signature

(elisp-scope-report-s SYM ROLE)

Documentation

Report that symbol SYM has role ROLE.

If SYM is not a symbol with position information, do nothing.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/elisp-scope.el.gz
(defun elisp-scope-report-s (sym role)
  "Report that symbol SYM has role ROLE.

If SYM is not a symbol with position information, do nothing."
  (when-let* ((beg (elisp-scope--sym-pos sym)) (bare (bare-symbol sym)))
    (elisp-scope--report role beg bare)))