Function: idlwave-special-lib-test

idlwave-special-lib-test is a byte-compiled function defined in idlwave.el.gz.

Signature

(idlwave-special-lib-test FILE)

Documentation

Check the path of FILE against the regexps which define special libs.

Return the name of the special lib if there is a match.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-special-lib-test (file)
  "Check the path of FILE against the regexps which define special libs.
Return the name of the special lib if there is a match."
  (let ((alist idlwave-special-lib-alist)
	entry rtn)
    (cond
     ((stringp file)
      (while (setq entry (pop alist))
	(if (string-match (car entry) file)
	    (setq rtn (cdr entry)
		  alist nil)))
      rtn)
     (t nil))))