* lex.c (java_read_unicode): Only accept leading `u's.
authorTom Tromey <tromey@redhat.com>
Wed, 21 Mar 2001 18:50:02 +0000 (18:50 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Wed, 21 Mar 2001 18:50:02 +0000 (18:50 +0000)
From-SVN: r40702

gcc/java/ChangeLog
gcc/java/lex.c

index 592d7822f4bcf49a310d5b5cbda2ab493ecf254b..accbbc72f63d4102c8c3f981bcf42de923a6a915 100644 (file)
@@ -1,3 +1,7 @@
+2001-03-20  Tom Tromey  <tromey@redhat.com>
+
+       * lex.c (java_read_unicode): Only accept leading `u's.
+
 2001-03-20  Tom Tromey  <tromey@redhat.com>
 
        * jcf-parse.c (read_class): Initialize `class'.
index 3b43fa0ac5f31f03a9d2adda33339fc153958e64..4f9a731f7658965d44ca3e9dd2769710334097d6 100644 (file)
@@ -532,6 +532,16 @@ java_read_unicode (lex, unicode_escape_p)
         {
          unicode_t unicode = 0;
          int shift = 12;
+
+         /* Recognize any number of `u's in \u.  */
+         while ((c = java_read_char (lex)) == 'u')
+           ;
+
+         /* Unget the most recent character as it is not a `u'.  */
+         if (c == UEOF)
+           return UEOF;
+         lex->unget_value = c;
+
          /* Next should be 4 hex digits, otherwise it's an error.
             The hex value is converted into the unicode, pushed into
             the Unicode stream.  */
@@ -543,11 +553,6 @@ java_read_unicode (lex, unicode_escape_p)
                unicode |= (unicode_t)((c-'0') << shift);
              else if ((c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'))
                unicode |= (unicode_t)((10+(c | 0x20)-'a') << shift);
-             else if (c == 'u')
-               {
-                 /* Recognize any number of u in \u.  */
-                 shift += 4;
-               }
              else
                java_lex_error ("Non hex digit in Unicode escape sequence", 0);
            }