Variable: hexl-follow-ascii-hook
hexl-follow-ascii-hook is a customizable variable defined in
hexl.el.gz.
Value
nil
Documentation
Hook run after entering or leaving hexl-follow-ascii(var)/hexl-follow-ascii(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 /usr/src/emacs/lisp/hexl.el.gz
(define-minor-mode hexl-follow-ascii
"Toggle following ASCII in Hexl buffers.
Like `hexl-follow-ascii-mode' but remembers the choice globally."
:global t
(let ((on-p (if arg
(> (prefix-numeric-value arg) 0)
(not hexl-ascii-overlay))))
(hexl-follow-ascii-mode (if on-p 1 -1))
;; Remember this choice globally for later use.
(setq hexl-follow-ascii hexl-follow-ascii-mode)))