Function: tag-re-match-p
tag-re-match-p is a byte-compiled function defined in etags.el.gz.
Signature
(tag-re-match-p RE)
Documentation
Return non-nil if current tag line matches regexp RE.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/etags.el.gz
;; t if point is at a tag line that matches RE as a regexp.
(defun tag-re-match-p (re)
"Return non-nil if current tag line matches regexp RE."
(save-excursion
(beginning-of-line)
(let ((bol (point)))
(and (search-forward "\177" (line-end-position) t)
(re-search-backward re bol t)))))