diff options
Diffstat (limited to 'regexec.c')
| -rw-r--r-- | regexec.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -158,7 +158,7 @@ static struct sset *pickss(struct vars *, struct dfa *, chr *, chr *); static inline chr * nextchr(struct vars *v, chr *s) { - if (v->eflags & REG_RAW) { + if (v->g->cflags & REG_RAW) { return s+1; } @@ -180,7 +180,7 @@ nextchr(struct vars *v, chr *s) static inline chr * prevchr(struct vars *v, chr *s) { - if (v->eflags & REG_RAW) { + if (v->g->cflags & REG_RAW) { return s-1; } @@ -194,7 +194,7 @@ prevchr(struct vars *v, chr *s) static inline pchr getchr(struct vars *v, const chr *s, const chr *end) { - if (v->eflags & REG_RAW) { + if (v->g->cflags & REG_RAW) { return *s; } |
