aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1998-04-22 19:14:03 +0000
committerTom Tromey <tromey@redhat.com>1998-04-22 19:14:03 +0000
commit4725e922ef8069da8d6c56f466c0b01eef2ea613 (patch)
tree8c05765af4955ec5c28634521e9e4fd5bd516992
parent3b4d91a17c111e260adb24d5d37fad4774cdbd11 (diff)
downloadfsf-binutils-gdb-4725e922ef8069da8d6c56f466c0b01eef2ea613.zip
fsf-binutils-gdb-4725e922ef8069da8d6c56f466c0b01eef2ea613.tar.gz
fsf-binutils-gdb-4725e922ef8069da8d6c56f466c0b01eef2ea613.tar.bz2
* libbfd-in.h: Use `gettext' and not `dgettext' for now.
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/libbfd-in.h4
2 files changed, 7 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index a7b82f3..fb422e7 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,7 @@
+Wed Apr 22 13:06:15 1998 Tom Tromey <tromey@cygnus.com>
+
+ * libbfd-in.h: Use `gettext' and not `dgettext' for now.
+
Wed Apr 22 12:53:40 1998 Ian Lance Taylor <ian@cygnus.com>
* Makefile.am (INCLUDES): Add -I$(srcdir)/../intl -I../intl.
diff --git a/bfd/libbfd-in.h b/bfd/libbfd-in.h
index 23b7eae..5c33eee 100644
--- a/bfd/libbfd-in.h
+++ b/bfd/libbfd-in.h
@@ -25,7 +25,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#ifdef ENABLE_NLS
#include <libintl.h>
-#define _(String) dgettext (PACKAGE, String)
+/* FIXME: We might want to use dgettext instead, in some cases.
+ This is still under investigation. */
+#define _(String) gettext (String)
#ifdef gettext_noop
#define N_(String) gettext_noop (String)
#else