From f9c48b5d7fdb0909d5306be9c37bd41f6f4bbd1a Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Sun, 25 Apr 2010 09:45:16 +0200 Subject: [PATCH] Add the latest change to CHANGELOG --- src/CHANGELOG | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/CHANGELOG b/src/CHANGELOG index d570bf737..ffcce4efc 100755 --- a/src/CHANGELOG +++ b/src/CHANGELOG @@ -21,6 +21,15 @@ ECL 10.4.2: - ECL's compiler now understands the unboxed type :long-long. + - 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). + ECL 10.4.1: ===========