shithub: trueawk

Download patch

ref: 66a543eeadeed25d152a53c67ff0dd25ac017730
parent: 9ebe940cf3c652b0e373634d2aa4a00b8395b636
parent: f7c8148865033ff0e851c31da026bf10f250251e
author: Arnold D. Robbins <arnold@skeeve.com>
date: Wed Aug 24 08:03:10 EDT 2022

Merge branch 'master' into unicode-support

--- a/lex.c
+++ b/lex.c
@@ -525,7 +525,7 @@
 	char *bp;
 
 	if (buf == NULL && (buf = (char *) malloc(bufsz)) == NULL)
-		FATAL("out of space for rex expr");
+		FATAL("out of space for reg expr");
 	bp = buf;
 	for ( ; (c = input()) != '/' && c != 0; ) {
 		if (!adjbuf(&buf, &bufsz, bp-buf+3, 500, &bp, "regexpr"))
--