diff options
author | Nick Clifton <nickc@redhat.com> | 2000-05-30 21:04:24 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-05-30 21:04:24 +0000 |
commit | bb08852125477c6202ce0e863b49950ef33611c1 (patch) | |
tree | 6f30d028e4ba9b623a323e6c10d4ec3c15c7f9dc /opcodes | |
parent | 38048eb91133e21141ab4bb16ef2221852eebc86 (diff) | |
download | gdb-bb08852125477c6202ce0e863b49950ef33611c1.zip gdb-bb08852125477c6202ce0e863b49950ef33611c1.tar.gz gdb-bb08852125477c6202ce0e863b49950ef33611c1.tar.bz2 |
Undo part of previous delta, so that _() calls dgettext() not gettext().
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/opintl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/opintl.h b/opcodes/opintl.h index c46ddbd..55a989a 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 |