mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-23 05:09:54 +00:00
Fix broken logic in 7296c6d
Thanks @fowlmouth for pointing this problem out in IRC.
This commit is contained in:
10
src/nre.nim
10
src/nre.nim
@@ -175,10 +175,12 @@ proc `$`*(pattern: RegexMatch): string =
|
||||
|
||||
proc `==`*(a, b: Regex): bool =
|
||||
# name-to-number table is generated at init time, doesn't need to be checked
|
||||
return not a.isNil and not b.isNil and
|
||||
a.pattern == b.pattern and
|
||||
a.pcreObj == b.pcreObj and
|
||||
a.pcreExtra == b.pcreExtra
|
||||
if not a.isNil and not b.isNil:
|
||||
return a.pattern == b.pattern and
|
||||
a.pcreObj == b.pcreObj and
|
||||
a.pcreExtra == b.pcreExtra
|
||||
else:
|
||||
return system.`==`(a, b)
|
||||
|
||||
proc `==`*(a, b: RegexMatch): bool =
|
||||
# don't need to compare matchbounds, if pattern and str equal, everything
|
||||
|
||||
Reference in New Issue
Block a user