Variable: hexl-font-lock-keywords

hexl-font-lock-keywords is a variable defined in hexl.el.gz.

Value

(("^\\([0-9a-f]+:\\)\\( \\).\\{39\\}\\(  \\)\\(.+$\\)"
  (1 'hexl-address-region t t)
  (2 '(face nil display (space :align-to 10)))
  (3 '(face nil display (space :align-to 51)))
  (4 'hexl-ascii-region t t)))

Documentation

Font lock keywords used in hexl-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/hexl.el.gz
(defvar hexl-font-lock-keywords
  '(("^\\([0-9a-f]+:\\)\\( \\).\\{39\\}\\(  \\)\\(.+$\\)"
     ;; "^\\([0-9a-f]+:\\).+  \\(.+$\\)"v
     (1 'hexl-address-region t t)
     ;; If `hexl-address-region' is using a variable-pitch font, the
     ;; rest of the line isn't naturally aligned, so align them by hand.
     (2 '(face nil display (space :align-to 10)))
     (3 '(face nil display (space :align-to 51)))
     (4 'hexl-ascii-region t t)))
  "Font lock keywords used in `hexl-mode'.")