diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-24 15:04:09 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-24 15:04:09 +0000 |
commit | babfbd63bce1aae7352f47da3becac684cdf995a (patch) | |
tree | cfcebfdce82ee88a362d6492e463dfc23a7bb57b | |
parent | cba878cd6a815c785823ceca9fd6518fc3a3f1be (diff) | |
download | gcc-babfbd63bce1aae7352f47da3becac684cdf995a.tar.gz |
2004-05-24 Paolo Bonzini <bonzini@gnu.org>
* system.h [!ENABLE_NLS]: dgettext takes two
parameters.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82204 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libcpp/ChangeLog | 5 | ||||
-rw-r--r-- | libcpp/system.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 84a0b8369f2..5a1c32557f3 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,8 @@ +2004-05-24 Paolo Bonzini <bonzini@gnu.org> + + * system.h [!ENABLE_NLS]: dgettext takes two + parameters. + 2004-05-23 Paolo Bonzini <bonzini@gnu.org> Moved libcpp from the gcc subdirectory to the toplevel. diff --git a/libcpp/system.h b/libcpp/system.h index c43259575a8..35773115afb 100644 --- a/libcpp/system.h +++ b/libcpp/system.h @@ -183,7 +183,7 @@ extern int errno; #else /* Stubs. */ # undef dgettext -# define dgettext(msgid) (msgid) +# define dgettext(package, msgid) (msgid) #endif #ifndef _ |