Unload a VLX application that is loaded in its own namespace
(vl-unload-vlx appname)
Arguments
A string naming a VLX application that is loaded in its own namespace. Do not include the .vlx extension.
vl-unload-vlx function does not unload VLX applications that are loaded in the current document's namespace.
TheReturn Values
T if successful; otherwise vl-unload-vlx results in an error.
Examples
Assuming that vlxns is an application that is loaded in its own namespace, the following command unloads vlxns:
Command: (vl-unload-vlx "vlxns")
T
vlxns again:
Try unloadingCommand: (vl-unload-vlx "vlxns")
; *** ERROR: LISP Application is not found VLXNS
vl-unload-vlx command fails this time, because the application was not loaded.
Theload and vl-vlx-loaded-p functions.
The