Variable: doc-id-p

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

Value

#[257 "\211;\205�\211G\300V\205�\211\300Hz\301=\205�\302\303\"\207"
      [0 119 string-match "\\`\\w+-[0-9][0-9][0-9]+\\'"]
      4 "\n\n(fn STR)"]

Documentation

Value is a function with a boolean result that tests whether str is a doc id.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hib-doc-id.el
(defvar doc-id-p (lambda (str)
		   (and (stringp str)
			(> (length str) 0)
			(eq ?w (char-syntax (aref str 0)))
			(string-match "\\`\\w+-[0-9][0-9][0-9]+\\'" str)))
  "Value is a function with a boolean result that tests whether `str' is a doc id.")