if (Myname) ++Myname; else Myname = me;
// accommodate nls/gettext potential translations
- initialize_nsl();
+ initialize_nls();
// establish cpu particulars
#ifdef PRETEND4CPUS
/*
* This routine builds the nls table containing specially
* formatted strings designed to fit within an 80x24 terminal. */
-static void build_uniq_nsltab (void) {
+static void build_uniq_nlstab (void) {
char buf[BIGBUFSIZ];
/* Translation Notes ------------------------------------------------
* user will also have to export an empty LC_ALL= to actually
* enable any translations.
*/
-void initialize_nsl (void) {
+void initialize_nls (void) {
#ifdef VALIDATE_NLS
static const char *nls_err ="\t%s_nlstab[%d] == NULL\n";
int i;
exit(1);
}
memset(Uniq_nlstab, 0, sizeof(Uniq_nlstab));
- build_uniq_nsltab();
+ build_uniq_nlstab();
for (i = 0; i < uniq_MAX; i++)
if (!Uniq_nlstab[i]) {
fprintf(stderr, nls_err, "Uniq", i);
build_desc_nlstab();
build_norm_nlstab();
- build_uniq_nsltab();
+ build_uniq_nlstab();
#endif
}