changeset 3932:9a7f7ab024aa

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