about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2009-03-18 00:35:40 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2009-03-18 00:35:40 -0400
commitc8d562f7d42dcd247955a83cb8bdf1fd1b0a7f82 (patch)
tree79802c9301cf4b6b84cb4e78601257ead276530b /src
parentb8139b764120cebfc7b3cbb0afd3e07578285a3d (diff)
downloadlynx-snapshots-c8d562f7d42dcd247955a83cb8bdf1fd1b0a7f82.tar.gz
snapshot of project "lynx", label v2-8-7pre_1
Diffstat (limited to 'src')
-rw-r--r--src/UCdomap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/UCdomap.c b/src/UCdomap.c
index ad0a614c..6307e365 100644
--- a/src/UCdomap.c
+++ b/src/UCdomap.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: UCdomap.c,v 1.76 2009/03/16 22:41:41 tom Exp $
+ * $LynxId: UCdomap.c,v 1.77 2009/03/18 00:33:22 tom Exp $
  *
  *  UCdomap.c
  *  =========
@@ -2354,9 +2354,9 @@ static char *nl_langinfo(nl_item item)
     if (item != CODESET)
 	return NULL;
 
-    if (((l = LYgetenv("LC_ALL")) != 0) ||
-	((l = LYgetenv("LC_CTYPE")) != 0) ||
-	((l = LYgetenv("LANG")) != 0)) {
+    if (((l = LYGetEnv("LC_ALL")) != 0) ||
+	((l = LYGetEnv("LC_CTYPE")) != 0) ||
+	((l = LYGetEnv("LANG")) != 0)) {
 	/* check standardized locales */
 	if (!strcmp(l, "C") || !strcmp(l, "POSIX"))
 	    return C_CODESET;