Function: idlwave-complete-structure-tag-get-tags-from-help

idlwave-complete-structure-tag-get-tags-from-help is a byte-compiled function defined in idlw-complete-structtag.el.gz.

Signature

(idlwave-complete-structure-tag-get-tags-from-help)

Documentation

Filter structure tag name output, result to idlwave-current-struct-tags.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-complete-structtag.el.gz
(defun idlwave-complete-structure-tag-get-tags-from-help ()
  "Filter structure tag name output, result to `idlwave-current-struct-tags'."
    (setq idlwave-current-struct-tags
	  (if (string-match (concat "tag_names(.*) *\n"
				    "\\(\\(.*[\r\n]?\\)*\\)"
				    "\\(" idlwave-shell-prompt-pattern "\\)")
			    idlwave-shell-command-output)
	      (split-string (match-string 1 idlwave-shell-command-output)))))