diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-09-27 19:20:12 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-09-27 19:20:12 (GMT) |
commit | 22dc10cfbe5042f21b9d706e5e8bb41749f65786 (patch) | |
tree | 5485e95b8a8a758f2d0d0a39e611d4d9b1ad519b /src/commentscan.l | |
parent | db36de70fc9090e26c22ab288492407becb3a95e (diff) | |
download | Doxygen-22dc10cfbe5042f21b9d706e5e8bb41749f65786.zip Doxygen-22dc10cfbe5042f21b9d706e5e8bb41749f65786.tar.gz Doxygen-22dc10cfbe5042f21b9d706e5e8bb41749f65786.tar.bz2 |
Release-1.4.4-20050927
Diffstat (limited to 'src/commentscan.l')
-rw-r--r-- | src/commentscan.l | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commentscan.l b/src/commentscan.l index 1b50cb2..161b766 100644 --- a/src/commentscan.l +++ b/src/commentscan.l @@ -909,6 +909,9 @@ MAILADR [a-z_A-Z0-9.+\-]+"@"[a-z_A-Z0-9\-]+("."[a-z_A-Z0-9\-]+)+[a-z_A-Z0-9\-] addOutput(yytext[0]); addOutput(yytext[2]); } +<Comment>".," { // . with comma such as "e.g.," + addOutput(yytext); + } <Comment>(\n|\\_linebr)({B}*(\n|\\_linebr))+ { // at least one blank line (or blank line command) if (inContext!=OutputBrief) { |