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

Changes between Version 3 and Version 4 of MakeAllHtmlExample

Show
Ignore:
Author:
jcc7 (IP: 192.149.244.9)
Timestamp:
12/12/06 17:09:48 (17 years ago)
Comment:

work-around for apparent D2HTML bug

Legend:

Unmodified
Added
Removed
Modified
  • MakeAllHtmlExample

    v3 v4  
    6666    { 
    6767        if (de.isdir) 
    68             listdir(de.name, &callback); 
     68            listdir(de.name, & callback); 
    6969        else 
    7070            if(r.test(de.name) &&  getBaseName(de.name) != "all.html") 
    7373        return true; 
    7474    } 
    75     listdir(pathname, &callback); 
     75    listdir(pathname, & callback); 
    7676    return outputData.dup; 
    7777}