Function: idlwave-what-module-find-class

idlwave-what-module-find-class is a byte-compiled function defined in idlwave.el.gz.

Signature

(idlwave-what-module-find-class)

Documentation

Call idlwave-what-module and find the inherited class if necessary.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-what-module-find-class ()
  "Call `idlwave-what-module' and find the inherited class if necessary."
  (let* ((module (idlwave-what-module))
	 (class (nth 2 module)))
    (if (and (= (length module) 3)
	     (stringp class))
	(list (car module)
	      (nth 1 module)
	      (apply #'idlwave-find-inherited-class module))
      module)))