Title: [90456] trunk/Source/WebCore
Revision
90456
Author
[email protected]
Date
2011-07-06 06:45:35 -0700 (Wed, 06 Jul 2011)

Log Message

2011-07-06  Andras Becsi  <[email protected]>

        Fix "warning: a `;' might be needed at the end of action code"

        Unreviewed gardening.

        No new tests needed.

        * css/CSSGrammar.y: Future versions of Bison will not add the ';' so add it.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (90455 => 90456)


--- trunk/Source/WebCore/ChangeLog	2011-07-06 13:41:12 UTC (rev 90455)
+++ trunk/Source/WebCore/ChangeLog	2011-07-06 13:45:35 UTC (rev 90456)
@@ -1,5 +1,15 @@
 2011-07-06  Andras Becsi  <[email protected]>
 
+        Fix "warning: a `;' might be needed at the end of action code"
+
+        Unreviewed gardening.
+
+        No new tests needed.
+
+        * css/CSSGrammar.y: Future versions of Bison will not add the ';' so add it.
+
+2011-07-06  Andras Becsi  <[email protected]>
+
         [Qt] Revome unused but set shadowBlur variable after r90406.
 
         Unreviewed build fix.

Modified: trunk/Source/WebCore/css/CSSGrammar.y (90455 => 90456)


--- trunk/Source/WebCore/css/CSSGrammar.y	2011-07-06 13:41:12 UTC (rev 90455)
+++ trunk/Source/WebCore/css/CSSGrammar.y	2011-07-06 13:45:35 UTC (rev 90456)
@@ -942,7 +942,7 @@
             $$ = p->createFloatingSelectorVector();
             $$->append(p->sinkFloatingSelector($1));
         } else
-            $$ = 0
+            $$ = 0;
     }
     | simple_selector_list maybe_space ',' maybe_space simple_selector %prec UNIMPORTANT_TOK {
         if ($1 && $5) {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to