Eigenstate: myrddin-dev mailing list

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Typo fix in libregex.


This patch fixes a copy-paste typo preventing $ from
working properly.
---
 lib/regex/compile.myr | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/regex/compile.myr b/lib/regex/compile.myr
index 4c52d984..0d05b817 100644
--- a/lib/regex/compile.myr
+++ b/lib/regex/compile.myr
@@ -134,7 +134,7 @@ const gen = {re, t
 
 	/* meta */
 	|`Bol:	append(re, `Ibol, t)
-	|`Eol:	append(re, `Ibol, t)
+	|`Eol:	append(re, `Ieol, t)
 	|`Bow:	append(re, `Ibow, t)
 	|`Eow:	append(re, `Ieow, t)
 	|`Cap	(m, a):
-- 
2.16.2


Follow-Ups:
Re: [PATCH] Typo fix in libregex.Ori Bernstein <ori@xxxxxxxxxxxxxx>