Patch: FYI: bug fix in gcj.texi
Tom Tromey
tromey@redhat.com
Tue Jan 30 19:57:00 GMT 2007
I'm checking this in.
gcj.texi mis-documents JvNewString.
Fixed as appended.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* gcj.texi (Strings): Fix documentation for JvNewString.
Index: gcj.texi
===================================================================
--- gcj.texi (revision 121354)
+++ gcj.texi (working copy)
@@ -2083,9 +2083,9 @@
The names and interfaces are analogous to those of @acronym{JNI}.
-@deftypefun jstring JvNewString (const char* @var{chars}, jsize @var{len})
-Returns a Java @code{String} object with characters from the C string
-@var{chars} up to the index @var{len} in that array.
+@deftypefun jstring JvNewString (const jchar* @var{chars}, jsize @var{len})
+Returns a Java @code{String} object with characters from the array of
+Unicode characters @var{chars} up to the index @var{len} in that array.
@end deftypefun
@deftypefun jstring JvNewStringLatin1 (const char* @var{bytes}, jsize @var{len})
More information about the Java-patches
mailing list