Variable: highlight-quoted-mode-hook

highlight-quoted-mode-hook is a customizable variable defined in highlight-quoted.el.

Value

nil

Documentation

Hook run after entering or leaving highlight-quoted-mode(var)/highlight-quoted-mode(fun).

No problems result if this variable is not bound. add-hook automatically binds it. (This is true for all hook variables.)

Source Code

;; Defined in ~/.emacs.d/elpa/highlight-quoted-20140916.1822/highlight-quoted.el
;;;###autoload
(define-minor-mode highlight-quoted-mode
  "Highlight Lisp quotes and quoted symbols.

Toggle Highlight-Quoted mode on or off.
With a prefix argument ARG, enable Highlight-Quoted mode if ARG is positive, and
disable it otherwise.  If called from Lisp, enable the mode if ARG is omitted or
nil, and toggle it if ARG is `toggle'.
\\{highlight-quoted-mode-map}"
  :init-value nil
  :lighter ""
  :keymap nil
  (highlight-quoted--turn-off)
  (when highlight-quoted-mode
    (highlight-quoted--turn-on))
  (when font-lock-mode
    (if (fboundp 'font-lock-flush)
        (font-lock-flush)
      (with-no-warnings (font-lock-fontify-buffer)))))