]> git.saurik.com Git - bison.git/commitdiff
style changes.
authorAkim Demaille <demaille@gostai.com>
Thu, 11 Jun 2009 12:50:25 +0000 (14:50 +0200)
committerAkim Demaille <demaille@gostai.com>
Thu, 11 Jun 2009 13:27:45 +0000 (15:27 +0200)
* data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
* src/print-xml.c: Style changes.
* tests/conflicts.at: Comment changes.

ChangeLog
data/xslt/xml2dot.xsl
data/xslt/xml2xhtml.xsl
src/print-xml.c
tests/conflicts.at

index 68599de6635300c82b9368dea6b853fd90fb5ba0..c3333b9c797a81c9cc3ca22b9c60215dd5a2639e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-06-11  Akim Demaille  <demaille@gostai.com>
+
+       style changes.
+       * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
+       * src/print-xml.c: Style changes.
+       * tests/conflicts.at: Comment changes.
+
 2009-06-11  Akim Demaille  <demaille@gostai.com>
 
        xml: beware of user strings used to give a %prec to rules.
 2009-06-11  Akim Demaille  <demaille@gostai.com>
 
        xml: beware of user strings used to give a %prec to rules.
index 130692e3af8a4b94bb2bbaeccd2f95df40ea8591..aa9bde0a8408180cc9407bf305b04b35fb239cba 100644 (file)
@@ -3,7 +3,7 @@
 <!--
     xml2dot.xsl - transform Bison XML Report into DOT.
 
 <!--
     xml2dot.xsl - transform Bison XML Report into DOT.
 
-    Copyright (C) 2007, 2008 Free Software Foundation, Inc.
+    Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
 
     This file is part of Bison, the GNU Compiler Compiler.
 
 
     This file is part of Bison, the GNU Compiler Compiler.
 
         <xsl:with-param name="search" select="$search"/>
         <xsl:with-param name="replace" select="$replace"/>
       </xsl:call-template>
         <xsl:with-param name="search" select="$search"/>
         <xsl:with-param name="replace" select="$replace"/>
       </xsl:call-template>
-    </xsl:when> 
+    </xsl:when>
     <xsl:otherwise>
     <xsl:otherwise>
-      <xsl:value-of select="$subject"/>  
+      <xsl:value-of select="$subject"/>
     </xsl:otherwise>
     </xsl:otherwise>
-  </xsl:choose>            
+  </xsl:choose>
 </xsl:template>
 
 </xsl:stylesheet>
 </xsl:template>
 
 </xsl:stylesheet>
index 91dc63008f302f891aae922a04f22bda125b9111..e33f3eab16a478b3cc34cb4b80819a671225d162 100644 (file)
@@ -3,7 +3,7 @@
 <!--
     xml2html.xsl - transform Bison XML Report into XHTML.
 
 <!--
     xml2html.xsl - transform Bison XML Report into XHTML.
 
-    Copyright (C) 2007, 2008 Free Software Foundation, Inc.
+    Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
 
     This file is part of Bison, the GNU Compiler Compiler.
 
 
     This file is part of Bison, the GNU Compiler Compiler.
 
        font-size: 9pt;
       }
       a:link {
        font-size: 9pt;
       }
       a:link {
-       color: #1f00ff;
+       color: #1f00ff;
        text-decoration: none;
       }
       a:visited {
        text-decoration: none;
       }
       a:visited {
-       color: #1f00ff;
+       color: #1f00ff;
        text-decoration: none;
       }
       a:hover {
        text-decoration: none;
       }
       a:hover {
-       color: red;
+       color: red;
       }
       #menu a {
         text-decoration: underline;
       }
       #menu a {
         text-decoration: underline;
index 72e61a848b7c7b5a2d1163e65cf516017a8774c1..d8becc54c4ddd571270796e6716fef809a5ff71d 100644 (file)
@@ -248,10 +248,11 @@ print_reductions (FILE *out, int level, state *s)
   int report = false;
   int i, j;
 
   int report = false;
   int i, j;
 
-  if (reds->num == 0) {
-    xml_puts (out, level, "<reductions/>");
-    return;
-  }
+  if (reds->num == 0)
+    {
+      xml_puts (out, level, "<reductions/>");
+      return;
+    }
 
   if (yydefact[s->number] != 0)
     default_reduction = &rules[yydefact[s->number] - 1];
 
   if (yydefact[s->number] != 0)
     default_reduction = &rules[yydefact[s->number] - 1];
index bf854e8ec689259680091968d83fdc98cb8ddfea..2647c8d2230c01e755cca65060ebc1c6fa8dedd6 100644 (file)
@@ -524,9 +524,9 @@ input.y: expected 2 shift/reduce conflicts
 AT_CLEANUP
 
 
 AT_CLEANUP
 
 
-## ------------------------------ ##
-## %expect with reduce conflicts  ##
-## ------------------------------ ##
+## ------------------------------- ##
+## %expect with reduce conflicts.  ##
+## ------------------------------- ##
 
 AT_SETUP([%expect with reduce conflicts])
 
 
 AT_SETUP([%expect with reduce conflicts])
 
@@ -587,9 +587,9 @@ AT_BISON_CHECK([-o input.c input.y], 0, [],
 AT_CLEANUP
 
 
 AT_CLEANUP
 
 
-## ---------------------------- ##
-## %no-default-prec with %prec  ##
-## ---------------------------- ##
+## ----------------------------- ##
+## %no-default-prec with %prec.  ##
+## ----------------------------- ##
 
 AT_SETUP([%no-default-prec with %prec])
 
 
 AT_SETUP([%no-default-prec with %prec])
 
@@ -611,9 +611,9 @@ AT_BISON_CHECK([-o input.c input.y])
 AT_CLEANUP
 
 
 AT_CLEANUP
 
 
-## ---------------- ##
-## %default-prec    ##
-## ---------------- ##
+## --------------- ##
+## %default-prec.  ##
+## --------------- ##
 
 AT_SETUP([%default-prec])
 
 
 AT_SETUP([%default-prec])