diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2009-08-25 11:45:32 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2009-08-25 11:45:32 (GMT) |
commit | ab2543160a96dae45f256daaeca7e093f65db6ad (patch) | |
tree | 1eb87ba34df4235398b79f257b2af06a38a3f2b2 /src/commentscan.l | |
parent | 2e1a370214bb47d28fed954396330ab2e33bc5a4 (diff) | |
download | Doxygen-ab2543160a96dae45f256daaeca7e093f65db6ad.zip Doxygen-ab2543160a96dae45f256daaeca7e093f65db6ad.tar.gz Doxygen-ab2543160a96dae45f256daaeca7e093f65db6ad.tar.bz2 |
Release-1.6.1
Diffstat (limited to 'src/commentscan.l')
-rw-r--r-- | src/commentscan.l | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/commentscan.l b/src/commentscan.l index 88f4008..d7d064d 100644 --- a/src/commentscan.l +++ b/src/commentscan.l @@ -1021,7 +1021,7 @@ RCSTAG "$"{ID}":"[^\n$]+"$" <Comment>^{B}*"."{B}*/\n { // explicit end autolist: e.g " ." addOutput(yytext); } -<Comment>"."[a-z_A-Z0-9] { // . at start or in the middle of a word +<Comment>("."+)[a-z_A-Z0-9] { // . at start or in the middle of a word, or ellipsis addOutput(yytext); } <Comment>".\\"[ \t] { // . with escaped space. @@ -2626,6 +2626,7 @@ static void groupAddDocs(Entry *e,const char *fileName) { info->doc = g_memberGroupDocs; info->docFile = fileName; + info->setRefItems(e->sli); } e->doc.resize(0); e->brief.resize(0); |