]> git.saurik.com Git - bison.git/commitdiff
Formatting changes.
authorAkim Demaille <demaille@gostai.com>
Fri, 25 Jul 2008 19:29:43 +0000 (21:29 +0200)
committerAkim Demaille <demaille@gostai.com>
Tue, 4 Nov 2008 20:43:51 +0000 (21:43 +0100)
* data/lalr1-fusion.cc, src/parse-gram.y: here.

ChangeLog
data/lalr1-fusion.cc
src/parse-gram.y

index ed83875d8dc2f9ab6359d08325df80e1b56c8bd6..0e20087a2997a523bdfa25e7ebed7524efbeed8d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-11-04  Akim Demaille  <demaille@gostai.com>
+
+       Formatting changes.
+       * data/lalr1-fusion.cc, src/parse-gram.y: here.
+
 2008-11-04  Akim Demaille  <demaille@gostai.com>
 
        Formatting changes.
index 4c41ade4b54a68f317cd4fdfb133f2a91fa7e1df..63bc1d5ab57e794cda41527259526e520da8ddab 100644 (file)
@@ -949,9 +949,9 @@ m4_ifdef([b4_lex_param], [, ]b4_lex_param))[;
 
        if (yychar <= yyeof_)
          {
-         /* Return failure if at end of input.  */
-         if (yychar == yyeof_)
-           YYABORT;
+            /* Return failure if at end of input.  */
+            if (yychar == yyeof_)
+              YYABORT;
          }
        else
          {
index fa74d8d858a2d01f9abe13fee902154dbf95339b..745dbc4e2d899db90732d040b510fd3a8880b81f 100644 (file)
@@ -352,9 +352,9 @@ grammar_declaration:
 ;
 
 
-/*----------*
- | %union.  |
- *----------*/
+/*---------.
+| %union.  |
+`---------*/
 
 %token PERCENT_UNION "%union";
 
@@ -541,14 +541,14 @@ rhs:
 ;
 
 
-/*----------------------------*
- | variable and content.opt.  |
- *---------------------------*/
+/*---------------------------.
+| variable and content.opt.  |
+`---------------------------*/
 
 variable:
   ID
-  | STRING { $$ = uniqstr_new ($1); } /* deprecated and not M4-friendly */
-  ;
+| STRING { $$ = uniqstr_new ($1); } /* deprecated and not M4-friendly */
+;
 
 /* Some content or empty by default. */
 content.opt:
@@ -560,9 +560,9 @@ content.opt:
 ;
 
 
-/*-------------*
- | braceless.  |
- *-------------*/
+/*------------.
+| braceless.  |
+`------------*/
 
 braceless:
   "{...}"
@@ -577,9 +577,9 @@ braceless:
 ;
 
 
-/*---------------*
- | Identifiers.  |
- *---------------*/
+/*--------------.
+| Identifiers.  |
+`--------------*/
 
 /* Identifiers are returned as uniqstr values by the scanner.
    Depending on their use, we may need to make them genuine symbols.  */