Function: idlwave-find-struct-tag
idlwave-find-struct-tag is a byte-compiled function defined in
idlwave.el.gz.
Signature
(idlwave-find-struct-tag TAG)
Documentation
Find a given TAG in the structure defined at point.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-find-struct-tag (tag)
"Find a given TAG in the structure defined at point."
(let* ((borders (idlwave-struct-borders))
(end (cdr borders))
(case-fold-search t))
(re-search-forward (concat "\\(^[ \t]*\\|[,{][ \t]*\\)" tag "[ \t]*:")
end t)))