Variable: hfy-etag-regex

hfy-etag-regex is a customizable variable defined in htmlfontify.el.gz.

Value

".*\\([^\n]+\\)\\([0-9]+\\),\\([0-9]+\\)$\\|.*[0-9]+,[0-9]+$"

Documentation

Regex used to parse an etags entry.

This must have 3 subexps, corresponding, in order, to:

   1 - The tag
   2 - The line
   3 - The char (point) at which the tag occurs.

Source Code

;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
(defcustom hfy-etag-regex (concat ".*"
                                  "\x7f" "\\([^\x01\n]+\\)"
                                  "\x01" "\\([0-9]+\\)"
                                  ","    "\\([0-9]+\\)$"
                                  "\\|"  ".*\x7f[0-9]+,[0-9]+$")
  "Regex used to parse an etags entry.
This must have 3 subexps, corresponding, in order, to:

   1 - The tag
   2 - The line
   3 - The char (point) at which the tag occurs."
  :tag   "etag-regex"
  :type  '(regexp))