Add .fasb as one of the file extensions understood by LOAD

This commit is contained in:
Juan Jose Garcia Ripoll 2010-04-07 20:42:00 +02:00
parent 48e066f45b
commit d378f2aaaf
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,11 @@
ECL 10.4.2:
===========
* Visible changes:
- "fasb" is now a valid FASL file type, accepted by ECL even in absence of
ASDF.
ECL 10.4.1:
===========

View file

@ -658,8 +658,9 @@ cl_boot(int argc, char **argv)
#endif
aux = cl_list(
#ifdef ENABLE_DLOPEN
9,CONS(make_constant_base_string("fas"), @'si::load-binary'),
10,CONS(make_constant_base_string("fas"), @'si::load-binary'),
CONS(make_constant_base_string("fasl"), @'si::load-binary'),
CONS(make_constant_base_string("fasb"), @'si::load-binary'),
#else
7,
#endif