slang-users mailing list

[2005 Date Index] [2005 Thread Index] [Other years]
[Thread Prev] [Thread Next]      [Date Prev] [Date Next]

[slang-users] slang 2.0.3 released


Version 2.0.3 is available.  The primarly reason for this release is
to fix a small bug that I encountered before others get bitten by it.

See <http://www.jedsoft.org/slang/download.html> for download options.

Changes since 2.0.2
1. src/slang.c: Optimization of multiple assignment statements involving
   binary operators was generating bad byte-code causing a run-time
   error.  In order to see this effect, code such as 
   
        w = 3*t+s;
        x = 2*z+1;
	y = z*z;
	
   would have to be written as a as multiple assignment statement:
   
        (w,x,y) = (3*t+s, 2*z+1, z*z);

2. src/sltypes.c: Added SLang_push_function to complement
   SLang_pop_function.
3. src/slkeymap.c: SLkm_define_slkey implemented.  It was already
   declared in slang.h but never implemented until now.

Thanks,
--John

_______________________________________________
To unsubscribe, visit http://jedsoft.org/slang/mailinglists.html


[2005 date index] [2005 thread index]
[Thread Prev] [Thread Next]      [Date Prev] [Date Next]