summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/text_import_scanner.l11
1 files changed, 5 insertions, 6 deletions
diff --git a/ui/text_import_scanner.l b/ui/text_import_scanner.l
index 625cc050d1..23e6d24adb 100644
--- a/ui/text_import_scanner.l
+++ b/ui/text_import_scanner.l
@@ -11,6 +11,11 @@
%option never-interactive
/*
+ * We want to stop processing when we get to the end of the input.
+ */
+%option noyywrap
+
+/*
* Prefix scanner routines with "text_import" rather than "yy", so this scanner
* can coexist with other scanners.
*/
@@ -92,9 +97,3 @@ eol \r?\n\r?
{text} { parse_token(T_TEXT, yytext); }
<<EOF>> { write_current_packet(); yyterminate(); }
-
-%%
-int yywrap(void)
-{
- return 1;
-}