Changeset 1128:4b9d6e4b91d0 for compose.c
- Timestamp:
- 1999-10-04 23:50:19 (9 years ago)
- Branch:
- mutt-1-0-stable
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
compose.c
r1019 r1128 33 33 #include <stdlib.h> 34 34 35 #define CHECK_COUNT if (idxlen == 0) { mutt_error _("There are no attachments."); break; } 35 static const char* There_are_no_attachments = N_("There are no attachments."); 36 37 #define CHECK_COUNT if (idxlen == 0) { mutt_error _(There_are_no_attachments); break; } 36 38 37 39
