Skip to content

Commit 3190d60

Browse files
c000andreasabel
authored andcommitted
Fix a graph character class
1 parent 683d787 commit 3190d60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Text/Regex/TDFA/Pattern.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ decodeCharacterClass (PatternSetCharacterClass s) =
201201
"digit" -> ['0'..'9']
202202
"punct" -> ['\33'..'\47']++['\58'..'\64']++['\91'..'\96']++['\123'..'\126']
203203
"alpha" -> ['A'..'Z']++['a'..'z']
204-
"graph" -> ['\41'..'\126']
204+
"graph" -> ['\33'..'\126']
205205
"space" -> "\t\n\v\f\r "
206206
"blank" -> "\t "
207207
"lower" -> ['a'..'z']

0 commit comments

Comments
 (0)