--- parser3/src/include/pa_table.h 2005/08/09 08:14:50 1.58 +++ parser3/src/include/pa_table.h 2006/11/02 12:07:25 1.61 @@ -8,7 +8,7 @@ #ifndef PA_TABLE_H #define PA_TABLE_H -static const char * const IDENT_TABLE_H="$Date: 2005/08/09 08:14:50 $"; +static const char * const IDENT_TABLE_H="$Date: 2006/11/02 12:07:25 $"; #include "pa_types.h" #include "pa_hash.h" @@ -96,8 +96,8 @@ public: size_t saved_current=current(); size_t row=o.offset; if(o.reverse) { // reverse - for(size_t to=row-o.limit; row>=to; --row) { - set_current(row); + for(size_t i=0; i<=o.limit; i++) { + set_current(o.offset-i); if(func(*this, info)) return true;