* src/vm/utf8.c, src/vm/utf8.h (utf_null): Added.
authortwisti <none@none>
Thu, 22 Jun 2006 18:48:45 +0000 (18:48 +0000)
committertwisti <none@none>
Thu, 22 Jun 2006 18:48:45 +0000 (18:48 +0000)
src/vm/utf8.c
src/vm/utf8.h

index d9b27f32a9f7c2885963622da72d346be886539c..5695c4abb2d8862dd4031f6030dfe57bb46b1a79 100644 (file)
@@ -31,7 +31,7 @@
             Christian Thalinger
                        Edwin Steiner
 
-   $Id: utf8.c 5046 2006-06-22 14:39:10Z twisti $
+   $Id: utf8.c 5047 2006-06-22 18:48:45Z twisti $
 
 */
 
@@ -163,7 +163,7 @@ utf *utf_java_lang_String__java_lang_Class;
 utf *utf_java_lang_Throwable__void;     /* (Ljava/lang/Throwable;)V           */
 
 utf *utf_not_named_yet;                 /* special name for unnamed classes   */
-
+utf *utf_null;
 utf *array_packagename;
 
 
@@ -307,8 +307,8 @@ bool utf8_init(void)
 
        utf_java_lang_Throwable__void  = utf_new_char("(Ljava/lang/Throwable;)V");
 
+       utf_null                       = utf_new_char("null");
        utf_not_named_yet              = utf_new_char("\t<not_named_yet>");
-
        array_packagename              = utf_new_char("\t<the array package>");
 
        /* everything's ok */
index 9a030064b20146a3dab880f24401840c9b04c360..a5b9322b48965c74f72d2b821bff05848fd7b68c 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: Edwin Steiner
 
-   $Id: utf8.h 4887 2006-05-05 19:31:39Z edwin $
+   $Id: utf8.h 5047 2006-06-22 18:48:45Z twisti $
 
 */
 
@@ -158,7 +158,7 @@ extern utf *utf_java_lang_String__java_lang_Class;
 extern utf *utf_java_lang_Throwable__void;
 
 extern utf *utf_not_named_yet;
-
+extern utf *utf_null;
 extern utf *array_packagename;