summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-09-09 19:41:30 +0000
committerRichard M. Stallman <rms@gnu.org>2002-09-09 19:41:30 +0000
commit098d42af72da164ad9ff19c1996482a0bcbe366b (patch)
tree12d00622cce8c3a4341b5a9fb5d4d8170965271c /src
parent8103074acfa7f920657295c949da681a2620c2ce (diff)
downloademacs-098d42af72da164ad9ff19c1996482a0bcbe366b.tar.gz
(regnum_t): Use signed int, not unsigned int.
Diffstat (limited to 'src')
-rw-r--r--src/regex.c2
1 files changed, 1 insertions, 1 deletions
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. */