From 098d42af72da164ad9ff19c1996482a0bcbe366b Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 9 Sep 2002 19:41:30 +0000 Subject: [PATCH] (regnum_t): Use signed int, not unsigned int. --- src/regex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/regex.c b/src/regex.c index 317e630f72a..43351b380de 100644 --- a/src/regex.c +++ b/src/regex.c @@ -1834,7 +1834,7 @@ static int analyse_first _RE_ARGS ((re_char *p, re_char *pend, /* But patterns can have more than `MAX_REGNUM' registers. We just ignore the excess. */ -typedef unsigned regnum_t; +typedef int regnum_t; /* Macros for the compile stack. */ -- 2.39.5