Function: semantic-momentary-highlight-one-tag-line

semantic-momentary-highlight-one-tag-line is a byte-compiled function defined in decorate.el.gz.

Signature

(semantic-momentary-highlight-one-tag-line TAG &optional FACE)

Documentation

Highlight the first line of TAG, unhighlighting before next command.

Optional argument FACE specifies the face to do the highlighting.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate.el.gz
;;; Momentary Highlighting - One line
(defun semantic-momentary-highlight-one-tag-line (tag &optional _face)
  "Highlight the first line of TAG, unhighlighting before next command.
Optional argument FACE specifies the face to do the highlighting."
  (save-excursion
    ;; Go to first line in tag
    (semantic-go-to-tag tag)
    (pulse-momentary-highlight-one-line (point))))