summaryrefslogtreecommitdiffstats
path: root/compose.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-10-05 06:50:34 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-10-05 06:50:34 +0000
commit36e5542d348582f86d5ceb01f0dae762b08532c6 (patch)
tree802a9b3c64c59793a438d42728db67f254e52632 /compose.c
parent14f423b46f8ed5165bb57315c396ee7612b6e149 (diff)
small fixes from Gero Treuner.
Diffstat (limited to 'compose.c')
-rw-r--r--compose.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/compose.c b/compose.c
index df006cd6..e1551967 100644
--- a/compose.c
+++ b/compose.c
@@ -37,7 +37,9 @@
#include <unistd.h>
#include <stdlib.h>
-#define CHECK_COUNT if (idxlen == 0) { mutt_error _("There are no attachments."); break; }
+static const char* There_are_no_attachments = N_("There are no attachments.");
+
+#define CHECK_COUNT if (idxlen == 0) { mutt_error _(There_are_no_attachments); break; }