Function: tag-any-match-p

tag-any-match-p is a byte-compiled function defined in etags.el.gz.

Signature

(tag-any-match-p TAG)

Documentation

Return non-nil if current tag line contains TAG as a substring.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/etags.el.gz
;; t if point is in a tag line with a tag containing TAG as a substring.
(defun tag-any-match-p (_tag)
  "Return non-nil if current tag line contains TAG as a substring."
  (looking-at ".*\177"))