Function: idlwave-complete-structure-tag-query-shell

idlwave-complete-structure-tag-query-shell is a byte-compiled function defined in idlw-complete-structtag.el.gz.

Signature

(idlwave-complete-structure-tag-query-shell VAR)

Documentation

Ask the shell for the tags of the structure in variable or expression VAR.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-complete-structtag.el.gz
(defun idlwave-complete-structure-tag-query-shell (var)
  "Ask the shell for the tags of the structure in variable or expression VAR."
  (idlwave-shell-send-command
   (format "if size(%s,/TYPE) eq 8 then print,tag_names(%s)" var var)
   'idlwave-complete-structure-tag-get-tags-from-help
   'hide 'wait))