Function: highlight-quoted--turn-on

highlight-quoted--turn-on is a byte-compiled function defined in highlight-quoted.el.

Signature

(highlight-quoted--turn-on)

Documentation

Set up highlight-quoted-mode(var)/highlight-quoted-mode(fun).

Source Code

;; Defined in ~/.emacs.d/elpa/highlight-quoted-20140916.1822/highlight-quoted.el
(defun highlight-quoted--turn-on ()
  "Set up `highlight-quoted-mode'."
  (let ((keywords (if highlight-quoted-highlight-symbols
                      highlight-quoted--full-keywords
                    highlight-quoted--quote-only-keywords)))
    (set (make-local-variable 'highlight-quoted--buffer-keywords) keywords)
    (font-lock-add-keywords nil keywords 'append)))