Message97039
Looking a bit more at the patch:
+ /* miss: check if previous character is part of pattern */
+ if (!(mask & (1 << (s[i-1] & 0x1F))))
From what I understand, this should be s[i-m]. Same here:
+ /* skip: check if previous character is part of pattern */
+ if (!(mask & (1 << (s[i-1] & 0x1F)))) |
|
| Date |
User |
Action |
Args |
| 2009-12-30 16:38:59 | pitrou | set | recipients:
+ pitrou, effbot, flox |
| 2009-12-30 16:38:59 | pitrou | set | messageid: <[email protected]> |
| 2009-12-30 16:38:58 | pitrou | link | issue7462 messages |
| 2009-12-30 16:38:57 | pitrou | create | |
|