You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to increase the buffer size? Now it is around 80-90k, any continuous (read: no empty lines) text longer than that results in the following error:
quex/quex/code_base/buffer/BufferFiller.i:655: terminate called after throwing an instance of 'std::runtime_error'
what(): Distance between lexeme start and current pointer exceeds buffer size.
(tried to load buffer forward). Please, compile with option
QUEX_OPTION_INFORMATIVE_BUFFER_OVERFLOW_MESSAGE
in order to get a more informative output. Most likely, one of your patterns
eats longer as you inteded it. Alternatively you might want to set the buffer
size to a greate value or use skippers (<skip: [ \n\t]> for example).
Aborted
There are several documents in the MNSZ that trigger this. Some authors had the wonderful idea of writing VERY long sentences...
The text was updated successfully, but these errors were encountered:
@DavidNemeskey I increased the buffersize to 2MB. If it is enough, please close the issue. Otherwise you can either make a pull request (for change buffersize see Makefile: line 74), or send a sample file with the long sentences which caused the error.
Is it possible to increase the buffer size? Now it is around 80-90k, any continuous (read: no empty lines) text longer than that results in the following error:
There are several documents in the MNSZ that trigger this. Some authors had the wonderful idea of writing VERY long sentences...
The text was updated successfully, but these errors were encountered: