Changeset 1313:cf964f0eac6a for compose.c
Legend:
- Unmodified
- Added
- Removed
-
compose.c
r1266 r1313 38 38 #include <stdlib.h> 39 39 40 #define CHECK_COUNT if (idxlen == 0) { mutt_error _("There are no attachments."); break; } 40 static const char* There_are_no_attachments = N_("There are no attachments."); 41 42 #define CHECK_COUNT if (idxlen == 0) { mutt_error _(There_are_no_attachments); break; } 41 43 42 44
