summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 94dae81..e9061b5 100644
--- a/src/main.c
+++ b/src/main.c
@@ -175,7 +175,7 @@ is_punct(const char *p)
if (strchr("|=", p[0]) != NULL && p[1] == '>')
return 2;
- return (strchr("+-*/%()<>,;{}[]=&^|", p[0]) != NULL);
+ return (strchr("+-*/\\%()<>,;{}[]=&^|", p[0]) != NULL);
}
static unsigned char
@@ -713,6 +713,10 @@ mul(Token **rest, Token *tok)
continue;
}
+ if (equal(tok, "\\")) {
+ node = new_binary(NOD_DIV, tok, primary(&tok, tok->next), node);
+ }
+
if (equal(tok, "%")) {
node = new_binary(NOD_MOD, tok, node, primary(&tok, tok->next));
continue;