Function: clojure-font-lock-escaped-chars

clojure-font-lock-escaped-chars is a byte-compiled function defined in clojure-mode.el.

Signature

(clojure-font-lock-escaped-chars BOUND)

Documentation

Highlight \escaped chars in strings.

BOUND denotes a buffer position to limit the search.

Source Code

;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
(defun clojure-font-lock-escaped-chars (bound)
  "Highlight \\escaped chars in strings.
BOUND denotes a buffer position to limit the search."
  (let ((found nil))
    (while (and (not found)
                (re-search-forward "\\\\." bound t))

      (setq found (clojure--font-locked-as-string-p)))
    found))