From fa33c26ac25db3307e649e2947315cb551773bd4 Mon Sep 17 00:00:00 2001 From: Surendra Singhi Date: Fri, 14 Apr 2006 11:01:55 +0000 Subject: [PATCH] Thanks to Thomas Weidner. - when feature export is set (export 'foo) is generated for every symbol, i think should be external. - when feature inline is set (declaim (inline foo)) is generated before every function definition - when feature intern_function is set #.(value-of-intern-function "name" "nodeType" package) is emitted instead of the plain symbol. a sample swig-lispify is provided. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9060 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/CHANGES.current | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/SWIG/CHANGES.current b/SWIG/CHANGES.current index e38699ace..2e0397a2f 100644 --- a/SWIG/CHANGES.current +++ b/SWIG/CHANGES.current @@ -1,11 +1,24 @@ Version 1.3.29 (March 21, 2006) =============================== +04/14/2006: efuzzyone + [cffi] + Thanks to Thomas Weidner for the patch. + - when feature export is set (export 'foo) is + generated for every symbol + - when feature inline is set (declaim (inline foo)) is + generated before every function definition + - when feature intern_function is set + #.(value-of-intern-function "name" "nodeType" package) + is emitted instead of the plain symbol. A sample swig-lispify + is provided. + - every symbol is prefixed by it's package. + 04/13/2006: efuzzyone [cffi] Fixed the generation of wrappers for global variables. Added the option [no]swig-lisp which turns on/off generation - of code for helper lisp macro, functions, etc. + of code for swig helper lisp macro, functions, etc. 04/05/2006: mutandiz [allegrocl]