Changeset 913:53810c1b1560 for attach.c
- Timestamp:
- 1999-07-06 15:57:06 (9 years ago)
- Branch:
- mutt-1-0-stable
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
attach.c
r905 r913 126 126 else 127 127 { 128 int r; 129 128 130 endwin (); 129 mutt_system (command); 130 if (entry->composetypecommand) 131 if ((r = mutt_system (command)) == -1) 132 mutt_error (_("Error running \"%s\"!"), command); 133 134 if (r != -1 && entry->composetypecommand) 131 135 { 132 136 BODY *b; … … 250 254 { 251 255 endwin (); 252 mutt_system (command); 256 if (mutt_system (command) == -1) 257 mutt_error (_("Error running \"%s\"!"), command); 253 258 } 254 259 }
