extmod: Update re1.5 to 0.7.

Includes static function fix and all the previous improvements and fixes
by @dpgeorge.
This commit is contained in:
Paul Sokolovsky 2015-03-18 23:40:11 +02:00
parent 0e96d1b3f1
commit d7194f1b8e

View File

@ -66,7 +66,7 @@ int re1_5_sizecode(const char *re)
#define EMIT(at, byte) code[at] = byte
const char *_compilecode(const char *re, ByteProg *prog)
static const char *_compilecode(const char *re, ByteProg *prog)
{
char *code = prog->insts;
int pc = prog->bytelen;