comparison src/regex.c @ 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 923aa802303b
children 3f5cad2781e7
comparison
equal deleted inserted replaced
47336:bda7415eabf8 47337:a4b9dff21d74
1832 things about is what fits in that byte. */ 1832 things about is what fits in that byte. */
1833 #define MAX_REGNUM 255 1833 #define MAX_REGNUM 255
1834 1834
1835 /* But patterns can have more than `MAX_REGNUM' registers. We just 1835 /* But patterns can have more than `MAX_REGNUM' registers. We just
1836 ignore the excess. */ 1836 ignore the excess. */
1837 typedef unsigned regnum_t; 1837 typedef int regnum_t;
1838 1838
1839 1839
1840 /* Macros for the compile stack. */ 1840 /* Macros for the compile stack. */
1841 1841
1842 /* Since offsets can go either forwards or backwards, this type needs to 1842 /* Since offsets can go either forwards or backwards, this type needs to