aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2012-04-26 20:31:43 +0000
committerDimitri Sokolyuk <demon@dim13.org>2012-04-26 20:31:43 +0000
commit4f1936d1291a07abd5ceefff4b2e5e1a919e94fb (patch)
tree42a25f7827873e8ffd2241d9840d9cb78f9fc3f3
parent03b76a8c78f4aecb272eca94d561ba44298b253a (diff)
fix literals
-rw-r--r--gramar.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/gramar.y b/gramar.y
index a55045d..01c1a85 100644
--- a/gramar.y
+++ b/gramar.y
@@ -186,8 +186,8 @@ operand
}
| expr
{
- if ($1 < 0x20)
- $$ = 0x20 + $1;
+ if ($1 < 0x1f)
+ $$ = 0x21 + $1;
else {
$$ = 0x1f;
push($1, NULL);