slang-users mailing list

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

Re: [slang-users] slang 2.0.1 released


Paul Boekholt <p.boekholt@xxxxxxxxx> wrote:
>add_files_popup_with_callback already has static or private linkage in this unit
>push_defaults already has static or private linkage in this unit

In this case, slang 2.0.1 caught a bug in jed/lib/popups.sl.  The bug
is that "add_files_popup_with_callback" was declared as "static" and
then later on in the file implicitly declared as "public".  The bug-fix
is to change the second declaration to static.  Please let me know if
you see other issues like this.

Also, I should point out that a short time ago I realized that
SLANG_VERISION in slang.h of 2.0.1 was not updated to reflect the new
version.  For this reason, I released 2.0.2 with the updated version
number.  If you have already downloaded 2.0.1, then please apply this
patch:

--- slang-2.0.1/src/slang.h	Mon May 16 03:28:41 2005
+++ slang-2.0.2/src/slang.h	Mon May 16 06:23:16 2005
@@ -22,8 +22,8 @@
 USA.  
 */
 
-#define SLANG_VERSION 20000
-#define SLANG_VERSION_STRING "2.0.1"
+#define SLANG_VERSION 20002
+#define SLANG_VERSION_STRING "2.0.2"
 /* #ifdef __DATE__ */
 /* # define SLANG_VERSION_STRING SLANG_VERSION_STRING0 " " __DATE__ */
 /* #else */


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]