Variable: hpath:line-and-column-regexp

hpath:line-and-column-regexp is a variable defined in hpath.el.

Value

":L?\\([-+]?[0-9]+\\)\\(:C?\\([-+]?[0-9]+\\)\\)?\\s-*\\'"

Documentation

Regexp matching a trailing line number and optional column number.

Path, line and column numbers are colon separated. Group 1 is the
1-based line number. Group 3 is the 0-based column number.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
(defconst hpath:line-and-column-regexp
  (concat hpath:line-and-column-numbers "\\s-*\\'")
  "Regexp matching a trailing line number and optional column number.
Path, line and column numbers are colon separated.  Group 1 is the
1-based line number.  Group 3 is the 0-based column number.")