about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--CHANGES5
-rw-r--r--PACKAGE/version.iss2
-rwxr-xr-xconfigure2
-rw-r--r--configure.in6
-rw-r--r--lynx.cfg6
-rw-r--r--src/UCdomap.c8
-rw-r--r--userdefs.h6
7 files changed, 18 insertions, 17 deletions
diff --git a/CHANGES b/CHANGES
index b4969034..0c926cd2 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,9 +1,10 @@
--- $LynxId: CHANGES,v 1.381 2009/03/17 22:46:38 tom Exp $
+-- $LynxId: CHANGES,v 1.382 2009/03/18 00:35:40 tom Exp $
 ===============================================================================
 Changes since Lynx 2.8 release
 ===============================================================================
 
-2009-03-?? (2.8.7dev.14)
+2009-03-17 (2.8.7pre.1)
+2009-03-17 (2.8.7dev.14)
 * modify command-passing for Win32/DOS to use double-quotes -TD
 * adapt features from vile's install-script to set registry variables, etc. -TD
 * modify LYgetenv() for Win32 platforms to check also in the system registry
diff --git a/PACKAGE/version.iss b/PACKAGE/version.iss
index 2479dbd0..3e735c9d 100644
--- a/PACKAGE/version.iss
+++ b/PACKAGE/version.iss
@@ -1,7 +1,7 @@
 ; version used for Inno Setup files.

 

 ; $Format: "#define LYNX_VERSION \"$ProjectVersion$\""$

-#define LYNX_VERSION "2.8.7dev.13"
+#define LYNX_VERSION "2.8.7pre.1"
 

 #define MyAppName "Lynx"

 #define MyAppPublisher "Thomas E Dickey"

diff --git a/configure b/configure
index 15543ef6..5aa3ff0b 100755
--- a/configure
+++ b/configure
@@ -1239,7 +1239,7 @@ fi;
 
 PACKAGE=lynx
 # $Format: "VERSION=$ProjectVersion$"$
-VERSION=2.8.7dev.13
+VERSION=2.8.7pre.1
 
 echo "$as_me:1244: checking for DESTDIR" >&5
 echo $ECHO_N "checking for DESTDIR... $ECHO_C" >&6
diff --git a/configure.in b/configure.in
index 80b43683..368d3a2e 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-dnl $LynxId: configure.in,v 1.189 2009/03/10 00:23:50 tom Exp $
+dnl $LynxId: configure.in,v 1.190 2009/03/18 00:33:22 tom Exp $
 dnl
 dnl Process this file with autoconf to produce a configure script.
 dnl
@@ -29,7 +29,7 @@ dnl ---------------------------------------------------------------------------
 dnl
 dnl ask PRCS to plug-in the project-version for the configure-script.
 dnl $Format: "AC_REVISION($ProjectVersion$)"$
-AC_REVISION(2.8.7dev.13)
+AC_REVISION(2.8.7pre.1)
 
 # Save the original $CFLAGS so we can distinguish whether the user set those
 # in the environment, or whether autoconf added -O and -g options:
@@ -62,7 +62,7 @@ AC_ARG_WITH(system-type,
 PACKAGE=lynx
 dnl ask PRCS to plug-in the project-version for the packages.
 # $Format: "VERSION=$ProjectVersion$"$
-VERSION=2.8.7dev.13
+VERSION=2.8.7pre.1
 
 AC_SUBST(PACKAGE)
 AC_SUBST(VERSION)
diff --git a/lynx.cfg b/lynx.cfg
index 03eca962..f69a33d4 100644
--- a/lynx.cfg
+++ b/lynx.cfg
@@ -1,13 +1,13 @@
-# $LynxId: lynx.cfg,v 1.171 2009/02/02 01:50:56 tom Exp $
+# $LynxId: lynx.cfg,v 1.172 2009/03/18 00:33:22 tom Exp $
 # lynx.cfg file.
 # The default placement for this file is /usr/local/lib/lynx.cfg (Unix)
 #                                     or Lynx_Dir:lynx.cfg (VMS)
 #
 # $Format: "#PRCS LYNX_VERSION \"$ProjectVersion$\""$
-#PRCS LYNX_VERSION "2.8.7dev.13"
+#PRCS LYNX_VERSION "2.8.7pre.1"
 #
 # $Format: "#PRCS LYNX_DATE \"$ProjectDate$\""$
-#PRCS LYNX_DATE "Sun, 01 Feb 2009 17:41:02 -0800"
+#PRCS LYNX_DATE "Tue, 17 Mar 2009 17:35:40 -0700"
 #
 # Definition pairs are of the form  VARIABLE:DEFINITION
 # NO spaces are allowed between the pair items.
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;
diff --git a/userdefs.h b/userdefs.h
index 6b143dab..5cf6ba89 100644
--- a/userdefs.h
+++ b/userdefs.h
@@ -1,5 +1,5 @@
 /*
- * $LynxId: userdefs.h,v 1.242 2009/03/16 22:34:12 tom Exp $
+ * $LynxId: userdefs.h,v 1.243 2009/03/18 00:33:22 tom Exp $
  *
  * Lynx - Hypertext navigation system
  *
@@ -1420,11 +1420,11 @@
  * the version definition with the Project Version on checkout.  Just
  * ignore it. - kw */
 /* $Format: "#define LYNX_VERSION \"$ProjectVersion$\""$ */
-#define LYNX_VERSION "2.8.7dev.13"
+#define LYNX_VERSION "2.8.7pre.1"
 #define LYNX_WWW_HOME "http://lynx.isc.org/"
 #define LYNX_WWW_DIST "http://lynx.isc.org/current/"
 /* $Format: "#define LYNX_DATE \"$ProjectDate$\""$ */
-#define LYNX_DATE "Sun, 01 Feb 2009 17:41:02 -0800"
+#define LYNX_DATE "Tue, 17 Mar 2009 17:35:40 -0700"
 #define LYNX_DATE_OFF 5		/* truncate the automatically-generated date */
 #define LYNX_DATE_LEN 11	/* truncate the automatically-generated date */