summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2014-03-09 18:45:05 (GMT)
committeralbert-github <albert.tests@gmail.com>2014-03-09 18:45:05 (GMT)
commit17c5b6160d013d118296663e133cf8884c74a939 (patch)
treefcd2729484d6b50f44c975a378862aef45885911
parent8eeaae0b06fd320745f22efe176e0f19d6c8e2a6 (diff)
downloadDoxygen-17c5b6160d013d118296663e133cf8884c74a939.zip
Doxygen-17c5b6160d013d118296663e133cf8884c74a939.tar.gz
Doxygen-17c5b6160d013d118296663e133cf8884c74a939.tar.bz2
Bug 643618 - Fortran: variable with name "type" confuses Doxygen
Most problems were solved in version 1.8.5 but the underscore character (_) had not been incorporated, this is done with this patch.
-rw-r--r--src/fortranscanner.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fortranscanner.l b/src/fortranscanner.l
index 623f587..aa59bf0 100644
--- a/src/fortranscanner.l
+++ b/src/fortranscanner.l
@@ -567,7 +567,7 @@ SCOPENAME ({ID}{BS}"::"{BS})*
/*------- type definition -------------------------------------------------------------------------------*/
-<Start,ModuleBody>^{BS}type/[^a-z0-9] {
+<Start,ModuleBody>^{BS}type/[^a-z0-9_] {
if(YY_START == Start)
{
addModule(NULL);