Function: highlight-quoted-mode
highlight-quoted-mode is an autoloaded, interactive and byte-compiled
function defined in highlight-quoted.el.
Signature
(highlight-quoted-mode &optional ARG)
Documentation
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.
Keymap highlight-quoted-mode-map is not currently defined.
Key Bindings
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)))))