# HG changeset patch # User John W. Eaton # Date 1361999163 18000 # Node ID b6050fc0a2d91bb755a24fabf9113359f8a0fd6c # Parent edddf8903f15f47c2ea37810d9a974e80bd87af7 use %option noyywrap * lex.ll (yywrap): Delete. Use %option noyywrap instead. diff -r edddf8903f15 -r b6050fc0a2d9 libinterp/parse-tree/lex.ll --- a/libinterp/parse-tree/lex.ll Wed Feb 27 16:05:59 2013 -0500 +++ b/libinterp/parse-tree/lex.ll Wed Feb 27 16:06:03 2013 -0500 @@ -21,6 +21,7 @@ */ %option prefix = "octave_" +%option noyywrap %top { #ifdef HAVE_CONFIG_H @@ -1116,14 +1117,6 @@ } } -// Include these so that we don't have to link to libfl.a. - -int -yywrap (void) -{ - return 1; -} - // Tell us all what the current buffer is. YY_BUFFER_STATE