Use my regex engine instead of the stdlib one

This commit is contained in:
2025-04-21 23:02:20 -04:00
parent 23e9c5d58d
commit 40858a673a
6 changed files with 22 additions and 11 deletions

View File

@@ -1,10 +1,10 @@
package main
import "regexp"
import "gitea.twomorecents.org/Rockingcool/kleingrep/regex"
// A regColor is a regex-color pair. The config file is read
// into a stack of this data type.
type regColor struct {
re *regexp.Regexp
re *regex.Reg
clr color
}