forked from mirror/glob
cleanup specials
This commit is contained in:
parent
084e0669a3
commit
b7874cc364
3
lexer.go
3
lexer.go
|
@ -22,15 +22,12 @@ const (
|
||||||
|
|
||||||
var specials = []byte{
|
var specials = []byte{
|
||||||
char_any,
|
char_any,
|
||||||
char_separator,
|
|
||||||
char_single,
|
char_single,
|
||||||
char_escape,
|
char_escape,
|
||||||
char_range_open,
|
char_range_open,
|
||||||
char_range_close,
|
char_range_close,
|
||||||
char_terms_open,
|
char_terms_open,
|
||||||
char_terms_close,
|
char_terms_close,
|
||||||
char_range_not,
|
|
||||||
char_range_between,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func special(c byte) bool {
|
func special(c byte) bool {
|
||||||
|
|
Loading…
Reference in New Issue