diff options
Diffstat (limited to 'package/config/lex.zconf.c_shipped')
-rw-r--r-- | package/config/lex.zconf.c_shipped | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/config/lex.zconf.c_shipped b/package/config/lex.zconf.c_shipped index a065d5a57..aea5276e6 100644 --- a/package/config/lex.zconf.c_shipped +++ b/package/config/lex.zconf.c_shipped @@ -815,6 +815,11 @@ void new_string(void) void append_string(const char *str, int size) { int new_size = text_size + size + 1; + if (size > 70) { + fprintf (stderr, "%s:%d warning: Overlong line\n", + current_file->name, current_file->lineno); + } + if (new_size > text_asize) { new_size += START_STRSIZE - 1; new_size &= -START_STRSIZE; |