Function: hexl-line-displen

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

Signature

(hexl-line-displen)

Documentation

The length of a hexl display line (varies with hexl-bits).

Source Code

;; Defined in /usr/src/emacs/lisp/hexl.el.gz
;; 10 chars for the "address: "
;; 32 chars for the hexlified bytes
;; 1 char for the space
;; 16 chars for the character display
;; X chars for the spaces (128 bits divided by the hexl-bits)
;; 1 char for the newline.
(defun hexl-line-displen ()
  "The length of a hexl display line (varies with `hexl-bits')."
  (+ 60 (/ 128 (or hexl-bits 16))))