Changeset 913:53810c1b1560 for compose.c

Show
Ignore:
Timestamp:
1999-07-06 15:57:06 (9 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
mutt-1-0-stable
Message:

Applying Liviu Daia's signal handling patches. They work fine with
unstable for months now, so we may wish to use them with stable.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • compose.c

    r760 r913  
    10131013        endwin (); 
    10141014        snprintf (buf, sizeof (buf), "%s -x %s", NONULL(Ispell), msg->content->filename); 
    1015         mutt_system (buf); 
    1016         mutt_update_encoding(msg->content); 
     1015        if (mutt_system (buf) == -1) 
     1016          mutt_error (_("Error running \"%s\"!"), buf); 
     1017        else 
     1018          mutt_update_encoding (msg->content); 
    10171019        break; 
    10181020