Function: idlwave-shell-parse-object-class

idlwave-shell-parse-object-class is a byte-compiled function defined in idlw-shell.el.gz.

Signature

(idlwave-shell-parse-object-class)

Documentation

Parse the output of the obj_class command.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-parse-object-class ()
  "Parse the output of the obj_class command."
  (let ((match "obj_class([^\n\r]+[\n\r ]"))
    (if (string-match (concat match "\\([A-Za-z_0-9]+\\) *[\n\r]\\("
			      idlwave-shell-prompt-pattern "\\)")
		      idlwave-shell-command-output)
	(setq idlwave-shell-get-object-class
	      (match-string 1 idlwave-shell-command-output)))))