Mercurial > hg > xemacs-beta
diff src/regex.c @ 5936:574f0cded429 cygwin
try to replace all nnnL or nnnUL constants with EMACS_[U]INT
author | Henry Thompson <ht@markup.co.uk> |
---|---|
date | Sun, 13 Dec 2015 13:22:58 +0000 |
parents | e2fae7783046 |
children |
line wrap: on
line diff
--- a/src/regex.c Sat Dec 12 21:49:31 2015 +0000 +++ b/src/regex.c Sun Dec 13 13:22:58 2015 +0000 @@ -1889,7 +1889,7 @@ /* This is not an arbitrary limit: the arguments which represent offsets into the pattern are two bytes long. So if 2^16 bytes turns out to be too small, many things would have to change. */ -#define MAX_BUF_SIZE (1L << 16) +#define MAX_BUF_SIZE (E1 << 16) /* Extend the buffer by twice its current size via realloc and