checkin from browser
authorcg
Mon, 04 Jan 1999 14:34:55 +0000
changeset 510 4a34fd1babdd
parent 509 b06f892d2f52
child 511 1395b1fc453f
checkin from browser
JavaVM.st
--- a/JavaVM.st	Mon Jan 04 13:36:22 1999 +0000
+++ b/JavaVM.st	Mon Jan 04 14:34:55 1999 +0000
@@ -4710,7 +4710,7 @@
 !
 
 _Math_log:nativeContext
-    "logarithm"
+    "natural logarithm"
 
     |dVal|
 
@@ -4722,10 +4722,10 @@
 "/            self halt:'expected double arg'
 "/        ]
 "/    ].
-    ^ dVal log
+    ^ dVal ln
 
     "Created: / 7.1.1998 / 15:42:19 / cg"
-    "Modified: / 11.11.1998 / 15:07:38 / cg"
+    "Modified: / 30.12.1998 / 17:41:42 / cg"
 !
 
 _Math_pow:nativeContext
@@ -10891,6 +10891,6 @@
 !JavaVM class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaVM.st,v 1.108 1999/01/04 13:36:21 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaVM.st,v 1.109 1999/01/04 14:34:55 cg Exp $'
 ! !
 JavaVM initialize!