From ada93069cb5fb292bfb5f3b8a22ba6221e55d7b5 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Wed, 4 Sep 2024 17:28:25 +0200 Subject: Simplify --- src/parser.y | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/parser.y b/src/parser.y index 38d1743..e77af6f 100644 --- a/src/parser.y +++ b/src/parser.y @@ -30,10 +30,10 @@ extern const char *current_file; /* Very important that NOT is the first token declared! Code depends on it. */ %start input -%type line exp -%token NOT AND OR XOR IMPL EQUIV OPAR CPAR -%token IDENT -%token EOL +%token NOT AND OR XOR IMPL +%token EQUIV OPAR CPAR EOL +%token IDENT +%type line exp %left OR %left AND -- cgit v1.2.3