diff options
author | Guido van Rossum <guido@python.org> | 1993-04-15 15:33:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-04-15 15:33:52 (GMT) |
commit | acbe8da4f886ad733401631a870ff58f8c0ad9a4 (patch) | |
tree | 648c6b7454c184e30332fc612826fd45f64cd188 /Modules/regexpr.h | |
parent | 8a0c3456c2020d1a1f87619c4651e4eab831938a (diff) | |
download | cpython-acbe8da4f886ad733401631a870ff58f8c0ad9a4.zip cpython-acbe8da4f886ad733401631a870ff58f8c0ad9a4.tar.gz cpython-acbe8da4f886ad733401631a870ff58f8c0ad9a4.tar.bz2 |
(I suggest a recompile after getting this, the ceval.c bugfix may be crucial!)
* Makefile: removed superfluous AR=ar, fixed misleading comment.
* ceval.c: fixed debugging code; save/restore errors in locals_2_fast.
* intrcheck.c: for SunOS etc., turn off syscall resumption.
* regexpr.h: bump number of registers to 100.
Diffstat (limited to 'Modules/regexpr.h')
-rw-r--r-- | Modules/regexpr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/regexpr.h b/Modules/regexpr.h index c0276ae..ef46554 100644 --- a/Modules/regexpr.h +++ b/Modules/regexpr.h @@ -24,7 +24,7 @@ Last modified: Mon Nov 4 15:49:46 1991 ylo #define HAVE_PROTOTYPES #endif -#define RE_NREGS 10 /* number of registers available */ +#define RE_NREGS 100 /* number of registers available */ typedef struct re_pattern_buffer { |