summaryrefslogtreecommitdiffstats
path: root/src/config.xml
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2021-02-12 17:02:11 (GMT)
committeralbert-github <albert.tests@gmail.com>2021-02-12 17:02:11 (GMT)
commit77c63397e832a7ad5c618b1aed7fc5de25ff6e89 (patch)
treee885da91ffeb6ab98455c4fd31598f5fd467d047 /src/config.xml
parent4d8e0f3abdf682e323db79aec176854f2a8aa699 (diff)
downloadDoxygen-77c63397e832a7ad5c618b1aed7fc5de25ff6e89.zip
Doxygen-77c63397e832a7ad5c618b1aed7fc5de25ff6e89.tar.gz
Doxygen-77c63397e832a7ad5c618b1aed7fc5de25ff6e89.tar.bz2
Adding support for lex files
Adding support for lex. The lex files consist of a mixture of lex specific structures, that are handled in the the lexcode.l and lexscanner.l, abd C code that is handled by the C parsers (hence the rules used are partly copied from scanner.l). Special attention has been paid to memberdef.cpp as the initial values should not be handled by the lex parsers but by the C parsers.
Diffstat (limited to 'src/config.xml')
-rw-r--r--src/config.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.xml b/src/config.xml
index d9b29aa..8526a2b 100644
--- a/src/config.xml
+++ b/src/config.xml
@@ -647,7 +647,7 @@ Go to the <a href="commands.html">next</a> section or return to the
With this tag you can assign which parser to use for a given extension.
Doxygen has a built-in mapping, but you can override or extend it using this tag.
The format is <code>ext=language</code>, where \c ext is a file extension, and language is one of
- the parsers supported by doxygen: IDL, Java, JavaScript, Csharp (C#), C, C++, D, PHP,
+ the parsers supported by doxygen: IDL, Java, JavaScript, Csharp (C#), C, C++, Lex, D, PHP,
md (Markdown), Objective-C, Python, Slice, VHDL, Fortran (fixed format Fortran: FortranFixed,
free formatted Fortran: FortranFree, unknown formatted Fortran: Fortran. In
the later case the parser tries to guess whether the code is fixed or free
@@ -1434,6 +1434,7 @@ FILE_VERSION_FILTER = "cleartool desc -fmt \%Vn"
<value name='*.hxx'/>
<value name='*.hpp'/>
<value name='*.h++'/>
+ <value name='*.l'/>
<value name='*.cs'/>
<value name='*.d'/>
<value name='*.php'/>