Ignore:
Timestamp:
08/06/09 10:53:43 (3 years ago)
Author:
dom
Message:

text_printer now handles file deletions correctly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/text_printer.erl

    r77 r87  
    1111wait (Device) -> 
    1212    receive 
    13         {_, compiler, {Total, Done, _}} -> 
     13        {_, compiler, {Total, Done, _}} when Total > Done -> 
    1414            io: put_chars (Device, io_lib: fwrite ("Compiling ~p: ", [Total - Done])), 
    1515            compiling (Device); 
    16         {_, tester, {Total, Done, _}} -> 
     16        {_, tester, {Total, Done, _}} when Total > Done -> 
    1717            io: put_chars (Device, io_lib: fwrite ("Testing ~p: ", [Total - Done])), 
    1818            testing (Device); 
Note: See TracChangeset for help on using the changeset viewer.