summaryrefslogtreecommitdiff
path: root/opcodes/opintl.h
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-05-30 21:04:24 +0000
committerNick Clifton <nickc@redhat.com>2000-05-30 21:04:24 +0000
commitbb08852125477c6202ce0e863b49950ef33611c1 (patch)
tree6f30d028e4ba9b623a323e6c10d4ec3c15c7f9dc /opcodes/opintl.h
parent38048eb91133e21141ab4bb16ef2221852eebc86 (diff)
downloadbinutils-gdb-bb08852125477c6202ce0e863b49950ef33611c1.tar.gz
Undo part of previous delta, so that _() calls dgettext() not gettext().
Diffstat (limited to 'opcodes/opintl.h')
-rw-r--r--opcodes/opintl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/opintl.h b/opcodes/opintl.h
index c46ddbd65f4..55a989a53ba 100644
--- a/opcodes/opintl.h
+++ b/opcodes/opintl.h
@@ -12,7 +12,7 @@
#ifdef ENABLE_NLS
# include <libintl.h>
-# define _(String) gettext (String)
+# define _(String) dgettext (PACKAGE, String)
# ifdef gettext_noop
# define N_(String) gettext_noop (String)
# else