rev 141 - trunk/src
SVN User <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mark
Date: 2004-03-26 18:52:16 -0500 (Fri, 26 Mar 2004)
New Revision: 141
Modified:
trunk/src/builtins.c
Log:
fixed changing int obj to gen obj, forgot to turn off
unmutable flg
Modified: trunk/src/builtins.c
===================================================================
--- trunk/src/builtins.c 2004-03-26 23:32:59 UTC (rev 140)
+++ trunk/src/builtins.c 2004-03-26 23:52:16 UTC (rev 141)
@@ -992,6 +992,7 @@
DEF (INT_OBJ, __gen__, NULL) {
obj_p gen_obj = new_int_obj(0);
+ gen_obj->unmutable = FALSE;
gen_obj->attr_proto.proto = INTGEN_OBJ;
set_attr(ist, gen_obj, SYM_LIMIT, self);
return gen_obj;