diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-11-18 14:52:40 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-11-18 14:52:40 (GMT) |
commit | c736b03f16a88b6654ff9c1ae680e46b86e50218 (patch) | |
tree | 066b0bffed86445dbe3d494eaf31515f5b743e8c /src/doc.l | |
parent | fba77445463c412e6b514174df590fdce58838cf (diff) | |
download | Doxygen-c736b03f16a88b6654ff9c1ae680e46b86e50218.zip Doxygen-c736b03f16a88b6654ff9c1ae680e46b86e50218.tar.gz Doxygen-c736b03f16a88b6654ff9c1ae680e46b86e50218.tar.bz2 |
Release-1.2.12
Diffstat (limited to 'src/doc.l')
-rw-r--r-- | src/doc.l | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -406,7 +406,7 @@ static void skipLine(OutputDocInterface &od,const char *key) found=TRUE; od.writeString(" "); parseCode(od,className,s,exampleDoc,exampleName); - od.writeString("\n"); + //od.writeString("\n"); } else if (includeFileOffset==includeFileLength) found=TRUE; } @@ -451,7 +451,7 @@ static void showLine(OutputDocInterface &od,const char *key) { od.writeString(" "); parseCode(od,className,s,exampleDoc,exampleName); - od.writeString("\n"); + //od.writeString("\n"); } } @@ -469,7 +469,7 @@ static void showUntil(OutputDocInterface &od,const char *key) { od.writeString(" "); parseCode(od,className,s,exampleDoc,exampleName); - od.writeString("\n"); + //od.writeString("\n"); if (s.find(key)!=-1) found=TRUE; } if (includeFileOffset==includeFileLength) found=TRUE; |