Function: eglot--semtok-font-lock-2

eglot--semtok-font-lock-2 is a byte-compiled function defined in eglot.el.gz.

Signature

(eglot--semtok-font-lock-2 BEG END)

Documentation

Repaint from stale-but-not-that-much local properties.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defun eglot--semtok-font-lock-2 (beg end)
  "Repaint from stale-but-not-that-much local properties."
  (eglot--widening
   (with-silent-modifications
     (save-excursion
       (cl-loop
        initially (goto-char beg)
        for match = (text-property-search-forward 'eglot--semtok-faces)
        while (and match (< (point) end))
        do (dolist (f (prop-match-value match))
             (add-face-text-property
              (prop-match-beginning match) (prop-match-end match) f)))))))