summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-09-03 19:01:24 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-09-03 19:01:24 (GMT)
commit9bba9e47f52e5df17ecfc18ed0726031c71071fd (patch)
treebf6959396c585f5c2a84345407526b8ef6e76dd6
parenta82ce3261ebca605d6d122c08a75bddd58e45e06 (diff)
parent759a19a09a720bc71e73e577b7d6b9851c59e70b (diff)
downloadDoxygen-9bba9e47f52e5df17ecfc18ed0726031c71071fd.zip
Doxygen-9bba9e47f52e5df17ecfc18ed0726031c71071fd.tar.gz
Doxygen-9bba9e47f52e5df17ecfc18ed0726031c71071fd.tar.bz2
Merge pull request #29 from albert-github/feature/bug_706520_2
Bug 706520 - Fortran: in body documentation lands on wrong place
-rw-r--r--src/fortranscanner.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fortranscanner.l b/src/fortranscanner.l
index 327febf..c6b47d3 100644
--- a/src/fortranscanner.l
+++ b/src/fortranscanner.l
@@ -2109,7 +2109,7 @@ static void handleCommentBlock(const QCString &doc,bool brief)
int lineNr = brief ? current->briefLine : current->docLine;
while (parseCommentBlock(
g_thisParser,
- docBlockInBody ? last_entry : current,
+ docBlockInBody ? subrCurrent.first() : current,
doc, // text
yyFileName, // file
lineNr,