Function: hexl-highlight-line-range

hexl-highlight-line-range is a byte-compiled function defined in hexl.el.gz.

Signature

(hexl-highlight-line-range)

Documentation

Return the range of address region for the point.

This function is assumed to be used as callback function for hl-line-mode(var)/hl-line-mode(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/hexl.el.gz
(defun hexl-highlight-line-range ()
  "Return the range of address region for the point.
This function is assumed to be used as callback function for `hl-line-mode'."
  (cons
   (line-beginning-position)
   ;; 9 stands for (length "87654321:")
   (+ (line-beginning-position) 9)))