loadi
loadi(t_fileName[t_password] ) =>t
Description
Identical to load, except that loadi ignores errors encountered during the load, prints an error message, and then continues loading.
Opens the named file, repeatedly calls lineread to read in the file, immediately evaluates each form after it is read in, then closes the file when end of file is reached. Unlike load, loadi ignores errors encountered during the load. Rather than stopping, loadi causes an error message to be printed and then continues to end of file. Otherwise, loadi is the same as load.
Arguments
|
File to be loaded, with the proper extension to specify the language mode. |
|
Value Returned
Examples
loadi( "testfns.il" )
Loads the test.il file from the tmp directory.
loadi( "/tmp/test.il")
Related Topics
Return to top