[Issue 7383] New: Blank lines in code sections cause premature section termination
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Fri Jan 27 22:40:12 PST 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7383
Summary: Blank lines in code sections cause premature section
termination
Product: D
Version: D1 & D2
Platform: All
OS/Version: All
Status: NEW
Keywords: ddoc
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: siegelords_abode at yahoo.com
--- Comment #0 from siegelords_abode at yahoo.com 2012-01-27 22:40:10 PST ---
Test case (compile it with dmd -D):
/**
---
foo;
foo;
---
*/
void test(); // 2x test.d(8): Error: function test.test unmatched --- in DDoc
comment
/**
---
foo;
---
*/
void test2(); // 2x test.d(16): Error: function test.test2 unmatched --- in
DDoc comment
/**
foo
---
foo;
---
*/
void test3(); // OK
void main() {}
I think I tracked this bug down to line 1119 in doc.c:
if (*p == '\n' && !summary && !namelen)
If I change it to this:
if (*p == '\n' && !summary && !namelen && !inCode)
It compiles the codes above and generates fine HTML. I honestly find the doc.c
code impenetrable, so I don't know if this is the right fix. The line is for
the D2 dmd, but this bug happens in D1 as well.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list