aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/eqn/eqn.y
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/eqn/eqn.y')
-rw-r--r--src/cmd/eqn/eqn.y10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cmd/eqn/eqn.y b/src/cmd/eqn/eqn.y
index 74796d7f..952478ca 100644
--- a/src/cmd/eqn/eqn.y
+++ b/src/cmd/eqn/eqn.y
@@ -44,8 +44,8 @@ tbox : TO box %prec TO { $$ = $2; }
;
box : '{' eqn '}' { $$ = $2; }
- | QTEXT { text(QTEXT, (char *) $1); }
- | CONTIG { text(CONTIG, (char *) $1); }
+ | QTEXT { text(QTEXT, (char *)$1); }
+ | CONTIG { text(CONTIG, (char *)$1); }
| SPACE { text(SPACE, (char *) 0); }
| THIN { text(THIN, (char *) 0); }
| TAB { text(TAB, (char *) 0); }
@@ -80,10 +80,10 @@ box : '{' eqn '}' { $$ = $2; }
int : INT { setintegral(); }
;
-fwd : FWD text { $$ = atoi((char *) $1); } ;
+fwd : FWD text { $$ = atoi((char *)$1); } ;
up : UP text { $$ = atoi((char *) $1); } ;
-back : BACK text { $$ = atoi((char *) $1); } ;
-down : DOWN text { $$ = atoi((char *) $1); } ;
+back : BACK text { $$ = atoi((char *)$1); } ;
+down : DOWN text { $$ = atoi((char *)$1); } ;
diacrit : HAT { $$ = HAT; }
| VEC { $$ = VEC; }