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
        for from = beg then to
        while (< from end)
        for faces = (get-text-property from 'eglot--semtok-faces)
        for to = (or (next-single-property-change from 'eglot--semtok-faces nil end) end)
        when faces
        do (dolist (f faces) (add-face-text-property from to f)))))))