Embeddable Common-Lisp main repository.
Find a file
Juan Jose Garcia Ripoll f3071cc41e Implemented WITH-BACKEND and small interpreter fix.
- A new special form, EXT:WITH-BACKEND allows us to select the code depending
   on whether it is going to be processed by the interpreter or by the C
   compiler.
      (defun example ()
        (ext:with-backend (:bytecodes) (print 3))
        (ext:with-backend (:c/c++) (print 2)))
   The two currently available backends are :bytecodes and :c/c++. Note that
   when the backend does not match the value, the form is replaced with (VALUES).

 - Some forms, such as LIST, CONS, etc, when optimized by the interpreter,
   compiled their arguments as toplevel forms, causing the right result,
   but out of order evaluation.
2010-04-24 10:39:46 +02:00
contrib RT must identify itself as provided 2010-04-24 10:38:30 +02:00
examples Update ASDF example (David Leoni) 2010-03-19 23:30:58 +01:00
msvc Upgrade version number 2010-04-04 16:27:25 +02:00
src Implemented WITH-BACKEND and small interpreter fix. 2010-04-24 10:39:46 +02:00
.gitignore Ignore the Autoconf directory. 2010-02-17 00:25:03 +01:00
ANNOUNCEMENT Rewrite the annoucement to take less space per line and eliminate the reference to common-lisp.net 2010-04-04 19:42:30 +02:00
configure Preserve quoting when passing the arguments to the build directory 2008-08-27 09:50:44 +02:00
Copyright Debian needs a more precise wording of the license 2005-12-14 09:51:11 +00:00
INSTALL New file with a sketch of the installation instrucitons 2009-08-12 23:54:41 +02:00
LGPL Initial revision 2001-06-26 17:14:44 +00:00
Makefile.in Automate process of uploading a new release. 2010-02-13 21:26:39 +01:00
README.1st Initial revision 2001-06-26 17:14:44 +00:00

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