From ea854aa95fffa656bcb84068cb63aba83bfe39e8 Mon Sep 17 00:00:00 2001 From: Jacob Alexander Date: Sun, 16 Aug 2015 14:41:19 -0700 Subject: [PATCH] Fixing '~' interpreting bug. --- kll.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kll.py b/kll.py index aab66d2..accbca6 100755 --- a/kll.py +++ b/kll.py @@ -273,8 +273,7 @@ def make_seqString( token ): ( ":", 0x01 ), ( "^", -0x10 ), ( "_", -0x18 ), - ( "{}|", -0x1E ), - ( "~", -0x20 ), + ( "{}|~", -0x1E ), ( "@", -0x32 ), ( "?", -0x38 ), ) -- 2.39.2