summaryrefslogtreecommitdiff
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
commite5285a46ee18b9ee5cf996f8b5065a02bfbb24dc (patch)
treee3455fdb8105bd9a2f0073bd3315618d5a5283bd
parentbdad84228ef2a1f84b612c4d7e055dd1381364bb (diff)
downloadgdb-e5285a46ee18b9ee5cf996f8b5065a02bfbb24dc.tar.gz
Undo part of previous delta, so that _() calls dgettext() not gettext().
-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