diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2000-06-29 12:48:37 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2000-06-29 12:48:37 (GMT) |
commit | b389df340293ea6e861ddcd22679e3755ae51053 (patch) | |
tree | ed3f5221069d2f31596264918354113ee5e25d51 /Modules/sre.h | |
parent | 6fc9f8ed1820cc6ca36c0aab9a710e42c9c89cff (diff) | |
download | cpython-b389df340293ea6e861ddcd22679e3755ae51053.zip cpython-b389df340293ea6e861ddcd22679e3755ae51053.tar.gz cpython-b389df340293ea6e861ddcd22679e3755ae51053.tar.bz2 |
- renamed "tolower" hook (it happened to work with
my compiler, but not on guido's box...)
Diffstat (limited to 'Modules/sre.h')
-rw-r--r-- | Modules/sre.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/sre.h b/Modules/sre.h index a5f0aeb..a7786ed 100644 --- a/Modules/sre.h +++ b/Modules/sre.h @@ -62,7 +62,7 @@ typedef struct { int stacksize; int stackbase; /* hooks */ - SRE_TOLOWER_HOOK tolower; + SRE_TOLOWER_HOOK lower; } SRE_STATE; typedef struct { |