summaryrefslogtreecommitdiff
path: root/src/ragel/ragel.rl
diff options
context:
space:
mode:
Diffstat (limited to 'src/ragel/ragel.rl')
-rw-r--r--src/ragel/ragel.rl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ragel/ragel.rl b/src/ragel/ragel.rl
index 48c4229..655bb9c 100644
--- a/src/ragel/ragel.rl
+++ b/src/ragel/ragel.rl
@@ -20,7 +20,7 @@
word = alnum*;
token = ' ' | punct;
until_err = (any when { fpc != *error })*;
- search_err := ((any | token %{ *error = fpc; }) when { fpc != ragel->p })*;
+ search_err := ((any | token %{ *error = fpc; }) when { fpc != ragel->pe && fpc <= ragel->p })*;
print_err := (until_err %red <: word %reset <: (any - '\n')*) ${ fputc(fc, stderr); } >lead %!end %/end;
print_mark := (until_err ${ fputc(' ', stderr); } %red %mark <: any word $tail) >lead %!end %/end;
}%%