Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3032

Show
Ignore:
Timestamp:
12/14/07 13:57:28 (1 year ago)
Author:
sean
Message:

Some simple code reformatting.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/install/windows/build_tango.d

    r2913 r3032  
    1919        path = args[1] ~ "\\tango"; 
    2020 
    21     outf.write ("-c -n -p256\ntango-user-dmd.lib\n"); 
    22     foreach(file; scan( path, ".d" ).files ) 
     21    outf.write( "-c -n -p256\ntango-user-dmd.lib\n" ); 
     22    foreach( file; scan( path, ".d" ).files ) 
    2323    { 
    2424        if( filter( file ) ) 
     
    2828              "-of" ~ objname( file ) ~ " " ~ 
    2929              file.toString ); 
    30         outf.write(temp), outf.write("\n"); 
     30        outf.write( temp ~ "\n" ); 
    3131        list ~= " " ~ temp; 
    3232        delete temp;