std-module-defined-p,std-module-pathname


Synopsis

(std-module-defined-p <module-name>) => T/nil

(std-module-pathname <module-name>) => pathname or nil

Description

std-module-defined-p returns T or nil if the module is defined (= loaded) or not.

std-module-pathname returns the filename of the module which will be loaded or is already loaded or nil if it is not found.

Arguments

module-name: string or symbol. Usually the filename of the lisp file in which the module is defined. Just the name without absolute path or extension is needed. Usually case insensitive, but OS dependant.

Return Value

T or nil.

String or nil.

Side Effects

None.

Module

(std-require 'STDINIT)

Defined in STDMODUL