Function: elisp-unhighlight-variable

elisp-unhighlight-variable is a byte-compiled function defined in elisp-mode.el.gz.

Signature

(elisp-unhighlight-variable POS)

Documentation

Remove variable highlighting across top-level form at POS.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/elisp-mode.el.gz
(defun elisp-unhighlight-variable (pos)
  "Remove variable highlighting across top-level form at POS."
  (save-excursion
    (goto-char pos)
    (beginning-of-defun)
    (remove-overlays (point) (progn (end-of-defun) (point))
                     'elisp-highlight-variable t)))