mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 05:43:19 -08:00
Add .fasb as one of the file extensions understood by LOAD
This commit is contained in:
parent
48e066f45b
commit
d378f2aaaf
2 changed files with 10 additions and 1 deletions
|
|
@ -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:
|
||||
===========
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue