mirror of
https://github.com/cheat/cheat.git
synced 2025-09-01 17:48:30 +02:00
chore(deps): update dependencies
This commit is contained in:
2
vendor/github.com/dlclark/regexp2/syntax/prefix.go
generated
vendored
2
vendor/github.com/dlclark/regexp2/syntax/prefix.go
generated
vendored
@ -712,7 +712,7 @@ func (b *BmPrefix) Scan(text []rune, index, beglimit, endlimit int) int {
|
||||
|
||||
if chTest != b.pattern[match] {
|
||||
advance = b.positive[match]
|
||||
if (chTest & 0xFF80) == 0 {
|
||||
if chTest < 128 {
|
||||
test2 = (match - startmatch) + b.negativeASCII[chTest]
|
||||
} else if chTest < 0xffff && len(b.negativeUnicode) > 0 {
|
||||
unicodeLookup = b.negativeUnicode[chTest>>8]
|
||||
|
Reference in New Issue
Block a user