*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Mon, 23 Dec 1996 17:36:30 +0100
changeset 2018 3d7af604f964
parent 2017 fb9627540d0b
child 2019 8f44b270809b
*** empty log message ***
ObjMem.st
ObjectMemory.st
--- a/ObjMem.st	Mon Dec 23 17:27:43 1996 +0100
+++ b/ObjMem.st	Mon Dec 23 17:36:30 1996 +0100
@@ -2727,10 +2727,11 @@
     extern int __byteCodeSizeLimitForDynamicCompilation();
     int prev;
 
-    prev = __byteCodeSizeLimitForDynamicCompilation( __isSmallInteger(aNumber)
+    prev = __byteCodeSizeLimitForDynamicCompilation(
+				    __isSmallInteger(aNumber)
                                     ? __intVal(aNumber)
                                     : -1);
-    RETURN __MKSMALLINT(prev);
+    RETURN (__MKSMALLINT(prev));
 %}.
 
     "
@@ -2756,7 +2757,7 @@
     prev = __insnSizeLimitForDynamicCompilation( __isSmallInteger(aNumber)
                                     ? __intVal(aNumber)
                                     : -1);
-    RETURN __MKSMALLINT(prev);
+    RETURN (__MKSMALLINT(prev));
 %}.
 
     "
@@ -2780,7 +2781,7 @@
     prev = __codeSizeLimitForDynamicCompilation( __isSmallInteger(aNumber)
 				    ? __intVal(aNumber)
 				    : -1);
-    RETURN __MKSMALLINT(prev);
+    RETURN (__MKSMALLINT(prev));
 %}.
 
     "
@@ -3953,6 +3954,6 @@
 !ObjectMemory class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/ObjMem.st,v 1.125 1996-12-23 16:27:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/ObjMem.st,v 1.126 1996-12-23 16:36:30 cg Exp $'
 ! !
 ObjectMemory initialize!
--- a/ObjectMemory.st	Mon Dec 23 17:27:43 1996 +0100
+++ b/ObjectMemory.st	Mon Dec 23 17:36:30 1996 +0100
@@ -2727,10 +2727,11 @@
     extern int __byteCodeSizeLimitForDynamicCompilation();
     int prev;
 
-    prev = __byteCodeSizeLimitForDynamicCompilation( __isSmallInteger(aNumber)
+    prev = __byteCodeSizeLimitForDynamicCompilation(
+				    __isSmallInteger(aNumber)
                                     ? __intVal(aNumber)
                                     : -1);
-    RETURN __MKSMALLINT(prev);
+    RETURN (__MKSMALLINT(prev));
 %}.
 
     "
@@ -2756,7 +2757,7 @@
     prev = __insnSizeLimitForDynamicCompilation( __isSmallInteger(aNumber)
                                     ? __intVal(aNumber)
                                     : -1);
-    RETURN __MKSMALLINT(prev);
+    RETURN (__MKSMALLINT(prev));
 %}.
 
     "
@@ -2780,7 +2781,7 @@
     prev = __codeSizeLimitForDynamicCompilation( __isSmallInteger(aNumber)
 				    ? __intVal(aNumber)
 				    : -1);
-    RETURN __MKSMALLINT(prev);
+    RETURN (__MKSMALLINT(prev));
 %}.
 
     "
@@ -3953,6 +3954,6 @@
 !ObjectMemory class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ObjectMemory.st,v 1.125 1996-12-23 16:27:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ObjectMemory.st,v 1.126 1996-12-23 16:36:30 cg Exp $'
 ! !
 ObjectMemory initialize!