Changeset 853:cbeae3d2d58a for attach.c
Legend:
- Unmodified
- Added
- Removed
-
attach.c
r829 r853 125 125 else 126 126 { 127 int r; 128 127 129 endwin (); 128 mutt_system (command); 129 if (entry->composetypecommand) 130 if ((r = mutt_system (command)) == -1) 131 mutt_error (_("Error running \"%s\"!"), command); 132 133 if (r != -1 && entry->composetypecommand) 130 134 { 131 135 BODY *b; … … 249 253 { 250 254 endwin (); 251 mutt_system (command); 255 if (mutt_system (command) == -1) 256 mutt_error (_("Error running \"%s\"!"), command); 252 257 } 253 258 }
