* src/vm/utf8.c (utf_Signature): Added.
authortwisti <none@none>
Sun, 5 Nov 2006 21:23:09 +0000 (21:23 +0000)
committertwisti <none@none>
Sun, 5 Nov 2006 21:23:09 +0000 (21:23 +0000)
(utf8_init): Initialize utf_Signature.
* src/vm/utf8.h (utf_Signature): Added.

src/vm/utf8.c
src/vm/utf8.h

index f6888708047412df78ca24809dd622d3b1c4e683..4c65b583598801b950d8227a8a87118ba1998a78 100644 (file)
@@ -31,7 +31,7 @@
             Christian Thalinger
                        Edwin Steiner
 
-   $Id: utf8.c 5823 2006-10-24 23:24:19Z edwin $
+   $Id: utf8.c 5920 2006-11-05 21:23:09Z twisti $
 
 */
 
@@ -121,6 +121,7 @@ utf *utf_Code;                          /* Code                               */
 utf *utf_Exceptions;                    /* Exceptions                         */
 utf *utf_LineNumberTable;               /* LineNumberTable                    */
 utf *utf_SourceFile;                    /* SourceFile                         */
+utf *utf_Signature;
 
 utf *utf_init;                          /* <init>                             */
 utf *utf_clinit;                        /* <clinit>                           */
@@ -267,6 +268,7 @@ bool utf8_init(void)
        utf_Exceptions                 = utf_new_char("Exceptions");
        utf_LineNumberTable            = utf_new_char("LineNumberTable");
        utf_SourceFile                 = utf_new_char("SourceFile");
+       utf_Signature                  = utf_new_char("Signature");
 
        utf_init                           = utf_new_char("<init>");
        utf_clinit                         = utf_new_char("<clinit>");
index 60e1c025704cc7f873766ebb21f6adbdfaab49ef..f58106510f00e1901478e8cb09d06f6409869aa3 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: Edwin Steiner
 
-   $Id: utf8.h 5823 2006-10-24 23:24:19Z edwin $
+   $Id: utf8.h 5920 2006-11-05 21:23:09Z twisti $
 
 */
 
@@ -114,6 +114,7 @@ extern utf *utf_Code;
 extern utf *utf_Exceptions;
 extern utf *utf_LineNumberTable;
 extern utf *utf_SourceFile;
+extern utf *utf_Signature;
 
 extern utf *utf_init;
 extern utf *utf_clinit;