Function: idlwave-sys-dir
idlwave-sys-dir is a byte-compiled function defined in idlwave.el.gz.
Signature
(idlwave-sys-dir)
Documentation
Return the syslib directory, or a dummy that never matches.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
;;----- Scanning the user catalog -------------------
(defun idlwave-sys-dir ()
"Return the syslib directory, or a dummy that never matches."
(cond
((and idlwave-system-directory
(not (string= idlwave-system-directory "")))
idlwave-system-directory)
((getenv "IDL_DIR"))
(t "@@@@@@@@")))