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

Changeset 1704

Show
Ignore:
Timestamp:
02/16/07 17:47:59 (2 years ago)
Author:
kris
Message:

reverted bogus change

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/compiler/gdc/dgccmain2.d

    r1703 r1704  
    152152            if (e.file) 
    153153            { 
    154                fprintf(stderr, "%.*s(%u): %.*s\n", e.file, e.line, e.msg); 
    155                //console (e.file)("(")(e.line)("): ")(e.msg)("\n"); 
     154               // fprintf(stderr, "%.*s(%u): %.*s\n", e.file, e.line, e.msg); 
     155               console (e.file)("(")(e.line)("): ")(e.msg)("\n"); 
    156156            } 
    157157            else 
    158158            { 
    159                fprintf(stderr, "%.*s\n", e.toUtf8()); 
    160                //console (e.toUtf8)("\n"); 
     159               // fprintf(stderr, "%.*s\n", e.toUtf8()); 
     160               console (e.toUtf8)("\n"); 
    161161            } 
    162162            e = e.next; 
     
    166166    catch (Object o) 
    167167    { 
    168         fprintf(stderr, "%.*s\n", o.toUtf8()); 
    169         //console (o.toUtf8)("\n"); 
     168        // fprintf(stderr, "%.*s\n", o.toUtf8()); 
     169        console (o.toUtf8)("\n"); 
    170170        exit(EXIT_FAILURE); 
    171171    }