Function: elisp-fontify-symbols

elisp-fontify-symbols is a byte-compiled function defined in elisp-mode.el.gz.

Signature

(elisp-fontify-symbols END)

Documentation

Fontify symbols from point to END according to their role in the code.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/elisp-mode.el.gz
(defun elisp-fontify-symbols (end)
  "Fontify symbols from point to END according to their role in the code."
  (when elisp-fontify-semantically
    (while (< (point) end)
      (ignore-errors (elisp-scope-analyze-form #'elisp-fontify-symbol)))))