Variable: doc-id-match

doc-id-match is a variable defined in hib-doc-id.el.

Value

#[257 "\302\303!\304\303!\304\303	!\260\207"
      [doc-id-start doc-id-end "ID:[    ]*" regexp-quote "[     ]*"]
      8 "\n\n(fn DOC-ID)"]

Documentation

Single arg function returning regexp matching within DOC-ID's index entry only.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hib-doc-id.el
(defvar doc-id-match
  (lambda (doc-id)
    (concat "ID:[ \t]*"
	    (regexp-quote doc-id-start) "[ \t]*" (regexp-quote doc-id)
	    "[ \t]*" (regexp-quote doc-id-end)))
  "Single arg function returning regexp matching within DOC-ID's index entry only.")