* utf_add: Added.
authortwisti <none@none>
Wed, 21 Sep 2005 20:02:49 +0000 (20:02 +0000)
committertwisti <none@none>
Wed, 21 Sep 2005 20:02:49 +0000 (20:02 +0000)
src/vm/utf8.c
src/vm/utf8.h

index 6d60e8b07120a73f0983fb9362044e3565d8ce84..88a91dcde5246a19a17bf5ad369d348a1954e7ec 100644 (file)
@@ -30,7 +30,7 @@
             Andreas Krall
             Christian Thalinger
 
-   $Id: utf8.c 2741 2005-06-20 09:57:14Z twisti $
+   $Id: utf8.c 3262 2005-09-21 20:02:49Z twisti $
 
 */
 
@@ -99,6 +99,8 @@ utf *utf_clone;                         /* clone                              */
 utf *utf_finalize;                      /* finalize                           */
 utf *utf_run;                           /* run                                */
 
+utf *utf_add;                           /* add                                */
+
 utf *utf_fillInStackTrace;
 utf *utf_getSystemClassLoader;
 utf *utf_loadClass;
@@ -194,6 +196,8 @@ void utf8_init(void)
        utf_finalize                   = utf_new_char("finalize");
        utf_run                        = utf_new_char("run");
 
+       utf_add                        = utf_new_char("add");
+
        utf_printStackTrace            = utf_new_char("printStackTrace");
        utf_fillInStackTrace           = utf_new_char("fillInStackTrace");
        utf_loadClass                  = utf_new_char("loadClass");
index f0c0a54cd893b423925e40d50f0ee813b9aea407..e701c52a1390e31d1243401fc82a3973d67329ea 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes:
 
-   $Id: utf8.h 2741 2005-06-20 09:57:14Z twisti $
+   $Id: utf8.h 3262 2005-09-21 20:02:49Z twisti $
 
 */
 
@@ -111,6 +111,8 @@ extern utf *utf_clone;
 extern utf *utf_finalize;
 extern utf *utf_run;
 
+extern utf *utf_add;
+
 extern utf *utf_fillInStackTrace;
 extern utf *utf_getSystemClassLoader;
 extern utf *utf_loadClass;