case insenstive zonking
Ted Unangst tedu@tedunangst.com
Thu, 30 May 2019 18:35:31 -0400
1 files changed,
2 insertions(+),
1 deletions(-)
jump to
M
fun.go
→
fun.go
@@ -444,7 +444,8 @@ log.Printf("error scanning zonker: %s", err)
continue } if wherefore == "zword" { - re, err := regexp.Compile("\\b" + name + "\\b") + zword := "\\b(?i:" + name + ")\\b" + re, err := regexp.Compile(zword) if err != nil { log.Printf("error compiling zword: %s", err) } else {