diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-01-27 01:43:17 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-01-26 18:43:17 -0700 |
commit | ab87f8c8d19d6b0954516d7f1d8733f42076be81 (patch) | |
tree | e7daf0f28ecb5da9660b21aee68e6919f846c183 /gcc/cppmain.c | |
parent | 01b4cf2b7a1fe9a3f6f070217be5f93854c54545 (diff) | |
download | gcc-ab87f8c8d19d6b0954516d7f1d8733f42076be81.zip gcc-ab87f8c8d19d6b0954516d7f1d8733f42076be81.tar.gz gcc-ab87f8c8d19d6b0954516d7f1d8733f42076be81.tar.bz2 |
Merge in gcc2 snapshot 19980929. See gcc/ChangeLog and gcc/FSFChangeLog for
details.
From-SVN: r24879
Diffstat (limited to 'gcc/cppmain.c')
-rw-r--r-- | gcc/cppmain.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/cppmain.c b/gcc/cppmain.c index 672c0f4..764114f 100644 --- a/gcc/cppmain.c +++ b/gcc/cppmain.c @@ -30,6 +30,7 @@ extern char *getenv (); #endif /* not EMACS */ #include "cpplib.h" +#include "intl.h" char *progname; @@ -68,6 +69,10 @@ main (argc, argv) while (p != argv[0] && p[-1] != '/') --p; progname = p; + setlocale (LC_MESSAGES, ""); + bindtextdomain (PACKAGE, localedir); + textdomain (PACKAGE); + cpp_reader_init (&parse_in); parse_in.opts = opts; |