]> git.saurik.com Git - bison.git/commitdiff
Formatting changes.
authorAkim Demaille <demaille@gostai.com>
Wed, 23 Sep 2009 13:06:24 +0000 (15:06 +0200)
committerAkim Demaille <demaille@gostai.com>
Wed, 23 Sep 2009 13:07:29 +0000 (15:07 +0200)
* doc/bison.texinfo: here.

doc/bison.texinfo

index 8f40afbee4e52833a2cba7d6160084859ebbc089..651645d9773b7e6bf6146958cd0cbf405d87b126 100644 (file)
@@ -9249,9 +9249,9 @@ exp:
 | exp "-" exp   @{ $$ = $1 - $3; @}
 | exp "*" exp   @{ $$ = $1 * $3; @}
 | exp "/" exp   @{ $$ = $1 / $3; @}
-| "(" exp ")"   @{ std::swap($$, $2); @}
+| "(" exp ")"   @{ std::swap ($$, $2); @}
 | "identifier"  @{ $$ = driver.variables[$1]; @}
-| "number"      @{ std::swap($$, $1); @};
+| "number"      @{ std::swap ($$, $1); @};
 %%
 @end example