summaryrefslogtreecommitdiff
path: root/gram.y
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2021-11-28 14:40:19 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2021-11-28 14:40:19 -0800
commit684e4321fa7e96a61f45dc133816ab92a173a52d (patch)
treec9e0e76fa4deb06d7ca0852c9313e2eb7fb1f3b1 /gram.y
parent63e7fce72d704036016258b2cb55c5624f571d92 (diff)
Trim trailing whitespace from lines
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'gram.y')
-rw-r--r--gram.y18
1 files changed, 9 insertions, 9 deletions
diff --git a/gram.y b/gram.y
index d24839e..54f42f8 100644
--- a/gram.y
+++ b/gram.y
@@ -46,23 +46,23 @@ stmts : /* empty */
;
stmt : error
- | RUN
- { run_test(); }
- | TEST TESTTYPE
+ | RUN
+ { run_test(); }
+ | TEST TESTTYPE
{ change_test ($2, TRUE); }
- | FUNCTION FUNCTIONTYPE
+ | FUNCTION FUNCTIONTYPE
{ GC_change_function ($2, TRUE); }
- | LINESTYLE LINESTYLETYPE
+ | LINESTYLE LINESTYLETYPE
{ GC_change_linestyle ($2, TRUE); }
| LINESTYLE SOLID
{ GC_change_linestyle (LineSolid, TRUE); }
- | CAPSTYLE CAPSTYLETYPE
+ | CAPSTYLE CAPSTYLETYPE
{ GC_change_capstyle ($2, TRUE); }
- | CAPSTYLE ROUND
+ | CAPSTYLE ROUND
{ GC_change_capstyle (CapRound, TRUE); }
- | JOINSTYLE JOINSTYLETYPE
+ | JOINSTYLE JOINSTYLETYPE
{ GC_change_joinstyle ($2, TRUE); }
- | JOINSTYLE ROUND
+ | JOINSTYLE ROUND
{ GC_change_joinstyle (JoinRound, TRUE); }
| FILLSTYLE FILLSTYLETYPE
{ GC_change_fillstyle ($2, TRUE); }