diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2011-01-10 10:27:52 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2011-01-10 10:27:52 -0500 |
commit | 84ece865f60532ee0c5c2ebd367a26bf831d2988 (patch) | |
tree | 14d23050ee0c3e139e4839738a05914dd718d859 | |
parent | 8d8e6faf5fdb7a3492cae147fac00e582ae324f7 (diff) | |
download | lynx-snapshots-84ece865f60532ee0c5c2ebd367a26bf831d2988.tar.gz |
snapshot of project "lynx", label v2-8-8dev_8
-rw-r--r-- | CHANGES | 6 | ||||
-rw-r--r-- | PACKAGE/version.iss | 2 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 6 | ||||
-rw-r--r-- | lynx.cfg | 6 | ||||
-rw-r--r-- | makefile.in | 4 | ||||
-rw-r--r-- | src/LYReadCFG.c | 10 | ||||
-rw-r--r-- | userdefs.h | 6 |
8 files changed, 22 insertions, 20 deletions
diff --git a/CHANGES b/CHANGES index 356ea1b0..bf7add3f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,11 @@ --- $LynxId: CHANGES,v 1.526 2010/12/19 23:47:24 tom Exp $ +-- $LynxId: CHANGES,v 1.527 2011/01/10 10:22:59 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2010-12-19 (2.8.8dev.8) +2011-01-10 (2.8.8dev.8) +* correct sense of menu-name parameter in add_item_to_list() from dev.7 + changes (report by Larry Hart) -TD * remove duplicate copy of CF_TRY_PKG_CONFIG added to aclocal.m4 in 2.8.8dev.4, which caused autoconf-2.13 to emit weird error messages about undefined symbols (report by TG) -TD diff --git a/PACKAGE/version.iss b/PACKAGE/version.iss index e15e46c2..10a1b09e 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.8dev.7" +#define LYNX_VERSION "2.8.8dev.8" #define MyAppName "Lynx" #define MyAppPublisher "Thomas E Dickey" diff --git a/configure b/configure index 5a1738e2..f297cd68 100755 --- a/configure +++ b/configure @@ -1261,7 +1261,7 @@ rm conftest.sed PACKAGE=lynx # $Format: "VERSION=$ProjectVersion$"$ -VERSION=2.8.8dev.7 +VERSION=2.8.8dev.8 echo "$as_me:1266: checking for DESTDIR" >&5 echo $ECHO_N "checking for DESTDIR... $ECHO_C" >&6 diff --git a/configure.in b/configure.in index 6e692b83..709b58a8 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $LynxId: configure.in,v 1.223 2010/12/11 15:26:32 tom Exp $ +dnl $LynxId: configure.in,v 1.224 2011/01/10 10:22:59 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.8dev.7) +AC_REVISION(2.8.8dev.8) # Save the original $CFLAGS so we can distinguish whether the user set those # in the environment, or whether autoconf added -O and -g options: @@ -64,7 +64,7 @@ AC_ARG_PROGRAM PACKAGE=lynx dnl ask PRCS to plug-in the project-version for the packages. # $Format: "VERSION=$ProjectVersion$"$ -VERSION=2.8.8dev.7 +VERSION=2.8.8dev.8 AC_SUBST(PACKAGE) AC_SUBST(VERSION) diff --git a/lynx.cfg b/lynx.cfg index 3766a296..63ccddfb 100644 --- a/lynx.cfg +++ b/lynx.cfg @@ -1,13 +1,13 @@ -# $LynxId: lynx.cfg,v 1.202 2010/12/11 15:26:32 tom Exp $ +# $LynxId: lynx.cfg,v 1.203 2011/01/10 10:22:59 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.8dev.7" +#PRCS LYNX_VERSION "2.8.8dev.8" # # $Format: "#PRCS LYNX_DATE \"$ProjectDate$\""$ -#PRCS LYNX_DATE "Sat, 11 Dec 2010 07:26:32 -0800" +#PRCS LYNX_DATE "Mon, 10 Jan 2011 03:56:05 -0800" # # Definition pairs are of the form VARIABLE:DEFINITION # NO spaces are allowed between the pair items. diff --git a/makefile.in b/makefile.in index d5763697..75e55464 100644 --- a/makefile.in +++ b/makefile.in @@ -1,4 +1,4 @@ -# $LynxId: makefile.in,v 1.116 2010/12/11 15:26:32 tom Exp $ +# $LynxId: makefile.in,v 1.117 2011/01/10 10:22:59 tom Exp $ ##makefile for lynx SHELL = @CONFIG_SHELL@ @@ -37,7 +37,7 @@ TAR_UP = $(TAR) @TAR_UP_OPTIONS@ @TAR_PIPE_OPTIONS@ TAR_DOWN = $(TAR) @TAR_DOWN_OPTIONS@ @TAR_PIPE_OPTIONS@ # $Format: "LYNX_VERSION = $ProjectVersion$"$ -LYNX_VERSION = 2.8.8dev.7 +LYNX_VERSION = 2.8.8dev.8 ## This is the version which we are developing (or, upon release, make this ## the same). Use no dots in the name, since it must work on VMS and MS-DOS. diff --git a/src/LYReadCFG.c b/src/LYReadCFG.c index 4ed5b47a..8a2b3fad 100644 --- a/src/LYReadCFG.c +++ b/src/LYReadCFG.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYReadCFG.c,v 1.160 2010/12/10 01:16:27 tom Exp $ + * $LynxId: LYReadCFG.c,v 1.161 2011/01/10 10:27:52 tom Exp $ */ #ifndef NO_RULES #include <HTRules.h> @@ -1205,7 +1205,7 @@ static int parse_assumed_doc_charset_choice(char *p) */ static int external_fun(char *str) { - add_item_to_list(str, &externals, FALSE, FALSE); + add_item_to_list(str, &externals, FALSE, TRUE); return 0; } #endif @@ -1469,8 +1469,8 @@ static Config_Type Config_Table [] = PARSE_FUN(RC_ENABLE_LYNXRC, enable_lynxrc), PARSE_SET(RC_ENABLE_SCROLLBACK, enable_scrollback), #ifdef USE_EXTERNALS - PARSE_FUN(RC_EXTERNAL, external_fun), - PARSE_ADD(RC_EXTERNAL_MENU, externals), + PARSE_ADD(RC_EXTERNAL, externals), + PARSE_FUN(RC_EXTERNAL_MENU, external_fun), #endif PARSE_Env(RC_FINGER_PROXY, 0), #if defined(_WINDOWS) /* 1998/10/05 (Mon) 17:34:15 */ @@ -1940,7 +1940,7 @@ void LYSetConfigValue(const char *name, add_item_to_list(value, q->add_value, (q->add_value == &printers), - TRUE); + FALSE); break; case CONF_ADD_STRING: diff --git a/userdefs.h b/userdefs.h index cc972021..c79108e2 100644 --- a/userdefs.h +++ b/userdefs.h @@ -1,5 +1,5 @@ /* - * $LynxId: userdefs.h,v 1.262 2010/12/11 15:26:32 tom Exp $ + * $LynxId: userdefs.h,v 1.263 2011/01/10 10:22:59 tom Exp $ * * Lynx - Hypertext navigation system * @@ -1432,11 +1432,11 @@ * the version definition with the Project Version on checkout. Just * ignore it. - kw */ /* $Format: "#define LYNX_VERSION \"$ProjectVersion$\""$ */ -#define LYNX_VERSION "2.8.8dev.7" +#define LYNX_VERSION "2.8.8dev.8" #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 "Sat, 11 Dec 2010 07:26:32 -0800" +#define LYNX_DATE "Mon, 10 Jan 2011 03:56:05 -0800" #define LYNX_DATE_OFF 5 /* truncate the automatically-generated date */ #define LYNX_DATE_LEN 11 /* truncate the automatically-generated date */ |