changeset 47337:a4b9dff21d74

(regnum_t): Use signed int, not unsigned int.
author Richard M. Stallman <rms@gnu.org>
date Mon, 09 Sep 2002 19:41:30 +0000
parents bda7415eabf8
children 03f141eea602
files src/regex.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/regex.c	Mon Sep 09 19:40:44 2002 +0000
+++ b/src/regex.c	Mon Sep 09 19:41:30 2002 +0000
@@ -1834,7 +1834,7 @@
 
 /* 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.  */