rev 183 - in trunk: . src
SVN User <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: bcollins
Date: 2004-03-28 09:52:59 -0500 (Sun, 28 Mar 2004)
New Revision: 183
Modified:
trunk/changes.txt
trunk/src/interp.c
Log:
Missed one LONG_LONG_FMT usage needed.
Modified: trunk/changes.txt
===================================================================
--- trunk/changes.txt 2004-03-28 14:48:58 UTC (rev 182)
+++ trunk/changes.txt 2004-03-28 14:52:59 UTC (rev 183)
@@ -1,19 +1,20 @@
----- Prothon Release History ----
-Version 0.0.2 - Build 175 - 3/28/04 - Weekly Release
- Fixed "not a" and "a is not b"
- Fixed Dict.__str__() on empty Dict
- Implemented -i and -c command line arguments
- Return value of functions with no return is None again
- String object can now hold binary data (embedded nulls)
- Added "unmutable" bit to object - write protects and faster
- Many Unix/Linux build system improvements, uses Libtools
- Binary now supplied for Max OSX
- Fixed compatibility with all Bisons
- Added detection of APR during build.
- String processing is now "safe"
- Int moved from module to built-in
- Added msvcr70.dll to win32 release
+Version 0.0.2 - Build 182 - 3/28/04 - Weekly Release
+ - Fixed "not a" and "a is not b"
+ - Fixed Dict.__str__() on empty Dict
+ - Implemented -i and -c command line arguments
+ - Return value of functions with no return is None again
+ - String object can now hold binary data (embedded nulls)
+ - Added "unmutable" bit to object - write protects and faster
+ - Many Unix/Linux build system improvements, uses Libtool and
+ autoconf macros for most things now.
+ - Binary now supplied for Max OSX
+ - Fixed compatibility with all Bisons
+ - Added detection of APR during build.
+ - String processing is now "safe"
+ - Int moved from module to built-in
+ - Added msvcr70.dll to win32 release
Version 0.0.1 - Build 115 - 3/24/04 - Initial Release
Modified: trunk/src/interp.c
===================================================================
--- trunk/src/interp.c 2004-03-28 14:48:58 UTC (rev 182)
+++ trunk/src/interp.c 2004-03-28 14:52:59 UTC (rev 183)
@@ -1199,7 +1199,7 @@
printf("\nUncaught exception:\n");
if ((fstk_obj = get_attr(ist, orig_excobj, sym(ist, "frame_stack")))) {
for (i=list_len(ist, fstk_obj)-3; i >= 0; i -= 3)
- printf( "--- File: %s, line: "LONG_LONG_FMT", char: %I64d\n",
+ printf( "--- File: %s, line: "LONG_LONG_FMT", char: "LONG_LONG_FMT"\n",
strch(list_item(ist, fstk_obj, i )),
*((LONG_LONG_CAST *)obj_data_p(list_item(ist, fstk_obj, i+1))),
*((LONG_LONG_CAST *)obj_data_p(list_item(ist, fstk_obj, i+2))) );