diff options
author | ache <ache@FreeBSD.org> | 1998-04-30 12:49:11 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1998-04-30 12:49:11 +0000 |
commit | 2c460ce94bc23aebcaaac2920ff7788a29ba31f5 (patch) | |
tree | c3bb36c1a0011195b18d486cf8c6ad467fbcdac6 /usr.bin | |
parent | b2b5a3545a3c7cc842f4c5a9586682571ee2e423 (diff) | |
download | FreeBSD-src-2c460ce94bc23aebcaaac2920ff7788a29ba31f5.zip FreeBSD-src-2c460ce94bc23aebcaaac2920ff7788a29ba31f5.tar.gz |
Use NL_CAT_LOCALE to activate LC_MESSAGES
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ee/ee.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ee/ee.c b/usr.bin/ee/ee.c index b53f146..54a5050 100644 --- a/usr.bin/ee/ee.c +++ b/usr.bin/ee/ee.c @@ -52,7 +52,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$Id: ee.c,v 1.9 1998/01/12 07:51:07 charnier Exp $"; #endif /* not lint */ char *ee_copyright_message = @@ -64,7 +64,7 @@ char *ee_long_notice[] = { "copyright. All rights are reserved." }; -char *version = "@(#) ee, version 1.3 $Revision: 1.8 $"; +char *version = "@(#) ee, version 1.3 $Revision: 1.9 $"; #ifdef NCURSE #include "new_curse.h" @@ -4864,7 +4864,7 @@ strings_init() #ifndef NO_CATGETS setlocale(LC_ALL, ""); - catalog = catopen("ee", 0); + catalog = catopen("ee", NL_CAT_LOCALE); #endif /* NO_CATGETS */ modes_menu[0].item_string = catgetlocal( 1, "modes menu"); |