summaryrefslogtreecommitdiffstats
path: root/gettext.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-06-14 08:37:03 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-06-14 08:37:03 +0000
commit22a9b57716389d23b7ce97c4929fbcb11add4f80 (patch)
tree0f072aa2f91b52f172d13453f0645833fae9d38d /gettext.c
parent667b2fed72131398cb02ba89e8b96c85df3478d4 (diff)
Make sure --disable-nls works. (EGE)
Diffstat (limited to 'gettext.c')
-rw-r--r--gettext.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gettext.c b/gettext.c
index a881ba8f..09cdef58 100644
--- a/gettext.c
+++ b/gettext.c
@@ -9,6 +9,8 @@
#include "lib.h"
#include "charset.h"
+#ifdef ENABLE_NLS
+
/*
* One day, gettext will return strings in the appropriate
* encoding. In the meantime, we use this code to handle
@@ -135,3 +137,5 @@ char *mutt_gettext (const char *message)
return mp->data;
}
+
+#endif /* ENABLE_NLS */