Function: smart-objc-at-tag-p
smart-objc-at-tag-p is a byte-compiled function defined in
hmouse-tag.el.
Signature
(smart-objc-at-tag-p &optional NO-FLASH)
Documentation
Return Objective-C tag name that point is within, else nil.
When optional NO-FLASH, do not flash.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-tag.el
(defun smart-objc-at-tag-p (&optional no-flash)
"Return Objective-C tag name that point is within, else nil.
When optional NO-FLASH, do not flash."
(let* ((identifier-chars "_a-zA-Z0-9")
(identifier
(concat "\\([-+][ \t]*\\)?\\([_a-zA-Z][" identifier-chars "]*\\)")))
(save-excursion
(skip-chars-backward identifier-chars)
(if (and (/= (preceding-char) ?@) (looking-at identifier)
(not (member (downcase (match-string 0)) smart-objc-keywords)))
(if no-flash
(buffer-substring-no-properties (match-beginning 2) (match-end 2))
(smart-flash-tag
(buffer-substring-no-properties (match-beginning 2) (match-end 2))
(match-beginning 2) (match-end 2)))))))