Embeddable Common-Lisp main repository.
Find a file
jjgarcia 5f0dbbf1d1 - Remove function_entry_table.
- The value of *package* is correctly set and restored while loading
  compiled code. This way, 'ecls -eval "(print *package*)"' produces
  the expected result #<"COMMON-LISP-USER" package>
- COMPILE-FILE now outputs three values.
- The value of si::*keep-definitions* determines whether the
  interpreter keeps the source of defined functions, for later use
  with COMPILE and DISASSEMBLE. For instance,
	> (set si::*keep-definitions* t)
	> (defun foo (x) (1+ x))
	> (compile 'foo)
	> (foo 2)
	3
	> (compile 'foo)
	;;; Error ....
  These definitions are lost once the function is compiled, hence
  the second error message.
2001-10-03 16:30:15 +00:00
contrib Initial revision 2001-06-26 17:14:44 +00:00
src - Remove function_entry_table. 2001-10-03 16:30:15 +00:00
ANNOUNCEMENT Keep track of ANNOUNCEMENT in CVS. Use CHANGELOG for old announcements. 2001-09-29 13:06:16 +00:00
configure Initial revision 2001-06-26 17:14:44 +00:00
Copyright Initial revision 2001-06-26 17:14:44 +00:00
LGPL Initial revision 2001-06-26 17:14:44 +00:00
Makefile.in Some files were missing in source ditributions. 2001-09-29 13:16:24 +00:00
README.1st Initial revision 2001-06-26 17:14:44 +00:00

You can find the preprocessed documentation in ./doc in HTML format.