summaryrefslogtreecommitdiffstats
path: root/src/fortranscanner.l
diff options
context:
space:
mode:
authorAdrian Negreanu <groleo@gmail.com>2016-09-21 10:08:41 (GMT)
committerAdrian Negreanu <groleo@gmail.com>2016-09-21 10:36:50 (GMT)
commit0bdb01d4b6ced07750d8e449fd4ffab5554d8a24 (patch)
treea214f156cdffb01f4967df9f5f5c985177945f8d /src/fortranscanner.l
parent2a5357a0fac644ffb1bf49569344b9bc57603a29 (diff)
downloadDoxygen-0bdb01d4b6ced07750d8e449fd4ffab5554d8a24.zip
Doxygen-0bdb01d4b6ced07750d8e449fd4ffab5554d8a24.tar.gz
Doxygen-0bdb01d4b6ced07750d8e449fd4ffab5554d8a24.tar.bz2
flex: use %option instead of command line options.
Diffstat (limited to 'src/fortranscanner.l')
-rw-r--r--src/fortranscanner.l3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fortranscanner.l b/src/fortranscanner.l
index 0b59eb7..2f5567a 100644
--- a/src/fortranscanner.l
+++ b/src/fortranscanner.l
@@ -38,6 +38,9 @@
* - Must track yyLineNr when using REJECT, unput() or similar commands.
*/
%option never-interactive
+%option case-insensitive
+%option prefix="fortranscannerYY"
+
%{
#include <stdio.h>