Function: semantic-symref-list-update-open-hits
semantic-symref-list-update-open-hits is a byte-compiled function
defined in list.el.gz.
Signature
(semantic-symref-list-update-open-hits)
Documentation
Update the text for all the open hits in the symref list.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/symref/list.el.gz
(defun semantic-symref-list-update-open-hits ()
"Update the text for all the open hits in the symref list."
(save-excursion
(goto-char (point-min))
(while (re-search-forward "\\[-\\]" nil t)
(end-of-line)
(let* ((ol (car (overlays-at (1- (point))))) ;; trust this for now
(tag (when ol (overlay-get ol 'tag))))
;; If there is a tag, then close/open it.
(when tag
(semantic-symref-list-toggle-showing)
(semantic-symref-list-toggle-showing))))))