From b7874cc364f1cc248d7884a3a0def0cfa5531633 Mon Sep 17 00:00:00 2001 From: gobwas Date: Thu, 25 Feb 2016 00:42:13 +0300 Subject: [PATCH] cleanup specials --- lexer.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/lexer.go b/lexer.go index 0ebf451..7454a2e 100644 --- a/lexer.go +++ b/lexer.go @@ -22,15 +22,12 @@ const ( var specials = []byte{ char_any, - char_separator, char_single, char_escape, char_range_open, char_range_close, char_terms_open, char_terms_close, - char_range_not, - char_range_between, } func special(c byte) bool {