Formatting changes.

* doc/bison.texinfo: here.
This commit is contained in:
Akim Demaille
2009-09-23 15:06:24 +02:00
parent 66381412d9
commit 298e8ad91a

View 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