Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changeset 788

Show
Ignore:
Timestamp:
12/06/10 19:27:59 (14 years ago)
Author:
walter
Message:

bugzilla 3554 Ddoc generates invalid output for documentation comments with non paired parantheses

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/dmd-1.x/src/doc.c

    r620 r788  
    114114\n\ 
    115115B =     <b>$0</b>\n\ 
    116116I =     <i>$0</i>\n\ 
    117117U =     <u>$0</u>\n\ 
    118118P =     <p>$0</p>\n\ 
    119119DL =    <dl>$0</dl>\n\ 
    120120DT =    <dt>$0</dt>\n\ 
    121121DD =    <dd>$0</dd>\n\ 
    122122TABLE = <table>$0</table>\n\ 
    123123TR =    <tr>$0</tr>\n\ 
    124124TH =    <th>$0</th>\n\ 
    125125TD =    <td>$0</td>\n\ 
    126126OL =    <ol>$0</ol>\n\ 
    127127UL =    <ul>$0</ul>\n\ 
    128128LI =    <li>$0</li>\n\ 
    129129BIG =   <big>$0</big>\n\ 
    130130SMALL = <small>$0</small>\n\ 
    131131BR =    <br>\n\ 
    132132LINK =  <a href=\"$0\">$0</a>\n\ 
    133133LINK2 = <a href=\"$1\">$+</a>\n\ 
     134LPAREN= (\n\ 
     135RPAREN= )\n\ 
    134136\n\ 
    135137RED =   <font color=red>$0</font>\n\ 
    136138BLUE =  <font color=blue>$0</font>\n\ 
    137139GREEN = <font color=green>$0</font>\n\ 
    138140YELLOW =<font color=yellow>$0</font>\n\ 
    139141BLACK = <font color=black>$0</font>\n\ 
    140142WHITE = <font color=white>$0</font>\n\ 
    141143\n\ 
    142144D_CODE = <pre class=\"d_code\">$0</pre>\n\ 
    143145D_COMMENT = $(GREEN $0)\n\ 
    144146D_STRING  = $(RED $0)\n\ 
    145147D_KEYWORD = $(BLUE $0)\n\ 
    146148D_PSYMBOL = $(U $0)\n\ 
    147149D_PARAM   = $(I $0)\n\ 
    148150\n\ 
    149151DDOC_COMMENT   = <!-- $0 -->\n\ 
    150152DDOC_DECL      = $(DT $(BIG $0))\n\ 
    151153DDOC_DECL_DD   = $(DD $0)\n\ 
    152154DDOC_DITTO     = $(BR)$0\n\ 
    153155DDOC_SECTIONS  = $0\n\ 
  • trunk/src/doc.c

    r760 r788  
    114114\n\ 
    115115B =     <b>$0</b>\n\ 
    116116I =     <i>$0</i>\n\ 
    117117U =     <u>$0</u>\n\ 
    118118P =     <p>$0</p>\n\ 
    119119DL =    <dl>$0</dl>\n\ 
    120120DT =    <dt>$0</dt>\n\ 
    121121DD =    <dd>$0</dd>\n\ 
    122122TABLE = <table>$0</table>\n\ 
    123123TR =    <tr>$0</tr>\n\ 
    124124TH =    <th>$0</th>\n\ 
    125125TD =    <td>$0</td>\n\ 
    126126OL =    <ol>$0</ol>\n\ 
    127127UL =    <ul>$0</ul>\n\ 
    128128LI =    <li>$0</li>\n\ 
    129129BIG =   <big>$0</big>\n\ 
    130130SMALL = <small>$0</small>\n\ 
    131131BR =    <br>\n\ 
    132132LINK =  <a href=\"$0\">$0</a>\n\ 
    133133LINK2 = <a href=\"$1\">$+</a>\n\ 
     134LPAREN= (\n\ 
     135RPAREN= )\n\ 
    134136\n\ 
    135137RED =   <font color=red>$0</font>\n\ 
    136138BLUE =  <font color=blue>$0</font>\n\ 
    137139GREEN = <font color=green>$0</font>\n\ 
    138140YELLOW =<font color=yellow>$0</font>\n\ 
    139141BLACK = <font color=black>$0</font>\n\ 
    140142WHITE = <font color=white>$0</font>\n\ 
    141143\n\ 
    142144D_CODE = <pre class=\"d_code\">$0</pre>\n\ 
    143145D_COMMENT = $(GREEN $0)\n\ 
    144146D_STRING  = $(RED $0)\n\ 
    145147D_KEYWORD = $(BLUE $0)\n\ 
    146148D_PSYMBOL = $(U $0)\n\ 
    147149D_PARAM   = $(I $0)\n\ 
    148150\n\ 
    149151DDOC_COMMENT   = <!-- $0 -->\n\ 
    150152DDOC_DECL      = $(DT $(BIG $0))\n\ 
    151153DDOC_DECL_DD   = $(DD $0)\n\ 
    152154DDOC_DITTO     = $(BR)$0\n\ 
    153155DDOC_SECTIONS  = $0\n\