Function: hl-line-unload-function
hl-line-unload-function is a byte-compiled function defined in
hl-line.el.gz.
Signature
(hl-line-unload-function)
Documentation
Unload the Hl-Line library.
Source Code
;; Defined in /usr/src/emacs/lisp/hl-line.el.gz
(defun hl-line-unload-function ()
"Unload the Hl-Line library."
(global-hl-line-mode -1)
(save-current-buffer
(dolist (buffer (buffer-list))
(set-buffer buffer)
(when hl-line-mode (hl-line-mode -1))))
;; continue standard unloading
nil)