about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--CHANGES78
-rw-r--r--INSTALLATION32
-rw-r--r--LYMessages_en.h1
-rw-r--r--WWW/Library/Implementation/HTAABrow.c6
-rw-r--r--WWW/Library/Implementation/HTTCP.c7
-rw-r--r--WWW/Library/Implementation/HTTP.c116
-rw-r--r--WWW/Library/Implementation/HTUtils.h7
-rw-r--r--WWW/Library/Implementation/www_tcp.h18
-rw-r--r--aclocal.m4122
-rwxr-xr-xcfg_defs.sh48
-rwxr-xr-xcfg_edit.sh17
-rwxr-xr-xconfig.guess11
-rwxr-xr-xconfig.sub8
-rwxr-xr-xconfigure5137
-rw-r--r--configure.in84
-rw-r--r--docs/README.sslcerts194
-rwxr-xr-xfixtext.sh10
-rw-r--r--lynx.cfg21
-rw-r--r--lynx.hlp19
-rw-r--r--lynx.man20
-rw-r--r--lynx_help/Lynx_users_guide.html22
-rw-r--r--po/ca.po633
-rw-r--r--po/cs.po632
-rw-r--r--po/da.po633
-rw-r--r--po/de.po633
-rw-r--r--po/et.po633
-rw-r--r--po/fr.po632
-rw-r--r--po/hu.po633
-rw-r--r--po/it.po632
-rw-r--r--po/ja.po632
-rw-r--r--po/lynx.pot637
-rw-r--r--po/nl.po633
-rw-r--r--po/pt_BR.po632
-rw-r--r--po/ru.po632
-rw-r--r--po/rw.po631
-rw-r--r--po/sl.po634
-rw-r--r--po/sv.po633
-rw-r--r--po/tr.po633
-rw-r--r--po/uk.po634
-rw-r--r--po/vi.po633
-rw-r--r--po/zh_CN.po631
-rw-r--r--po/zh_TW.po632
-rw-r--r--src/GridText.c242
-rw-r--r--src/HTAlert.c7
-rw-r--r--src/HTFWriter.c30
-rw-r--r--src/LYCurses.c195
-rw-r--r--src/LYCurses.h24
-rw-r--r--src/LYGlobalDefs.h1
-rw-r--r--src/LYMain.c86
-rw-r--r--src/LYMainLoop.c73
-rw-r--r--src/LYMainLoop.h1
-rw-r--r--src/LYMap.c9
-rw-r--r--src/LYOptions.c68
-rw-r--r--src/LYPrettySrc.c222
-rw-r--r--src/LYReadCFG.c7
-rw-r--r--src/LYStrings.c36
-rw-r--r--src/LYStyle.c118
-rw-r--r--src/LYUtils.c15
-rw-r--r--src/LYrcFile.h1
-rw-r--r--src/chrtrans/makeuctb.c1
-rw-r--r--src/makefile.in2
-rw-r--r--test/test-styles.html106
-rw-r--r--userdefs.h4
63 files changed, 11088 insertions, 9426 deletions
diff --git a/CHANGES b/CHANGES
index 60bd28a1..41a45333 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,80 @@
 Changes since Lynx 2.8 release
 ===============================================================================
 
+2006-08-31 (2.8.6pre.1)
+2006-08-31 (2.8.6dev.19)
+* add --enable-widec configure option to allow building lynx without wide
+  character support using ncursesw, to accommodate users with older releases
+  of ncurses (request by Emanuele Giaquinta) -TD
+* add -stderr option to write error messages when doing a -dump -or -source.
+  Normally these are written to the status line but that does not exist when
+  dumping to standard output (Debian #375736) -TD
+* fixes for GNU TLS configuration (also addresses Debian #231609) -TG, TH
+* add check for failure to write to disk, e.g., on disk full, and report
+  error condition via HTAlert() -PG
+* updated README.sslcerts -Stef Caunter
+* add example of -source in manpage to explain how HREF's are constructed
+  (Debian #347989) -TD
+* fixes to make redraw_part_of_line() to work with double-width characters.
+  This is used in color-style to repaint an inactive hyperlink -TD
+* ensure the number of "extra" blanks in a line is greater than zero before
+  attempting to perform text-justification (Debian #363538) -TD
+* improve wrapping logic in LYwaddnstr() by using a derived window.  This fixes
+  a problem with wrapping of multibyte character links -TD
+* repair fix for Debian #171312 by ensuring that it is only invoked if the
+  document was not being reloaded, or popped off the history stack (report
+  by TH) -TD
+* add error-reporting for the PRETTYSRC_SPEC data in lynx.cfg
+  (prompted by discussion by OpenMacNews and Thorsten Glaser) -TD
+* add a carriage-return in stop_curses() to work around PDCurses leaving the
+  cursor position other places than lower-level when stopping curses (report
+  by DK) -TD
+* add an explicit wmove() in display_line() to accommodate some wide-character
+  pages which are not handled well by the nested-table logic, resulting in
+  unexpected wrapping (report by Dan Jacobson) -TD
+* modify limit for CDK double-byte characters in display_line() to accommodate
+  a test-case rightSideEdgeTest.html provided by TH -TD
+* add a workaround in LYStrings.c myGetChar() for PDCurses, which may return an
+  ERR value which is not -1 (reports by DK, William McBrine) -TD
+* remove ifdef from 2.8.2dev.14 which omitted bindtextdomain() call from DJGPP
+  NLS configuration -DK
+* modify autoconf macro AM_PATH_PROG_WITH_TEST to account for executable suffix
+  in win32 environment -DK
+* correct a mistyped parameter to CreateThread() (report by DK) -TD
+* do not use LIBOBJS symbol directly in configure script except to support
+  AC_REPLACE_FUNCS, since the autoconf macros dealing with that symbol changed
+  incompatibly in autoconf 2.54 (report by DK) -TD
+* fixes to work with BeOS 5.0 -Nigel Horne
+* use portable TXT_R rather than "rt" for popen() mode in clip_grab() (reported
+  by Antonio Maria Borneo) -TD
+* modify makeutcb.c to avoid compile-time dependency upon gettext, in case it
+  is used in cross-compiling -TD
+* modify expression for ws_read_per_sec in ws_netread() to avoid potential
+  divide-by-zero on a network error
+  (reported by David Potter) -Takeshi Hataguchi, -TD
+* modify fix for Debian #335593 to ensure that only image maps for the current
+  page are listed (report by DK) -TD
+* correct URL for HTML'ized description of all settings in lynx.cfg (report
+  by DK) -TD
+* use configure macro CF_SIGWINCH to work around special case on Mac OS X
+  which leaves SIGWINCH undefined -TD
+* add configure options --with-cfg-file and --with-lss-file to allow one to
+  specify the names and paths of the default configuration and color-style
+  files -TD   
+* change configure script --enable-color-style so it is enabled by default 
+  (prompted by request by Jason Spiro) -TD
+* add COLOR_STYLE setting to lynx.cfg -TD
+* change default initialization of color-style code when no lss file is given
+  to simulate the non-color-style code.  There are some visual differences,
+  e.g., links that contain a mixture of styles will display with mixed colors,
+  but overall the visual effect matches the non-color-style code well enough
+  to change the default configuration.  cf: 2000-07-16 (2.8.4dev.5) -TD
+* fix a sign-extension in alignment case-statement in split_line() which could
+  cause a large indent for lines which are wider than the display (Debian
+  #360832, #372670) -TD
+* fix ifdef's in LYOptions.c to make --disable-menu-options work (report by
+  PW) -TD
+
 2006-05-29 (2.8.6dev.18)
 * suppress OpenSSL URL from version message if it happens to be built using
   GNU TLS -TD  
@@ -24,7 +98,7 @@ Changes since Lynx 2.8 release
 * modify HTLoadHTTP() to interpret leading asterisks in common name fields as
   wildcards -Thorsten Glaser
 * remove SH_EX hardcoded Latin-1 table for strcasecomp() -TD
-* fixes for compiling in Cygwin environment -TD
+* fixes for compiling in Cygwin environment -TH
   + modify not to check d_ino when __CYGWIN__ is defined because it
     does not seem to be supported by Cygwin now.
   + modify to use fill_rehostent to avoid segfault in _fork_func,
@@ -848,7 +922,7 @@ FreeBSD 4.1, 4.8, NetBSD 1.5, 1.6 and OpenBSD 2.8 (curses/ncurses).
   (report by Atsuhito Kohda) -TD
 * modify ifdef's to use mkdtemp() if it is available (prompted by MirBSD
   patch) -TD
-* several fixes from Thorsten Glaser (MirBSD):
+* several fixes from (TG) (Thorsten Glaser - MirBSD):
   + workaround for invoking shell scripts when executable permissions are
     discarded as a result from using CVS.
   + adjust buffer-size used in a readlink() call in case the result is too
diff --git a/INSTALLATION b/INSTALLATION
index df9f8b1a..5d016b12 100644
--- a/INSTALLATION
+++ b/INSTALLATION
@@ -179,6 +179,15 @@ II. Compile instructions -- UNIX
   --disable-bibp-urls			(define DISABLE_BIBP)
 	Disable (do not compile code) support for bibp: URLs.
 
+  --disable-color-style			(define USE_COLOR_STYLE)
+	Use this option to disable optional color style.  This is implemented
+	for modern curses implementations, e.g., those that support color.
+
+	Before lynx 2.8.6dev.18, this option was disabled by default.
+	You can achieve a similar color effect to match the non-color-style
+	(but still allowing users to use color-style) by using the
+	--without-lss-file option.
+
   --disable-config-info			(define NO_CONFIG_INFO)
   	Use this option to disable extended browsable configuration information
 	(a screen that shows the result of the configuration script, as well
@@ -360,11 +369,6 @@ II. Compile instructions -- UNIX
 	Add experimental logic for supporting CJK documents.  (This is not
 	necessary for CJK support and may go away in a future release.)
 
-  --enable-color-style			(define USE_COLOR_STYLE)
-  	Use this option to enable optional and *experimental* color style.
-	This is implemented for curses (if it supports color), ncurses and
-	PDCurses, but not slang.
-
   --enable-debug			(The symbol DEBUG is always defined.)
         Use this option to compile-in support for debugging.
         Note that this flag is ignored if the CFLAGS environment
@@ -467,6 +471,13 @@ II. Compile instructions -- UNIX
   --enable-warnings
 	Use this option to turn on GCC compiler warnings.
 
+  --enable-widec
+	Use this option to allow the configure script to look for wide-curses
+	features.  If you do not specify the option, the configure script
+	will look for these features if --with-screen=ncursesw is given.
+	For this release of Lynx, we recommend the ncursew library built from
+	ncurses 5.5.
+
   --libdir				(affect LYNX_CFG_FILE)
 	Defines the location where you want the lynx.cfg file installed.
 	The configure script defines the symbol LYNX_CFG_FILE to correspond
@@ -486,6 +497,11 @@ II. Compile instructions -- UNIX
  	Limit the number of charsets that are compiled-in to the specified
 	list of comma-separated MIME names.
 
+  --with-cfg-file			(define LYNX_CFG_FILE)
+	Specify the default configuration file's name.  Use --without-cfg-file
+	to force the user to specify the configuration file on the command
+	line.
+
   --with-curses-dir
 	Specify directory under which curses/ncurses is installed.  This
 	assumes a standard install, e.g., with an include and lib subdirectory.
@@ -515,6 +531,10 @@ II. Compile instructions -- UNIX
   --with-libiconv-prefix=DIR
 	search for libiconv in DIR/include and DIR/lib
 
+  --with-lss-file{=path}		(define LYNX_LSS_FILE)
+	Specify the default style-sheet file's name.  Use --without-lss-file
+	to make the default behavior match the non-color-style (if no --lss
+	option is given, and no COLOR_STYLE setting is in lynx.cfg).
 
   --with-neXtaw
 	This option allows you to specify the X libraries used if you
@@ -541,7 +561,7 @@ II. Compile instructions -- UNIX
 	Note that some systems may have a default curses library which
 	does not support color, while on others, ncurses is installed as
 	the curses library.  The variant ncursesw is the wide-character
-	version of ncurses.
+	version of ncurses.  See also the --enable-widec option.
 
 	The pdcurses selection supported by the configure script is a UNIX-only
 	library which uses X11.  If you are configuring with DJGPP, the likely
diff --git a/LYMessages_en.h b/LYMessages_en.h
index 97c6eee7..6ddcbc7e 100644
--- a/LYMessages_en.h
+++ b/LYMessages_en.h
@@ -793,6 +793,7 @@
 #define FAILED_RETRY_WITH_AUTH  gettext("Can't retry with authorization!  Contact the server's WebMaster.")
 #define FAILED_RETRY_WITH_PROXY gettext("Can't retry with proxy authorization!  Contact the server's WebMaster.")
 #define HTTP_RETRY_WITH_PROXY   gettext("Retrying with proxy authorization information.")
+#define SSL_FORCED_PROMPT	gettext("SSL error:%s-Continue?")
 
 /* HTWAIS.c */
 #define HTWAIS_MESSAGE_TOO_BIG  gettext("HTWAIS: Return message too large.")
diff --git a/WWW/Library/Implementation/HTAABrow.c b/WWW/Library/Implementation/HTAABrow.c
index 73853301..206f05be 100644
--- a/WWW/Library/Implementation/HTAABrow.c
+++ b/WWW/Library/Implementation/HTAABrow.c
@@ -736,9 +736,11 @@ static HTAAScheme HTAA_selectScheme(HTAASetup * setup)
     int scheme;
 
     if (setup && setup->valid_schemes) {
-	for (scheme = HTAA_BASIC; scheme < HTAA_MAX_SCHEMES; scheme++)
-	    if (-1 < HTList_indexOf(setup->valid_schemes, (void *) scheme))
+	for (scheme = HTAA_BASIC; scheme < HTAA_MAX_SCHEMES; scheme++) {
+	    void *object = (void *) scheme;
+	    if (-1 < HTList_indexOf(setup->valid_schemes, object))
 		return (HTAAScheme) scheme;
+	}
     }
     return HTAA_BASIC;
 }
diff --git a/WWW/Library/Implementation/HTTCP.c b/WWW/Library/Implementation/HTTCP.c
index 2860e555..0f5b1d34 100644
--- a/WWW/Library/Implementation/HTTCP.c
+++ b/WWW/Library/Implementation/HTTCP.c
@@ -1132,7 +1132,8 @@ LYNX_HOSTENT *LYGetHostByName(char *str)
 
 #ifdef _WINDOWS_NSL
     {
-	HANDLE hThread, dwThreadID;
+	HANDLE hThread;
+	DWORD dwThreadID;
 
 #ifndef __CYGWIN__
 	if (!system_is_NT) {	/* for Windows9x */
@@ -1150,7 +1151,7 @@ LYNX_HOSTENT *LYGetHostByName(char *str)
 	    WSASetLastError(WSAHOST_NOT_FOUND);
 
 	    hThread = CreateThread(NULL, 4096UL, _fork_func, host, 0UL,
-				   (unsigned long *) &dwThreadID);
+				   &dwThreadID);
 	    if (!hThread)
 		MessageBox(NULL, "CreateThread",
 			   "CreateThread Failed", 0L);
@@ -1954,7 +1955,7 @@ int HTDoRead(int fildes,
     int nb;
 #endif /* UCX, BSN */
 
-#ifdef UNIX
+#if defined(UNIX) && !defined(__BEOS__)
     if (fildes == 0) {
 	/*
 	 * 0 can be a valid socket fd, but if it's a tty something must have
diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c
index 687bab83..a4f490f4 100644
--- a/WWW/Library/Implementation/HTTP.c
+++ b/WWW/Library/Implementation/HTTP.c
@@ -62,14 +62,14 @@ static void free_ssl_ctx(void)
 	SSL_CTX_free(ssl_ctx);
 }
 
-static int HTSSLCallback(int preverify_ok, X509_STORE_CTX * x509_ctx)
+static int HTSSLCallback(int preverify_ok, X509_STORE_CTX * x509_ctx GCC_UNUSED)
 {
     char *msg = NULL;
     int result = 1;
 
     if (!(preverify_ok || ssl_okay || ssl_noprompt)) {
 #ifdef USE_X509_SUPPORT
-	HTSprintf0(&msg, "SSL error:%s-Continue?",
+	HTSprintf0(&msg, SSL_FORCED_PROMPT,
 		   X509_verify_cert_error_string(X509_STORE_CTX_get_error(x509_ctx)));
 	if (HTForcedPrompt(ssl_noprompt, msg, YES))
 	    ssl_okay = 1;
@@ -84,6 +84,10 @@ static int HTSSLCallback(int preverify_ok, X509_STORE_CTX * x509_ctx)
 
 SSL *HTGetSSLHandle(void)
 {
+#ifdef USE_GNUTLS_INCL
+    static char *certfile = NULL;
+#endif
+
     if (ssl_ctx == NULL) {
 	/*
 	 * First time only.
@@ -98,8 +102,19 @@ SSL *HTGetSSLHandle(void)
 	SSL_CTX_set_default_verify_paths(ssl_ctx);
 	SSL_CTX_set_verify(ssl_ctx, SSL_VERIFY_PEER, HTSSLCallback);
 #endif /* SSLEAY_VERSION_NUMBER < 0x0800 */
+#ifdef USE_GNUTLS_INCL
+	if ((certfile = LYGetEnv("SSL_CERT_FILE")) != NULL) {
+	    CTRACE((tfp,
+		    "HTGetSSLHandle: certfile is set to %s by SSL_CERT_FILE\n",
+		    certfile));
+	}
+#endif
 	atexit(free_ssl_ctx);
     }
+#ifdef USE_GNUTLS_INCL
+    ssl_ctx->certfile = certfile;
+    ssl_ctx->certfile_type = GNUTLS_X509_FMT_PEM;
+#endif
     ssl_okay = 0;
     return (SSL_new(ssl_ctx));
 }
@@ -206,9 +221,12 @@ static int ws_read(int fd, char *buf, int len)
     return res;
 }
 
+#define DWORD_ERR ((DWORD)-1)
+
 static DWORD __stdcall _thread_func(void *p)
 {
-    int i, val, ret;
+    DWORD result;
+    int i, val;
     recv_data_t *q = (recv_data_t *) p;
 
     i = 0;
@@ -224,12 +242,12 @@ static DWORD __stdcall _thread_func(void *p)
 		i, ws_errno, q->fd, q->len);
 	MessageBox(NULL, buff, BOX_TITLE, BOX_FLAG);
 #endif
-	ret = -1;
+	result = DWORD_ERR;
     } else {
-	ret = val;
+	result = val;
     }
 
-    return ((DWORD) ret);
+    return result;
 }
 
 /* The same like read, but takes care of EINTR and uses select to
@@ -244,7 +262,8 @@ int ws_netread(int fd, char *buf, int len)
     HANDLE hThread;
     DWORD dwThreadID;
     DWORD exitcode = 0;
-    DWORD ret_val = -1, val, process_time, now_TickCount, save_TickCount;
+    DWORD ret_val = DWORD_ERR;
+    DWORD val, process_time, now_TickCount, save_TickCount;
 
     static recv_data_t para;
 
@@ -279,7 +298,7 @@ int ws_netread(int fd, char *buf, int len)
 	i++;
 	if (val == WAIT_FAILED) {
 	    HTInfoMsg("Wait Failed");
-	    ret_val = -1;
+	    ret_val = DWORD_ERR;
 	    break;
 	} else if (val == WAIT_TIMEOUT) {
 	    i++;
@@ -298,7 +317,7 @@ int ws_netread(int fd, char *buf, int len)
 	    }
 	} else if (val == WAIT_OBJECT_0) {
 	    if (GetExitCodeThread(hThread, &exitcode) == FALSE) {
-		exitcode = -1;
+		exitcode = DWORD_ERR;
 	    }
 	    if (CloseHandle(hThread) == FALSE) {
 		HTInfoMsg("Thread terminate Failed");
@@ -312,13 +331,22 @@ int ws_netread(int fd, char *buf, int len)
 	    if (process_time == 0)
 		process_time = 1;
 	    g_total_times += process_time;
-	    g_total_bytes += exitcode;
 
-	    if (g_total_bytes > 2000000) {
-		ws_read_per_sec = g_total_bytes / (g_total_times / 1000);
+	    /*
+	     * DWORD is unsigned, and could be an error code which is signed.
+	     */
+	    if ((long) exitcode > 0)
+		g_total_bytes += exitcode;
+
+	    ws_read_per_sec = g_total_bytes;
+	    if (ws_read_per_sec > 2000000) {
+		if (g_total_times > 1000)
+		    ws_read_per_sec /= (g_total_times / 1000);
 	    } else {
-		ws_read_per_sec = g_total_bytes * 1000 / g_total_times;
+		ws_read_per_sec *= 1000;
+		ws_read_per_sec /= g_total_times;
 	    }
+
 	    ret_val = exitcode;
 	    break;
 	}
@@ -460,6 +488,11 @@ static int HTLoadHTTP(const char *arg,
     char *ssl_dn_start;
     char *ssl_all_cns;
 
+#ifdef USE_GNUTLS_INCL
+    int ret;
+    unsigned tls_status;
+#endif
+
 #if SSLEAY_VERSION_NUMBER >= 0x0900
     BOOL try_tls = TRUE;
 #endif /* SSLEAY_VERSION_NUMBER >= 0x0900 */
@@ -621,9 +654,62 @@ static int HTLoadHTTP(const char *arg,
 	    goto done;
 #endif /* SSLEAY_VERSION_NUMBER >= 0x0900 */
 	}
+#ifdef USE_GNUTLS_INCL
+	ret = gnutls_certificate_verify_peers2(handle->gnutls_state, &tls_status);
+	if ((ret < 0) || tls_status) {
+	    int flag_continue = 1;
+	    char *msg2;
+
+	    if (tls_status & GNUTLS_CERT_SIGNER_NOT_FOUND) {
+		msg2 = gettext("no issuer was found");
+	    } else if (tls_status & GNUTLS_CERT_SIGNER_NOT_CA) {
+		msg2 = gettext("issuer is not a CA");
+	    } else if (tls_status & GNUTLS_CERT_SIGNER_NOT_FOUND) {
+		msg2 = gettext("the certificate has no known issuer");
+	    } else if (tls_status & GNUTLS_CERT_REVOKED) {
+		msg2 = gettext("the certificate has been revoked");
+	    } else {
+		msg2 = gettext("the certificate is not trusted");
+	    }
+	    HTSprintf0(&msg, SSL_FORCED_PROMPT, msg2);
+	    CTRACE((tfp, "HTLoadHTTP: %s\n", msg));
+	    if (!ssl_noprompt) {
+		if (!HTForcedPrompt(ssl_noprompt, msg, YES)) {
+		    flag_continue = 0;
+		}
+	    } else if (ssl_noprompt == FORCE_PROMPT_NO) {
+		flag_continue = 0;
+	    }
+	    FREE(msg);
+	    if (flag_continue == 0) {
+		status = HT_NOT_LOADED;
+		FREE(msg);
+		goto done;
+	    }
+	}
+#endif
 
 	X509_NAME_oneline(X509_get_subject_name(SSL_get_peer_certificate(handle)),
+#ifndef USE_GNUTLS_INCL
 			  ssl_dn, sizeof(ssl_dn));
+#else
+			  ssl_dn + 1, sizeof(ssl_dn) - 1);
+
+	/* Iterate over DN in incompatible GnuTLS format to bring it into OpenSSL format */
+	ssl_dn[0] = '/';
+	ssl_dn_start = ssl_dn;
+	while (*ssl_dn_start) {
+	    if ((*ssl_dn_start == ',') && (*(ssl_dn_start + 1) == ' ')) {
+		*ssl_dn_start++ = '/';
+		if (*(p = ssl_dn_start) != 0) {
+		    while ((p[0] = p[1]) != 0)
+			++p;
+		}
+	    } else {
+		ssl_dn_start++;
+	    }
+	}
+#endif
 
 	/*
 	 * X.509 DN validation taking ALL CN fields into account
@@ -681,8 +767,8 @@ static int HTLoadHTTP(const char *arg,
 
 	/* if an error occurred, format the appropriate message */
 	if (status_sslcertcheck == 0) {
-	    HTSprintf0(&msg,
-		       gettext("SSL error:Can't find common name in certificate-Continue?"));
+	    HTSprintf0(&msg, SSL_FORCED_PROMPT,
+		       gettext("Can't find common name in certificate"));
 	} else if (status_sslcertcheck == 1) {
 	    HTSprintf0(&msg,
 		       gettext("SSL error:host(%s)!=cert(%s)-Continue?"),
diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h
index a9ca41c6..eda975d6 100644
--- a/WWW/Library/Implementation/HTUtils.h
+++ b/WWW/Library/Implementation/HTUtils.h
@@ -126,6 +126,13 @@ char *alloca();
 
 #endif /* HAVE_CONFIG_H */
 
+/* suppress inadvertant use of gettext in makeuctb when cross-compiling */
+#ifdef DONT_USE_GETTEXT
+#undef HAVE_GETTEXT
+#undef HAVE_LIBGETTEXT_H
+#undef HAVE_LIBINTL_H
+#endif
+
 #ifndef lynx_srand
 #define lynx_srand srand
 #endif
diff --git a/WWW/Library/Implementation/www_tcp.h b/WWW/Library/Implementation/www_tcp.h
index 7883ae03..6189ab1e 100644
--- a/WWW/Library/Implementation/www_tcp.h
+++ b/WWW/Library/Implementation/www_tcp.h
@@ -169,9 +169,21 @@ error Host character set is not ASCII.
 #define UCH(ch) ((unsigned char)(ch))
 
 /*
+ * These parameters were provided by Nigel Horne, using BeOS professional 5.0
+ */
+#ifdef  __BEOS__
+#undef NETREAD
+#undef NETWRITE
+#undef NETCLOSE
+#define NETREAD(s,b,l)  recv((s),(b),(l),0)
+#define NETWRITE(s,b,l) send((s),(b),(l),0)
+#define NETCLOSE(s)     closesocket(s)
+#endif
+
+/*
 IBM-PC running Windows NT
 
-	These parameters providede by  Susan C. Weber <sweber@kyle.eitech.com>.
+	These parameters provided by  Susan C. Weber <sweber@kyle.eitech.com>.
 */
 
 #ifdef _WINDOWS
@@ -705,7 +717,11 @@ typedef unsigned short mode_t;
 #define DECL_SYS_ERRLIST 1
 #endif
 
+#if defined(VMS)
+#define socklen_t unsigned
+#else
 #define socklen_t int		/* used for default LY_SOCKLEN definition */
+#endif
 
 #endif /* !HAVE_CONFIG_H */
 
diff --git a/aclocal.m4 b/aclocal.m4
index b28edf05..103e3293 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -4,13 +4,38 @@ dnl and Jim Spath <jspath@mail.bcpl.lib.md.us>
 dnl and Philippe De Muyter <phdm@macqel.be>
 dnl
 dnl Created: 1997/1/28
-dnl Updated: 2006/5/29
+dnl Updated: 2006/8/4
 dnl
 dnl The autoconf used in Lynx development is GNU autoconf 2.13 or 2.52, patched
 dnl by Thomas Dickey.  See your local GNU archives, and this URL:
 dnl http://invisible-island.net/autoconf/autoconf.html
 dnl
 dnl ---------------------------------------------------------------------------
+dnl
+dnl Copyright 1997-2005,2006 by Thomas E. Dickey
+dnl 
+dnl Permission to use, copy, modify, and distribute this software and its
+dnl documentation for any purpose and without fee is hereby granted,
+dnl provided that the above copyright notice appear in all copies and that
+dnl both that copyright notice and this permission notice appear in
+dnl supporting documentation, and that the name of the above listed
+dnl copyright holder(s) not be used in advertising or publicity pertaining
+dnl to distribution of the software without specific, written prior
+dnl permission.
+dnl 
+dnl THE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD
+dnl TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+dnl AND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE
+dnl LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+dnl WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+dnl ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+dnl OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+dnl
+dnl ---------------------------------------------------------------------------
+dnl A few macros (the AM_xxx ones) are originally from gettext 0.10.35 (but
+dnl are modified), and are part of this file due to mechanical limitations of
+dnl autoconf.
+dnl ---------------------------------------------------------------------------
 dnl ---------------------------------------------------------------------------
 dnl AM_GNU_GETTEXT version: 11 updated: 2004/01/26 20:58:40
 dnl --------------
@@ -227,7 +252,7 @@ AC_DEFUN([AM_LC_MESSAGES],
     fi
   fi])dnl
 dnl ---------------------------------------------------------------------------
-dnl AM_PATH_PROG_WITH_TEST version: 6 updated: 2006/05/29 11:25:53
+dnl AM_PATH_PROG_WITH_TEST version: 7 updated: 2006/08/06 19:45:29
 dnl ----------------------
 dnl Inserted as requested by gettext 0.10.40
 dnl File from /usr/share/aclocal
@@ -264,9 +289,9 @@ AC_CACHE_VAL(ac_cv_path_$1,
   IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}${PATHSEP}"
   for ac_dir in ifelse([$5], , $PATH, [$5]); do
     test -z "$ac_dir" && ac_dir=.
-    if test -f $ac_dir/$ac_word; then
+    if test -f $ac_dir/$ac_word$ac_exeext; then
       if [$3]; then
-	ac_cv_path_$1="$ac_dir/$ac_word"
+	ac_cv_path_$1="$ac_dir/$ac_word$ac_exeext"
 	break
       fi
     fi
@@ -3544,6 +3569,65 @@ int main()
 test "$cf_cv_set_errno" != no && AC_DEFINE(CAN_SET_ERRNO)
 ])dnl
 dnl ---------------------------------------------------------------------------
+dnl CF_SIGWINCH version: 1 updated: 2006/04/02 16:41:09
+dnl -----------
+dnl Use this macro after CF_XOPEN_SOURCE, but do not require it (not all
+dnl programs need this test).
+dnl
+dnl This is really a MacOS X 10.4.3 workaround.  Defining _POSIX_C_SOURCE
+dnl forces SIGWINCH to be undefined (breaks xterm, ncurses).  Oddly, the struct
+dnl winsize declaration is left alone - we may revisit this if Apple choose to
+dnl break that part of the interface as well.
+AC_DEFUN([CF_SIGWINCH],
+[
+AC_CACHE_CHECK(if SIGWINCH is defined,cf_cv_define_sigwinch,[
+	AC_TRY_COMPILE([
+#include <sys/types.h>
+#include <sys/signal.h>
+],[int x = SIGWINCH],
+	[cf_cv_define_sigwinch=yes],
+	[AC_TRY_COMPILE([
+#undef _XOPEN_SOURCE
+#undef _POSIX_SOURCE
+#undef _POSIX_C_SOURCE
+#include <sys/types.h>
+#include <sys/signal.h>
+],[int x = SIGWINCH],
+	[cf_cv_define_sigwinch=maybe],
+	[cf_cv_define_sigwinch=no])
+])
+])
+
+if test "$cf_cv_define_sigwinch" = maybe ; then
+AC_CACHE_CHECK(for actual SIGWINCH definition,cf_cv_fixup_sigwinch,[
+cf_cv_fixup_sigwinch=unknown
+cf_sigwinch=32
+while test $cf_sigwinch != 1
+do
+	AC_TRY_COMPILE([
+#undef _XOPEN_SOURCE
+#undef _POSIX_SOURCE
+#undef _POSIX_C_SOURCE
+#include <sys/types.h>
+#include <sys/signal.h>
+],[
+#if SIGWINCH != $cf_sigwinch
+make an error
+#endif
+int x = SIGWINCH],
+	[cf_cv_fixup_sigwinch=$cf_sigwinch
+	 break])
+
+cf_sigwinch=`expr $cf_sigwinch - 1`
+done
+])
+
+	if test "$cf_cv_fixup_sigwinch" != unknown ; then
+		CPPFLAGS="$CPPFLAGS -DSIGWINCH=$cf_cv_fixup_sigwinch"
+	fi
+fi
+])dnl
+dnl ---------------------------------------------------------------------------
 dnl CF_SIZECHANGE version: 8 updated: 2000/11/04 12:22:16
 dnl -------------
 dnl Check for definitions & structures needed for window size-changing
@@ -4090,7 +4174,7 @@ test -d /usr && {
 }
 ])dnl
 dnl ---------------------------------------------------------------------------
-dnl CF_SUBST version: 2 updated: 1997/09/06 23:41:28
+dnl CF_SUBST version: 4 updated: 2006/06/17 12:33:03
 dnl --------
 dnl	Shorthand macro for substituting things that the user may override
 dnl	with an environment variable.
@@ -4101,11 +4185,29 @@ dnl	$3 = default value
 AC_DEFUN([CF_SUBST],
 [AC_CACHE_VAL(cf_cv_subst_$2,[
 AC_MSG_CHECKING(for $1 (symbol $2))
-test -z "[$]$2" && $2=$3
+CF_SUBST_IF([-z "[$]$2"], [$2], [$3])
+cf_cv_subst_$2=[$]$2
 AC_MSG_RESULT([$]$2)
+])
+])dnl
+dnl ---------------------------------------------------------------------------
+dnl CF_SUBST_IF version: 2 updated: 2006/06/17 12:33:03
+dnl -----------
+dnl	Shorthand macro for substituting things that the user may override
+dnl	with an environment variable.
+dnl
+dnl	$1 = condition to pass to "test"
+dnl	$2 = environment variable
+dnl	$3 = value if the test succeeds
+dnl	$4 = value if the test fails
+AC_DEFUN([CF_SUBST_IF],
+[
+if test $1 ; then
+	$2=$3
+ifelse($4,,,[else
+	$2=$4])
+fi
 AC_SUBST($2)
-cf_cv_subst_$2=[$]$2])
-$2=${cf_cv_subst_$2}
 ])dnl
 dnl ---------------------------------------------------------------------------
 dnl CF_SYSTEM_MAIL_FLAGS version: 3 updated: 1998/11/18 14:45:34
@@ -4776,7 +4878,7 @@ AC_ARG_WITH(curses-dir,
 	[cf_cv_curses_dir=no])
 ])dnl
 dnl ---------------------------------------------------------------------------
-dnl CF_WITH_PATH version: 6 updated: 1998/10/11 00:40:17
+dnl CF_WITH_PATH version: 7 updated: 2006/08/03 15:20:08
 dnl ------------
 dnl Wrapper for AC_ARG_WITH to ensure that user supplies a pathname, not just
 dnl defaulting to yes/no.
@@ -4791,7 +4893,7 @@ AC_DEFUN([CF_WITH_PATH],
 [AC_ARG_WITH($1,[$2 ](default: ifelse($4,,empty,$4)),,
 ifelse($4,,[withval="${$3}"],[withval="${$3-ifelse($5,,$4,$5)}"]))dnl
 CF_PATH_SYNTAX(withval)
-eval $3="$withval"
+$3="$withval"
 AC_SUBST($3)dnl
 ])dnl
 dnl ---------------------------------------------------------------------------
diff --git a/cfg_defs.sh b/cfg_defs.sh
deleted file mode 100755
index 44bd4cef..00000000
--- a/cfg_defs.sh
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/sh
-# Translate the lynx_cfg.h and config.cache data into a table, useful for
-# display at runtime.
-
-TOP="${1-.}"
-OUT=cfg_defs.h
-
-# just in case we want to run this outside the makefile
-: ${SHELL:=/bin/sh}
-
-cat >$OUT <<EOF
-#ifndef CFG_DEFS_H
-#define CFG_DEFS_H 1
-
-static const struct {
-	const char *name;
-	const char *value;
-} config_cache[] = {
-EOF
-
-sed \
-	-e '/^#/d'     \
-	-e 's/^.[^=]*_cv_//' \
-	-e 's/=\${.*=/=/'  \
-	-e 's/}$//'          \
-	config.cache | $SHELL $TOP/cfg_edit.sh >>$OUT
-
-cat >>$OUT <<EOF
-};
-
-static const struct {
-	const char *name;
-	const char *value;
-} config_defines[] = {
-EOF
-fgrep	'#define' lynx_cfg.h |
-sed	-e 's@	@ @g' \
-	-e 's@  @ @g' \
-	-e 's@^[ 	]*#define[ 	]*@@' \
-	-e 's@[ ]*/\*.*\*/@@' \
-	-e 's@[ 	][ 	]*@=@' \
-    | $SHELL $TOP/cfg_edit.sh >>$OUT
-
-cat >>$OUT <<EOF
-};
-
-#endif /* CFG_DEFS_H */
-EOF
diff --git a/cfg_edit.sh b/cfg_edit.sh
deleted file mode 100755
index 6206c6c4..00000000
--- a/cfg_edit.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-# Invoked from cfg_defs.sh as a filter
-# Strip leading and trailing whitespace
-# Escape any iternal '\'
-# Escape any iternal '"'
-# Entify any iternal '&', '<' or '>'
-# Append a '=' if none present'
-# Break into two strings at '='
-# Prefix ' { "' and suffix '" },'
-sort |
-sed	-e 's!^[ 	]*!!' -e 's![ 	]*$!!' \
-	-e 's!\\!\\\\!g'        \
-	-e 's!"!\\"!g'          \
-	-e 's!&!\&amp;!g' -e 's!<!\&lt;!g' -e 's!>!\&gt;!g' \
-	-e 's!^[^=]*$!&=!' \
-	-e 's!=!",	"!'     \
-	-e 's!^!	{ "!' -e 's!$!" },!'
diff --git a/config.guess b/config.guess
index f8901bc0..396482d6 100755
--- a/config.guess
+++ b/config.guess
@@ -4,7 +4,7 @@
 #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
 #   Inc.
 
-timestamp='2006-04-26'
+timestamp='2006-07-02'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -211,7 +211,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
 	echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
 	exit ;;
     macppc:MirBSD:*:*)
-	echo powerppc-unknown-mirbsd${UNAME_RELEASE}
+	echo powerpc-unknown-mirbsd${UNAME_RELEASE}
 	exit ;;
     *:MirBSD:*:*)
 	echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
@@ -790,10 +790,10 @@ EOF
     i*:PW*:*)
 	echo ${UNAME_MACHINE}-pc-pw32
 	exit ;;
-    x86:Interix*:[345]*)
+    x86:Interix*:[3456]*)
 	echo i586-pc-interix${UNAME_RELEASE}
 	exit ;;
-    EM64T:Interix*:[345]*)
+    EM64T:Interix*:[3456]*)
 	echo x86_64-unknown-interix${UNAME_RELEASE}
 	exit ;;
     [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
@@ -831,6 +831,9 @@ EOF
     arm*:Linux:*:*)
 	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
+    avr32*:Linux:*:*)
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	exit ;;
     cris:Linux:*:*)
 	echo cris-axis-linux-gnu
 	exit ;;
diff --git a/config.sub b/config.sub
index 4d936e23..387c18d1 100755
--- a/config.sub
+++ b/config.sub
@@ -4,7 +4,7 @@
 #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
 #   Inc.
 
-timestamp='2006-05-13'
+timestamp='2006-07-02'
 
 # This file is (in principle) common to ALL GNU software.
 # The presence of a machine in this file suggests that SOME GNU software
@@ -241,7 +241,7 @@ case $basic_machine in
 	| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
 	| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
 	| am33_2.0 \
-	| arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
+	| arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
 	| bfin \
 	| c4x | clipper \
 	| d10v | d30v | dlx | dsp16xx \
@@ -317,7 +317,7 @@ case $basic_machine in
 	| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
 	| alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
 	| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
-	| avr-* \
+	| avr-* | avr32-* \
 	| bfin-* | bs2000-* \
 	| c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
 	| clipper-* | craynv-* | cydra-* \
@@ -1214,7 +1214,7 @@ case $os in
 	      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
 	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
 	      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
-	      | -skyos* | -haiku* | -rdos*)
+	      | -skyos* | -haiku* | -rdos* | -toppers*)
 	# Remember, each alternative MUST END IN *, to match a version number.
 		;;
 	-qnx*)
diff --git a/configure b/configure
index feec5746..2bbcf3da 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in 2.8.6dev.17.
+# From configure.in 2.8.6dev.18.
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by Autoconf 2.52.20030208.
 #
@@ -711,6 +711,8 @@ Basic Configuration Options:
   --with-screen=XXX       select screen type (XXX is curses (default),
                           ncurses, ncursesw, pdcurses or slang)
   --with-curses-dir=DIR   directory in which (n)curses is installed
+  --with-cfg-file{=path}  specify the default configuration file
+                          (default: LIBDIR/lynx.cfg)
   --with-charsets=list    limit charsets to given list of MIME names
 Experimental Options:
   --disable-bibp-urls     disable support for bibp: URLs
@@ -721,7 +723,9 @@ Experimental Options:
   --enable-charset-choice use experimental charset-selection logic
   --enable-cjk            use experimental CJK logic
   --enable-japanese-utf8  use experimental Japanese UTF-8 logic
-  --enable-color-style    use optional/experimental color style (ncurses/curses)
+  --disable-color-style   use color style (ncurses/curses)
+  --with-lss-file{=path}  specify the default style-sheet file
+                          (default: LIBDIR/lynx.lss)
   --enable-default-colors enable use of default-colors (ncurses/slang)
   --enable-htmlized-cfg   build experimental htmlized lynx.cfg
   --enable-ipv6           use experimental ipv6 (with ipv4) support
@@ -968,7 +972,7 @@ if test -z "$CONFIG_SITE"; then
 fi
 for ac_site_file in $CONFIG_SITE; do
   if test -r "$ac_site_file"; then
-    { echo "$as_me:971: loading site script $ac_site_file" >&5
+    { echo "$as_me:975: loading site script $ac_site_file" >&5
 echo "$as_me: loading site script $ac_site_file" >&6;}
     cat "$ac_site_file" >&5
     . "$ac_site_file"
@@ -979,7 +983,7 @@ if test -r "$cache_file"; then
   # Some versions of bash will fail to source /dev/null (special
   # files actually), so we avoid doing that.
   if test -f "$cache_file"; then
-    { echo "$as_me:982: loading cache $cache_file" >&5
+    { echo "$as_me:986: loading cache $cache_file" >&5
 echo "$as_me: loading cache $cache_file" >&6;}
     case $cache_file in
       [\\/]* | ?:[\\/]* ) . $cache_file;;
@@ -987,7 +991,7 @@ echo "$as_me: loading cache $cache_file" >&6;}
     esac
   fi
 else
-  { echo "$as_me:990: creating cache $cache_file" >&5
+  { echo "$as_me:994: creating cache $cache_file" >&5
 echo "$as_me: creating cache $cache_file" >&6;}
   >$cache_file
 fi
@@ -1003,21 +1007,21 @@ for ac_var in `(set) 2>&1 |
   eval ac_new_val="\$ac_env_${ac_var}_value"
   case $ac_old_set,$ac_new_set in
     set,)
-      { echo "$as_me:1006: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
+      { echo "$as_me:1010: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
       ac_cache_corrupted=: ;;
     ,set)
-      { echo "$as_me:1010: error: \`$ac_var' was not set in the previous run" >&5
+      { echo "$as_me:1014: error: \`$ac_var' was not set in the previous run" >&5
 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
       ac_cache_corrupted=: ;;
     ,);;
     *)
       if test "x$ac_old_val" != "x$ac_new_val"; then
-        { echo "$as_me:1016: error: \`$ac_var' has changed since the previous run:" >&5
+        { echo "$as_me:1020: error: \`$ac_var' has changed since the previous run:" >&5
 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
-        { echo "$as_me:1018:   former value:  $ac_old_val" >&5
+        { echo "$as_me:1022:   former value:  $ac_old_val" >&5
 echo "$as_me:   former value:  $ac_old_val" >&2;}
-        { echo "$as_me:1020:   current value: $ac_new_val" >&5
+        { echo "$as_me:1024:   current value: $ac_new_val" >&5
 echo "$as_me:   current value: $ac_new_val" >&2;}
         ac_cache_corrupted=:
       fi;;
@@ -1036,9 +1040,9 @@ echo "$as_me:   current value: $ac_new_val" >&2;}
   fi
 done
 if $ac_cache_corrupted; then
-  { echo "$as_me:1039: error: changes in the environment can compromise the build" >&5
+  { echo "$as_me:1043: error: changes in the environment can compromise the build" >&5
 echo "$as_me: error: changes in the environment can compromise the build" >&2;}
-  { { echo "$as_me:1041: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
+  { { echo "$as_me:1045: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -1058,10 +1062,10 @@ esac
 echo "#! $SHELL" >conftest.sh
 echo  "exit 0"   >>conftest.sh
 chmod +x conftest.sh
-if { (echo "$as_me:1061: PATH=\".;.\"; conftest.sh") >&5
+if { (echo "$as_me:1065: PATH=\".;.\"; conftest.sh") >&5
   (PATH=".;."; conftest.sh) 2>&5
   ac_status=$?
-  echo "$as_me:1064: \$? = $ac_status" >&5
+  echo "$as_me:1068: \$? = $ac_status" >&5
   (exit $ac_status); }; then
   ac_path_separator=';'
 else
@@ -1096,7 +1100,7 @@ for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
   fi
 done
 if test -z "$ac_aux_dir"; then
-  { { echo "$as_me:1099: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
+  { { echo "$as_me:1103: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -1106,11 +1110,11 @@ ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
 
 # Make sure we can run config.sub.
 $ac_config_sub sun4 >/dev/null 2>&1 ||
-  { { echo "$as_me:1109: error: cannot run $ac_config_sub" >&5
+  { { echo "$as_me:1113: error: cannot run $ac_config_sub" >&5
 echo "$as_me: error: cannot run $ac_config_sub" >&2;}
    { (exit 1); exit 1; }; }
 
-echo "$as_me:1113: checking build system type" >&5
+echo "$as_me:1117: checking build system type" >&5
 echo $ECHO_N "checking build system type... $ECHO_C" >&6
 if test "${ac_cv_build+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1119,23 +1123,23 @@ else
 test -z "$ac_cv_build_alias" &&
   ac_cv_build_alias=`$ac_config_guess`
 test -z "$ac_cv_build_alias" &&
-  { { echo "$as_me:1122: error: cannot guess build type; you must specify one" >&5
+  { { echo "$as_me:1126: error: cannot guess build type; you must specify one" >&5
 echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
    { (exit 1); exit 1; }; }
 ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
-  { { echo "$as_me:1126: error: $ac_config_sub $ac_cv_build_alias failed." >&5
+  { { echo "$as_me:1130: error: $ac_config_sub $ac_cv_build_alias failed." >&5
 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;}
    { (exit 1); exit 1; }; }
 
 fi
-echo "$as_me:1131: result: $ac_cv_build" >&5
+echo "$as_me:1135: result: $ac_cv_build" >&5
 echo "${ECHO_T}$ac_cv_build" >&6
 build=$ac_cv_build
 build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
 
-echo "$as_me:1138: checking host system type" >&5
+echo "$as_me:1142: checking host system type" >&5
 echo $ECHO_N "checking host system type... $ECHO_C" >&6
 if test "${ac_cv_host+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1144,12 +1148,12 @@ else
 test -z "$ac_cv_host_alias" &&
   ac_cv_host_alias=$ac_cv_build_alias
 ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
-  { { echo "$as_me:1147: error: $ac_config_sub $ac_cv_host_alias failed" >&5
+  { { echo "$as_me:1151: error: $ac_config_sub $ac_cv_host_alias failed" >&5
 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
    { (exit 1); exit 1; }; }
 
 fi
-echo "$as_me:1152: result: $ac_cv_host" >&5
+echo "$as_me:1156: result: $ac_cv_host" >&5
 echo "${ECHO_T}$ac_cv_host" >&6
 host=$ac_cv_host
 host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
@@ -1157,7 +1161,7 @@ host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
 
 if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then
-	echo "$as_me:1160: checking target system type" >&5
+	echo "$as_me:1164: checking target system type" >&5
 echo $ECHO_N "checking target system type... $ECHO_C" >&6
 if test "${ac_cv_target+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1166,12 +1170,12 @@ else
 test "x$ac_cv_target_alias" = "x" &&
   ac_cv_target_alias=$ac_cv_host_alias
 ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
-  { { echo "$as_me:1169: error: $ac_config_sub $ac_cv_target_alias failed" >&5
+  { { echo "$as_me:1173: error: $ac_config_sub $ac_cv_target_alias failed" >&5
 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
    { (exit 1); exit 1; }; }
 
 fi
-echo "$as_me:1174: result: $ac_cv_target" >&5
+echo "$as_me:1178: result: $ac_cv_target" >&5
 echo "${ECHO_T}$ac_cv_target" >&6
 target=$ac_cv_target
 target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
@@ -1202,13 +1206,13 @@ else
 fi
 
 test -z "$system_name" && system_name="$cf_cv_system_name"
-test -n "$cf_cv_system_name" && echo "$as_me:1205: result: Configuring for $cf_cv_system_name" >&5
+test -n "$cf_cv_system_name" && echo "$as_me:1209: result: Configuring for $cf_cv_system_name" >&5
 echo "${ECHO_T}Configuring for $cf_cv_system_name" >&6
 
 if test ".$system_name" != ".$cf_cv_system_name" ; then
-	echo "$as_me:1209: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
+	echo "$as_me:1213: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
 echo "${ECHO_T}Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&6
-	{ { echo "$as_me:1211: error: \"Please remove config.cache and try again.\"" >&5
+	{ { echo "$as_me:1215: error: \"Please remove config.cache and try again.\"" >&5
 echo "$as_me: error: \"Please remove config.cache and try again.\"" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -1216,14 +1220,14 @@ fi
 # Check whether --with-system-type or --without-system-type was given.
 if test "${with_system_type+set}" = set; then
   withval="$with_system_type"
-  { echo "$as_me:1219: WARNING: overriding system type $host_os to $withval" >&5
+  { echo "$as_me:1223: WARNING: overriding system type $host_os to $withval" >&5
 echo "$as_me: WARNING: overriding system type $host_os to $withval" >&2;}
  host_os=$withval
 fi;
 
 PACKAGE=lynx
 # $Format: "VERSION=$ProjectVersion$"$
-VERSION=2.8.6dev.18
+VERSION=2.8.6dev.19
 
 test -z "$ALL_LINGUAS" && ALL_LINGUAS=`test -d $srcdir/po && cd $srcdir/po && echo *.po|sed -e 's/\.po//g' -e 's/*//'`
 
@@ -1242,7 +1246,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
 if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
 set dummy ${ac_tool_prefix}gcc; ac_word=$2
-echo "$as_me:1245: checking for $ac_word" >&5
+echo "$as_me:1249: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1257,7 +1261,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_CC="${ac_tool_prefix}gcc"
-echo "$as_me:1260: found $ac_dir/$ac_word" >&5
+echo "$as_me:1264: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1265,10 +1269,10 @@ fi
 fi
 CC=$ac_cv_prog_CC
 if test -n "$CC"; then
-  echo "$as_me:1268: result: $CC" >&5
+  echo "$as_me:1272: result: $CC" >&5
 echo "${ECHO_T}$CC" >&6
 else
-  echo "$as_me:1271: result: no" >&5
+  echo "$as_me:1275: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1277,7 +1281,7 @@ if test -z "$ac_cv_prog_CC"; then
   ac_ct_CC=$CC
   # Extract the first word of "gcc", so it can be a program name with args.
 set dummy gcc; ac_word=$2
-echo "$as_me:1280: checking for $ac_word" >&5
+echo "$as_me:1284: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1292,7 +1296,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_ac_ct_CC="gcc"
-echo "$as_me:1295: found $ac_dir/$ac_word" >&5
+echo "$as_me:1299: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1300,10 +1304,10 @@ fi
 fi
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
 if test -n "$ac_ct_CC"; then
-  echo "$as_me:1303: result: $ac_ct_CC" >&5
+  echo "$as_me:1307: result: $ac_ct_CC" >&5
 echo "${ECHO_T}$ac_ct_CC" >&6
 else
-  echo "$as_me:1306: result: no" >&5
+  echo "$as_me:1310: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1316,7 +1320,7 @@ if test -z "$CC"; then
   if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
 set dummy ${ac_tool_prefix}cc; ac_word=$2
-echo "$as_me:1319: checking for $ac_word" >&5
+echo "$as_me:1323: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1331,7 +1335,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_CC="${ac_tool_prefix}cc"
-echo "$as_me:1334: found $ac_dir/$ac_word" >&5
+echo "$as_me:1338: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1339,10 +1343,10 @@ fi
 fi
 CC=$ac_cv_prog_CC
 if test -n "$CC"; then
-  echo "$as_me:1342: result: $CC" >&5
+  echo "$as_me:1346: result: $CC" >&5
 echo "${ECHO_T}$CC" >&6
 else
-  echo "$as_me:1345: result: no" >&5
+  echo "$as_me:1349: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1351,7 +1355,7 @@ if test -z "$ac_cv_prog_CC"; then
   ac_ct_CC=$CC
   # Extract the first word of "cc", so it can be a program name with args.
 set dummy cc; ac_word=$2
-echo "$as_me:1354: checking for $ac_word" >&5
+echo "$as_me:1358: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1366,7 +1370,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_ac_ct_CC="cc"
-echo "$as_me:1369: found $ac_dir/$ac_word" >&5
+echo "$as_me:1373: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1374,10 +1378,10 @@ fi
 fi
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
 if test -n "$ac_ct_CC"; then
-  echo "$as_me:1377: result: $ac_ct_CC" >&5
+  echo "$as_me:1381: result: $ac_ct_CC" >&5
 echo "${ECHO_T}$ac_ct_CC" >&6
 else
-  echo "$as_me:1380: result: no" >&5
+  echo "$as_me:1384: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1390,7 +1394,7 @@ fi
 if test -z "$CC"; then
   # Extract the first word of "cc", so it can be a program name with args.
 set dummy cc; ac_word=$2
-echo "$as_me:1393: checking for $ac_word" >&5
+echo "$as_me:1397: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1410,7 +1414,7 @@ if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
   continue
 fi
 ac_cv_prog_CC="cc"
-echo "$as_me:1413: found $ac_dir/$ac_word" >&5
+echo "$as_me:1417: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1432,10 +1436,10 @@ fi
 fi
 CC=$ac_cv_prog_CC
 if test -n "$CC"; then
-  echo "$as_me:1435: result: $CC" >&5
+  echo "$as_me:1439: result: $CC" >&5
 echo "${ECHO_T}$CC" >&6
 else
-  echo "$as_me:1438: result: no" >&5
+  echo "$as_me:1442: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1446,7 +1450,7 @@ if test -z "$CC"; then
   do
     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
-echo "$as_me:1449: checking for $ac_word" >&5
+echo "$as_me:1453: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1461,7 +1465,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
-echo "$as_me:1464: found $ac_dir/$ac_word" >&5
+echo "$as_me:1468: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1469,10 +1473,10 @@ fi
 fi
 CC=$ac_cv_prog_CC
 if test -n "$CC"; then
-  echo "$as_me:1472: result: $CC" >&5
+  echo "$as_me:1476: result: $CC" >&5
 echo "${ECHO_T}$CC" >&6
 else
-  echo "$as_me:1475: result: no" >&5
+  echo "$as_me:1479: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1485,7 +1489,7 @@ if test -z "$CC"; then
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:1488: checking for $ac_word" >&5
+echo "$as_me:1492: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1500,7 +1504,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_ac_ct_CC="$ac_prog"
-echo "$as_me:1503: found $ac_dir/$ac_word" >&5
+echo "$as_me:1507: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1508,10 +1512,10 @@ fi
 fi
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
 if test -n "$ac_ct_CC"; then
-  echo "$as_me:1511: result: $ac_ct_CC" >&5
+  echo "$as_me:1515: result: $ac_ct_CC" >&5
 echo "${ECHO_T}$ac_ct_CC" >&6
 else
-  echo "$as_me:1514: result: no" >&5
+  echo "$as_me:1518: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1523,32 +1527,32 @@ fi
 
 fi
 
-test -z "$CC" && { { echo "$as_me:1526: error: no acceptable cc found in \$PATH" >&5
+test -z "$CC" && { { echo "$as_me:1530: error: no acceptable cc found in \$PATH" >&5
 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}
    { (exit 1); exit 1; }; }
 
 # Provide some information about the compiler.
-echo "$as_me:1531:" \
+echo "$as_me:1535:" \
      "checking for C compiler version" >&5
 ac_compiler=`set X $ac_compile; echo $2`
-{ (eval echo "$as_me:1534: \"$ac_compiler --version </dev/null >&5\"") >&5
+{ (eval echo "$as_me:1538: \"$ac_compiler --version </dev/null >&5\"") >&5
   (eval $ac_compiler --version </dev/null >&5) 2>&5
   ac_status=$?
-  echo "$as_me:1537: \$? = $ac_status" >&5
+  echo "$as_me:1541: \$? = $ac_status" >&5
   (exit $ac_status); }
-{ (eval echo "$as_me:1539: \"$ac_compiler -v </dev/null >&5\"") >&5
+{ (eval echo "$as_me:1543: \"$ac_compiler -v </dev/null >&5\"") >&5
   (eval $ac_compiler -v </dev/null >&5) 2>&5
   ac_status=$?
-  echo "$as_me:1542: \$? = $ac_status" >&5
+  echo "$as_me:1546: \$? = $ac_status" >&5
   (exit $ac_status); }
-{ (eval echo "$as_me:1544: \"$ac_compiler -V </dev/null >&5\"") >&5
+{ (eval echo "$as_me:1548: \"$ac_compiler -V </dev/null >&5\"") >&5
   (eval $ac_compiler -V </dev/null >&5) 2>&5
   ac_status=$?
-  echo "$as_me:1547: \$? = $ac_status" >&5
+  echo "$as_me:1551: \$? = $ac_status" >&5
   (exit $ac_status); }
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 1551 "configure"
+#line 1555 "configure"
 #include "confdefs.h"
 
 int
@@ -1564,13 +1568,13 @@ ac_clean_files="$ac_clean_files a.out a.exe"
 # Try to create an executable without -o first, disregard a.out.
 # It will help us diagnose broken compilers, and finding out an intuition
 # of exeext.
-echo "$as_me:1567: checking for C compiler default output" >&5
+echo "$as_me:1571: checking for C compiler default output" >&5
 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
-if { (eval echo "$as_me:1570: \"$ac_link_default\"") >&5
+if { (eval echo "$as_me:1574: \"$ac_link_default\"") >&5
   (eval $ac_link_default) 2>&5
   ac_status=$?
-  echo "$as_me:1573: \$? = $ac_status" >&5
+  echo "$as_me:1577: \$? = $ac_status" >&5
   (exit $ac_status); }; then
   # Find the output, starting from the most likely.  This scheme is
 # not robust to junk in `.', hence go to wildcards (a.*) only as a last
@@ -1593,34 +1597,34 @@ done
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-{ { echo "$as_me:1596: error: C compiler cannot create executables" >&5
+{ { echo "$as_me:1600: error: C compiler cannot create executables" >&5
 echo "$as_me: error: C compiler cannot create executables" >&2;}
    { (exit 77); exit 77; }; }
 fi
 
 ac_exeext=$ac_cv_exeext
-echo "$as_me:1602: result: $ac_file" >&5
+echo "$as_me:1606: result: $ac_file" >&5
 echo "${ECHO_T}$ac_file" >&6
 
 # Check the compiler produces executables we can run.  If not, either
 # the compiler is broken, or we cross compile.
-echo "$as_me:1607: checking whether the C compiler works" >&5
+echo "$as_me:1611: checking whether the C compiler works" >&5
 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
 # If not cross compiling, check that we can run a simple program.
 if test "$cross_compiling" != yes; then
   if { ac_try='./$ac_file'
-  { (eval echo "$as_me:1613: \"$ac_try\"") >&5
+  { (eval echo "$as_me:1617: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:1616: \$? = $ac_status" >&5
+  echo "$as_me:1620: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
     cross_compiling=no
   else
     if test "$cross_compiling" = maybe; then
 	cross_compiling=yes
     else
-	{ { echo "$as_me:1623: error: cannot run C compiled programs.
+	{ { echo "$as_me:1627: error: cannot run C compiled programs.
 If you meant to cross compile, use \`--host'." >&5
 echo "$as_me: error: cannot run C compiled programs.
 If you meant to cross compile, use \`--host'." >&2;}
@@ -1628,24 +1632,24 @@ If you meant to cross compile, use \`--host'." >&2;}
     fi
   fi
 fi
-echo "$as_me:1631: result: yes" >&5
+echo "$as_me:1635: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 
 rm -f a.out a.exe conftest$ac_cv_exeext
 ac_clean_files=$ac_clean_files_save
 # Check the compiler produces executables we can run.  If not, either
 # the compiler is broken, or we cross compile.
-echo "$as_me:1638: checking whether we are cross compiling" >&5
+echo "$as_me:1642: checking whether we are cross compiling" >&5
 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
-echo "$as_me:1640: result: $cross_compiling" >&5
+echo "$as_me:1644: result: $cross_compiling" >&5
 echo "${ECHO_T}$cross_compiling" >&6
 
-echo "$as_me:1643: checking for executable suffix" >&5
+echo "$as_me:1647: checking for executable suffix" >&5
 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
-if { (eval echo "$as_me:1645: \"$ac_link\"") >&5
+if { (eval echo "$as_me:1649: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:1648: \$? = $ac_status" >&5
+  echo "$as_me:1652: \$? = $ac_status" >&5
   (exit $ac_status); }; then
   # If both `conftest.exe' and `conftest' are `present' (well, observable)
 # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
@@ -1661,25 +1665,25 @@ for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
   esac
 done
 else
-  { { echo "$as_me:1664: error: cannot compute EXEEXT: cannot compile and link" >&5
+  { { echo "$as_me:1668: error: cannot compute EXEEXT: cannot compile and link" >&5
 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;}
    { (exit 1); exit 1; }; }
 fi
 
 rm -f conftest$ac_cv_exeext
-echo "$as_me:1670: result: $ac_cv_exeext" >&5
+echo "$as_me:1674: result: $ac_cv_exeext" >&5
 echo "${ECHO_T}$ac_cv_exeext" >&6
 
 rm -f conftest.$ac_ext
 EXEEXT=$ac_cv_exeext
 ac_exeext=$EXEEXT
-echo "$as_me:1676: checking for object suffix" >&5
+echo "$as_me:1680: checking for object suffix" >&5
 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6
 if test "${ac_cv_objext+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 1682 "configure"
+#line 1686 "configure"
 #include "confdefs.h"
 
 int
@@ -1691,10 +1695,10 @@ main ()
 }
 _ACEOF
 rm -f conftest.o conftest.obj
-if { (eval echo "$as_me:1694: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:1698: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:1697: \$? = $ac_status" >&5
+  echo "$as_me:1701: \$? = $ac_status" >&5
   (exit $ac_status); }; then
   for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
   case $ac_file in
@@ -1706,24 +1710,24 @@ done
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-{ { echo "$as_me:1709: error: cannot compute OBJEXT: cannot compile" >&5
+{ { echo "$as_me:1713: error: cannot compute OBJEXT: cannot compile" >&5
 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;}
    { (exit 1); exit 1; }; }
 fi
 
 rm -f conftest.$ac_cv_objext conftest.$ac_ext
 fi
-echo "$as_me:1716: result: $ac_cv_objext" >&5
+echo "$as_me:1720: result: $ac_cv_objext" >&5
 echo "${ECHO_T}$ac_cv_objext" >&6
 OBJEXT=$ac_cv_objext
 ac_objext=$OBJEXT
-echo "$as_me:1720: checking whether we are using the GNU C compiler" >&5
+echo "$as_me:1724: checking whether we are using the GNU C compiler" >&5
 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
 if test "${ac_cv_c_compiler_gnu+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 1726 "configure"
+#line 1730 "configure"
 #include "confdefs.h"
 
 int
@@ -1738,16 +1742,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:1741: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:1745: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:1744: \$? = $ac_status" >&5
+  echo "$as_me:1748: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:1747: \"$ac_try\"") >&5
+  { (eval echo "$as_me:1751: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:1750: \$? = $ac_status" >&5
+  echo "$as_me:1754: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_compiler_gnu=yes
 else
@@ -1759,19 +1763,19 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 ac_cv_c_compiler_gnu=$ac_compiler_gnu
 
 fi
-echo "$as_me:1762: result: $ac_cv_c_compiler_gnu" >&5
+echo "$as_me:1766: result: $ac_cv_c_compiler_gnu" >&5
 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
 GCC=`test $ac_compiler_gnu = yes && echo yes`
 ac_test_CFLAGS=${CFLAGS+set}
 ac_save_CFLAGS=$CFLAGS
 CFLAGS="-g"
-echo "$as_me:1768: checking whether $CC accepts -g" >&5
+echo "$as_me:1772: checking whether $CC accepts -g" >&5
 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
 if test "${ac_cv_prog_cc_g+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 1774 "configure"
+#line 1778 "configure"
 #include "confdefs.h"
 
 int
@@ -1783,16 +1787,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:1786: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:1790: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:1789: \$? = $ac_status" >&5
+  echo "$as_me:1793: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:1792: \"$ac_try\"") >&5
+  { (eval echo "$as_me:1796: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:1795: \$? = $ac_status" >&5
+  echo "$as_me:1799: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_prog_cc_g=yes
 else
@@ -1802,7 +1806,7 @@ ac_cv_prog_cc_g=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:1805: result: $ac_cv_prog_cc_g" >&5
+echo "$as_me:1809: result: $ac_cv_prog_cc_g" >&5
 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
 if test "$ac_test_CFLAGS" = set; then
   CFLAGS=$ac_save_CFLAGS
@@ -1829,16 +1833,16 @@ cat >conftest.$ac_ext <<_ACEOF
 #endif
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:1832: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:1836: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:1835: \$? = $ac_status" >&5
+  echo "$as_me:1839: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:1838: \"$ac_try\"") >&5
+  { (eval echo "$as_me:1842: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:1841: \$? = $ac_status" >&5
+  echo "$as_me:1845: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   for ac_declaration in \
    ''\
@@ -1850,7 +1854,7 @@ if { (eval echo "$as_me:1832: \"$ac_compile\"") >&5
    'void exit (int);'
 do
   cat >conftest.$ac_ext <<_ACEOF
-#line 1853 "configure"
+#line 1857 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 $ac_declaration
@@ -1863,16 +1867,16 @@ exit (42);
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:1866: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:1870: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:1869: \$? = $ac_status" >&5
+  echo "$as_me:1873: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:1872: \"$ac_try\"") >&5
+  { (eval echo "$as_me:1876: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:1875: \$? = $ac_status" >&5
+  echo "$as_me:1879: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -1882,7 +1886,7 @@ continue
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
   cat >conftest.$ac_ext <<_ACEOF
-#line 1885 "configure"
+#line 1889 "configure"
 #include "confdefs.h"
 $ac_declaration
 int
@@ -1894,16 +1898,16 @@ exit (42);
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:1897: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:1901: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:1900: \$? = $ac_status" >&5
+  echo "$as_me:1904: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:1903: \"$ac_try\"") >&5
+  { (eval echo "$as_me:1907: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:1906: \$? = $ac_status" >&5
+  echo "$as_me:1910: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   break
 else
@@ -1935,7 +1939,7 @@ ac_cpp='$CPP $CPPFLAGS'
 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
-echo "$as_me:1938: checking how to run the C preprocessor" >&5
+echo "$as_me:1942: checking how to run the C preprocessor" >&5
 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
 # On Suns, sometimes $CPP names a directory.
 if test -n "$CPP" && test -d "$CPP"; then
@@ -1956,18 +1960,18 @@ do
   # On the NeXT, cc -E runs the code through the compiler's parser,
   # not just through cpp. "Syntax error" is here to catch this case.
   cat >conftest.$ac_ext <<_ACEOF
-#line 1959 "configure"
+#line 1963 "configure"
 #include "confdefs.h"
 #include <assert.h>
                      Syntax error
 _ACEOF
-if { (eval echo "$as_me:1964: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:1968: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:1970: \$? = $ac_status" >&5
+  echo "$as_me:1974: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -1990,17 +1994,17 @@ rm -f conftest.err conftest.$ac_ext
   # OK, works on sane cases.  Now check whether non-existent headers
   # can be detected and how.
   cat >conftest.$ac_ext <<_ACEOF
-#line 1993 "configure"
+#line 1997 "configure"
 #include "confdefs.h"
 #include <ac_nonexistent.h>
 _ACEOF
-if { (eval echo "$as_me:1997: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:2001: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:2003: \$? = $ac_status" >&5
+  echo "$as_me:2007: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -2037,7 +2041,7 @@ fi
 else
   ac_cv_prog_CPP=$CPP
 fi
-echo "$as_me:2040: result: $CPP" >&5
+echo "$as_me:2044: result: $CPP" >&5
 echo "${ECHO_T}$CPP" >&6
 ac_preproc_ok=false
 for ac_c_preproc_warn_flag in '' yes
@@ -2047,18 +2051,18 @@ do
   # On the NeXT, cc -E runs the code through the compiler's parser,
   # not just through cpp. "Syntax error" is here to catch this case.
   cat >conftest.$ac_ext <<_ACEOF
-#line 2050 "configure"
+#line 2054 "configure"
 #include "confdefs.h"
 #include <assert.h>
                      Syntax error
 _ACEOF
-if { (eval echo "$as_me:2055: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:2059: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:2061: \$? = $ac_status" >&5
+  echo "$as_me:2065: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -2081,17 +2085,17 @@ rm -f conftest.err conftest.$ac_ext
   # OK, works on sane cases.  Now check whether non-existent headers
   # can be detected and how.
   cat >conftest.$ac_ext <<_ACEOF
-#line 2084 "configure"
+#line 2088 "configure"
 #include "confdefs.h"
 #include <ac_nonexistent.h>
 _ACEOF
-if { (eval echo "$as_me:2088: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:2092: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:2094: \$? = $ac_status" >&5
+  echo "$as_me:2098: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -2119,7 +2123,7 @@ rm -f conftest.err conftest.$ac_ext
 if $ac_preproc_ok; then
   :
 else
-  { { echo "$as_me:2122: error: C preprocessor \"$CPP\" fails sanity check" >&5
+  { { echo "$as_me:2126: error: C preprocessor \"$CPP\" fails sanity check" >&5
 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -2130,18 +2134,18 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
-echo "$as_me:2133: checking whether ln -s works" >&5
+echo "$as_me:2137: checking whether ln -s works" >&5
 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
 LN_S=$as_ln_s
 if test "$LN_S" = "ln -s"; then
-  echo "$as_me:2137: result: yes" >&5
+  echo "$as_me:2141: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
-  echo "$as_me:2140: result: no, using $LN_S" >&5
+  echo "$as_me:2144: result: no, using $LN_S" >&5
 echo "${ECHO_T}no, using $LN_S" >&6
 fi
 
-echo "$as_me:2144: checking whether ${MAKE-make} sets \${MAKE}" >&5
+echo "$as_me:2148: checking whether ${MAKE-make} sets \${MAKE}" >&5
 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
 if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
@@ -2161,11 +2165,11 @@ fi
 rm -f conftest.make
 fi
 if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
-  echo "$as_me:2164: result: yes" >&5
+  echo "$as_me:2168: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   SET_MAKE=
 else
-  echo "$as_me:2168: result: no" >&5
+  echo "$as_me:2172: result: no" >&5
 echo "${ECHO_T}no" >&6
   SET_MAKE="MAKE=${MAKE-make}"
 fi
@@ -2182,7 +2186,7 @@ fi
 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 # ./install, which can be erroneously created by make from ./install.sh.
-echo "$as_me:2185: checking for a BSD compatible install" >&5
+echo "$as_me:2189: checking for a BSD compatible install" >&5
 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
 if test -z "$INSTALL"; then
 if test "${ac_cv_path_install+set}" = set; then
@@ -2231,7 +2235,7 @@ fi
     INSTALL=$ac_install_sh
   fi
 fi
-echo "$as_me:2234: result: $INSTALL" >&5
+echo "$as_me:2238: result: $INSTALL" >&5
 echo "${ECHO_T}$INSTALL" >&6
 
 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
@@ -2246,7 +2250,7 @@ for ac_prog in lint alint lclint tdlint
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:2249: checking for $ac_word" >&5
+echo "$as_me:2253: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_LINT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2261,7 +2265,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_LINT="$ac_prog"
-echo "$as_me:2264: found $ac_dir/$ac_word" >&5
+echo "$as_me:2268: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2269,20 +2273,20 @@ fi
 fi
 LINT=$ac_cv_prog_LINT
 if test -n "$LINT"; then
-  echo "$as_me:2272: result: $LINT" >&5
+  echo "$as_me:2276: result: $LINT" >&5
 echo "${ECHO_T}$LINT" >&6
 else
-  echo "$as_me:2275: result: no" >&5
+  echo "$as_me:2279: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
   test -n "$LINT" && break
 done
 
-echo "$as_me:2282: checking for AIX" >&5
+echo "$as_me:2286: checking for AIX" >&5
 echo $ECHO_N "checking for AIX... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 2285 "configure"
+#line 2289 "configure"
 #include "confdefs.h"
 #ifdef _AIX
   yes
@@ -2291,24 +2295,24 @@ cat >conftest.$ac_ext <<_ACEOF
 _ACEOF
 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
   egrep "yes" >/dev/null 2>&1; then
-  echo "$as_me:2294: result: yes" >&5
+  echo "$as_me:2298: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 cat >>confdefs.h <<\EOF
 #define _ALL_SOURCE 1
 EOF
 
 else
-  echo "$as_me:2301: result: no" >&5
+  echo "$as_me:2305: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 rm -f conftest*
 
-echo "$as_me:2306: checking for POSIXized ISC" >&5
+echo "$as_me:2310: checking for POSIXized ISC" >&5
 echo $ECHO_N "checking for POSIXized ISC... $ECHO_C" >&6
 if test -d /etc/conf/kconfig.d &&
    grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
 then
-  echo "$as_me:2311: result: yes" >&5
+  echo "$as_me:2315: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   ISC=yes # If later tests want to check for ISC.
 
@@ -2322,7 +2326,7 @@ EOF
     CC="$CC -Xp"
   fi
 else
-  echo "$as_me:2325: result: no" >&5
+  echo "$as_me:2329: result: no" >&5
 echo "${ECHO_T}no" >&6
   ISC=
 fi
@@ -2363,7 +2367,7 @@ else
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:2366: checking for $ac_word" >&5
+echo "$as_me:2370: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_BUILD_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2378,7 +2382,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_BUILD_CC="$ac_prog"
-echo "$as_me:2381: found $ac_dir/$ac_word" >&5
+echo "$as_me:2385: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2386,10 +2390,10 @@ fi
 fi
 BUILD_CC=$ac_cv_prog_BUILD_CC
 if test -n "$BUILD_CC"; then
-  echo "$as_me:2389: result: $BUILD_CC" >&5
+  echo "$as_me:2393: result: $BUILD_CC" >&5
 echo "${ECHO_T}$BUILD_CC" >&6
 else
-  echo "$as_me:2392: result: no" >&5
+  echo "$as_me:2396: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2397,12 +2401,12 @@ fi
 done
 
 fi;
-	echo "$as_me:2400: checking for native build C compiler" >&5
+	echo "$as_me:2404: checking for native build C compiler" >&5
 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6
-	echo "$as_me:2402: result: $BUILD_CC" >&5
+	echo "$as_me:2406: result: $BUILD_CC" >&5
 echo "${ECHO_T}$BUILD_CC" >&6
 
-	echo "$as_me:2405: checking for native build C preprocessor" >&5
+	echo "$as_me:2409: checking for native build C preprocessor" >&5
 echo $ECHO_N "checking for native build C preprocessor... $ECHO_C" >&6
 
 # Check whether --with-build-cpp or --without-build-cpp was given.
@@ -2412,10 +2416,10 @@ if test "${with_build_cpp+set}" = set; then
 else
   BUILD_CPP='$(BUILD_CC) -E'
 fi;
-	echo "$as_me:2415: result: $BUILD_CPP" >&5
+	echo "$as_me:2419: result: $BUILD_CPP" >&5
 echo "${ECHO_T}$BUILD_CPP" >&6
 
-	echo "$as_me:2418: checking for native build C flags" >&5
+	echo "$as_me:2422: checking for native build C flags" >&5
 echo $ECHO_N "checking for native build C flags... $ECHO_C" >&6
 
 # Check whether --with-build-cflags or --without-build-cflags was given.
@@ -2423,10 +2427,10 @@ if test "${with_build_cflags+set}" = set; then
   withval="$with_build_cflags"
   BUILD_CFLAGS="$withval"
 fi;
-	echo "$as_me:2426: result: $BUILD_CFLAGS" >&5
+	echo "$as_me:2430: result: $BUILD_CFLAGS" >&5
 echo "${ECHO_T}$BUILD_CFLAGS" >&6
 
-	echo "$as_me:2429: checking for native build C preprocessor-flags" >&5
+	echo "$as_me:2433: checking for native build C preprocessor-flags" >&5
 echo $ECHO_N "checking for native build C preprocessor-flags... $ECHO_C" >&6
 
 # Check whether --with-build-cppflags or --without-build-cppflags was given.
@@ -2434,10 +2438,10 @@ if test "${with_build_cppflags+set}" = set; then
   withval="$with_build_cppflags"
   BUILD_CPPFLAGS="$withval"
 fi;
-	echo "$as_me:2437: result: $BUILD_CPPFLAGS" >&5
+	echo "$as_me:2441: result: $BUILD_CPPFLAGS" >&5
 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6
 
-	echo "$as_me:2440: checking for native build linker-flags" >&5
+	echo "$as_me:2444: checking for native build linker-flags" >&5
 echo $ECHO_N "checking for native build linker-flags... $ECHO_C" >&6
 
 # Check whether --with-build-ldflags or --without-build-ldflags was given.
@@ -2445,10 +2449,10 @@ if test "${with_build_ldflags+set}" = set; then
   withval="$with_build_ldflags"
   BUILD_LDFLAGS="$withval"
 fi;
-	echo "$as_me:2448: result: $BUILD_LDFLAGS" >&5
+	echo "$as_me:2452: result: $BUILD_LDFLAGS" >&5
 echo "${ECHO_T}$BUILD_LDFLAGS" >&6
 
-	echo "$as_me:2451: checking for native build linker-libraries" >&5
+	echo "$as_me:2455: checking for native build linker-libraries" >&5
 echo $ECHO_N "checking for native build linker-libraries... $ECHO_C" >&6
 
 # Check whether --with-build-libs or --without-build-libs was given.
@@ -2456,7 +2460,7 @@ if test "${with_build_libs+set}" = set; then
   withval="$with_build_libs"
   BUILD_LIBS="$withval"
 fi;
-	echo "$as_me:2459: result: $BUILD_LIBS" >&5
+	echo "$as_me:2463: result: $BUILD_LIBS" >&5
 echo "${ECHO_T}$BUILD_LIBS" >&6
 
 	# this assumes we're on Unix.
@@ -2466,7 +2470,7 @@ echo "${ECHO_T}$BUILD_LIBS" >&6
 	: ${BUILD_CC:='$(CC)'}
 
 	if ( test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '$(CC)' ) ; then
-		{ { echo "$as_me:2469: error: Cross-build requires two compilers.
+		{ { echo "$as_me:2473: error: Cross-build requires two compilers.
 Use --with-build-cc to specify the native compiler." >&5
 echo "$as_me: error: Cross-build requires two compilers.
 Use --with-build-cc to specify the native compiler." >&2;}
@@ -2487,7 +2491,7 @@ fi
 if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
-echo "$as_me:2490: checking for $ac_word" >&5
+echo "$as_me:2494: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_RANLIB+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2502,7 +2506,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
-echo "$as_me:2505: found $ac_dir/$ac_word" >&5
+echo "$as_me:2509: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2510,10 +2514,10 @@ fi
 fi
 RANLIB=$ac_cv_prog_RANLIB
 if test -n "$RANLIB"; then
-  echo "$as_me:2513: result: $RANLIB" >&5
+  echo "$as_me:2517: result: $RANLIB" >&5
 echo "${ECHO_T}$RANLIB" >&6
 else
-  echo "$as_me:2516: result: no" >&5
+  echo "$as_me:2520: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2522,7 +2526,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
   ac_ct_RANLIB=$RANLIB
   # Extract the first word of "ranlib", so it can be a program name with args.
 set dummy ranlib; ac_word=$2
-echo "$as_me:2525: checking for $ac_word" >&5
+echo "$as_me:2529: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2537,7 +2541,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_ac_ct_RANLIB="ranlib"
-echo "$as_me:2540: found $ac_dir/$ac_word" >&5
+echo "$as_me:2544: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2546,10 +2550,10 @@ fi
 fi
 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
 if test -n "$ac_ct_RANLIB"; then
-  echo "$as_me:2549: result: $ac_ct_RANLIB" >&5
+  echo "$as_me:2553: result: $ac_ct_RANLIB" >&5
 echo "${ECHO_T}$ac_ct_RANLIB" >&6
 else
-  echo "$as_me:2552: result: no" >&5
+  echo "$as_me:2556: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2561,7 +2565,7 @@ fi
 if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
 set dummy ${ac_tool_prefix}ar; ac_word=$2
-echo "$as_me:2564: checking for $ac_word" >&5
+echo "$as_me:2568: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_AR+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2576,7 +2580,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_AR="${ac_tool_prefix}ar"
-echo "$as_me:2579: found $ac_dir/$ac_word" >&5
+echo "$as_me:2583: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2584,10 +2588,10 @@ fi
 fi
 AR=$ac_cv_prog_AR
 if test -n "$AR"; then
-  echo "$as_me:2587: result: $AR" >&5
+  echo "$as_me:2591: result: $AR" >&5
 echo "${ECHO_T}$AR" >&6
 else
-  echo "$as_me:2590: result: no" >&5
+  echo "$as_me:2594: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2596,7 +2600,7 @@ if test -z "$ac_cv_prog_AR"; then
   ac_ct_AR=$AR
   # Extract the first word of "ar", so it can be a program name with args.
 set dummy ar; ac_word=$2
-echo "$as_me:2599: checking for $ac_word" >&5
+echo "$as_me:2603: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2611,7 +2615,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_ac_ct_AR="ar"
-echo "$as_me:2614: found $ac_dir/$ac_word" >&5
+echo "$as_me:2618: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2620,10 +2624,10 @@ fi
 fi
 ac_ct_AR=$ac_cv_prog_ac_ct_AR
 if test -n "$ac_ct_AR"; then
-  echo "$as_me:2623: result: $ac_ct_AR" >&5
+  echo "$as_me:2627: result: $ac_ct_AR" >&5
 echo "${ECHO_T}$ac_ct_AR" >&6
 else
-  echo "$as_me:2626: result: no" >&5
+  echo "$as_me:2630: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2636,18 +2640,21 @@ if test "${cf_cv_subst_AR_OPTS+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
-echo "$as_me:2639: checking for archiver options (symbol AR_OPTS)" >&5
+echo "$as_me:2643: checking for archiver options (symbol AR_OPTS)" >&5
 echo $ECHO_N "checking for archiver options (symbol AR_OPTS)... $ECHO_C" >&6
-test -z "$AR_OPTS" && AR_OPTS=rv
-echo "$as_me:2642: result: $AR_OPTS" >&5
-echo "${ECHO_T}$AR_OPTS" >&6
 
-cf_cv_subst_AR_OPTS=$AR_OPTS
+if test -z "$AR_OPTS" ; then
+	AR_OPTS=rv
+
 fi
 
-AR_OPTS=${cf_cv_subst_AR_OPTS}
+cf_cv_subst_AR_OPTS=$AR_OPTS
+echo "$as_me:2652: result: $AR_OPTS" >&5
+echo "${ECHO_T}$AR_OPTS" >&6
+
+fi
 
-echo "$as_me:2650: checking if you want to see long compiling messages" >&5
+echo "$as_me:2657: checking if you want to see long compiling messages" >&5
 echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6
 
 # Check whether --enable-echo or --disable-echo was given.
@@ -2681,7 +2688,7 @@ else
     ECHO_CC=''
 
 fi;
-echo "$as_me:2684: result: $enableval" >&5
+echo "$as_me:2691: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
 # special case for WWW/*
@@ -2691,7 +2698,7 @@ else
 	DONT_ECHO_CC=''
 fi
 
-echo "$as_me:2694: checking if you want to check memory-leaks" >&5
+echo "$as_me:2701: checking if you want to check memory-leaks" >&5
 echo $ECHO_N "checking if you want to check memory-leaks... $ECHO_C" >&6
 
 # Check whether --enable-find-leaks or --disable-find-leaks was given.
@@ -2708,7 +2715,7 @@ else
   with_leak_checks=no
 
 fi;
-echo "$as_me:2711: result: $with_leak_checks" >&5
+echo "$as_me:2718: result: $with_leak_checks" >&5
 echo "${ECHO_T}$with_leak_checks" >&6
 test "$with_leak_checks" = "yes" && cat >>confdefs.h <<\EOF
 #define LY_FIND_LEAKS 1
@@ -2717,7 +2724,7 @@ EOF
 # The comment about adding -g to $CFLAGS is unclear.  Autoconf tries to add
 # a -g flag; we remove it if the user's $CFLAGS was not set and debugging is
 # disabled.
-echo "$as_me:2720: checking if you want to enable debug-code" >&5
+echo "$as_me:2727: checking if you want to enable debug-code" >&5
 echo $ECHO_N "checking if you want to enable debug-code... $ECHO_C" >&6
 
 # Check whether --enable-debug or --disable-debug was given.
@@ -2734,7 +2741,7 @@ else
   with_debug=no
 
 fi;
-echo "$as_me:2737: result: $with_debug" >&5
+echo "$as_me:2744: result: $with_debug" >&5
 echo "${ECHO_T}$with_debug" >&6
 if test "$with_debug" = "yes" ; then
 	case $host_os in
@@ -2759,7 +2766,7 @@ else
 	esac
 fi
 
-echo "$as_me:2762: checking if you want to enable lynx trace code *recommended* " >&5
+echo "$as_me:2769: checking if you want to enable lynx trace code *recommended* " >&5
 echo $ECHO_N "checking if you want to enable lynx trace code *recommended* ... $ECHO_C" >&6
 
 # Check whether --enable-trace or --disable-trace was given.
@@ -2776,13 +2783,13 @@ else
   with_trace=yes
 
 fi;
-echo "$as_me:2779: result: $with_trace" >&5
+echo "$as_me:2786: result: $with_trace" >&5
 echo "${ECHO_T}$with_trace" >&6
 test $with_trace = no && cat >>confdefs.h <<\EOF
 #define NO_LYNX_TRACE 1
 EOF
 
-echo "$as_me:2785: checking if you want verbose trace code" >&5
+echo "$as_me:2792: checking if you want verbose trace code" >&5
 echo $ECHO_N "checking if you want verbose trace code... $ECHO_C" >&6
 
 # Check whether --enable-vertrace or --disable-vertrace was given.
@@ -2799,7 +2806,7 @@ else
   with_vertrace=no
 
 fi;
-echo "$as_me:2802: result: $with_vertrace" >&5
+echo "$as_me:2809: result: $with_vertrace" >&5
 echo "${ECHO_T}$with_vertrace" >&6
 test $with_vertrace = yes && cat >>confdefs.h <<\EOF
 #define LY_TRACELINE __LINE__
@@ -2807,7 +2814,7 @@ EOF
 
 if test -n "$GCC"
 then
-echo "$as_me:2810: checking if you want to turn on gcc warnings" >&5
+echo "$as_me:2817: checking if you want to turn on gcc warnings" >&5
 echo $ECHO_N "checking if you want to turn on gcc warnings... $ECHO_C" >&6
 
 # Check whether --enable-warnings or --disable-warnings was given.
@@ -2824,7 +2831,7 @@ else
   with_warnings=no
 
 fi;
-echo "$as_me:2827: result: $with_warnings" >&5
+echo "$as_me:2834: result: $with_warnings" >&5
 echo "${ECHO_T}$with_warnings" >&6
 if test "$with_warnings" = "yes"
 then
@@ -2847,10 +2854,10 @@ cat > conftest.i <<EOF
 EOF
 if test "$GCC" = yes
 then
-	{ echo "$as_me:2850: checking for $CC __attribute__ directives..." >&5
+	{ echo "$as_me:2857: checking for $CC __attribute__ directives..." >&5
 echo "$as_me: checking for $CC __attribute__ directives..." >&6;}
 cat > conftest.$ac_ext <<EOF
-#line 2853 "configure"
+#line 2860 "configure"
 #include "confdefs.h"
 #include "conftest.h"
 #include "conftest.i"
@@ -2888,12 +2895,12 @@ EOF
 EOF
 			;;
 		esac
-		if { (eval echo "$as_me:2891: \"$ac_compile\"") >&5
+		if { (eval echo "$as_me:2898: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:2894: \$? = $ac_status" >&5
+  echo "$as_me:2901: \$? = $ac_status" >&5
   (exit $ac_status); }; then
-			test -n "$verbose" && echo "$as_me:2896: result: ... $cf_attribute" >&5
+			test -n "$verbose" && echo "$as_me:2903: result: ... $cf_attribute" >&5
 echo "${ECHO_T}... $cf_attribute" >&6
 			cat conftest.h >>confdefs.h
 		fi
@@ -2906,11 +2913,11 @@ fi
 
 GCC_VERSION=none
 if test "$GCC" = yes ; then
-	echo "$as_me:2909: checking version of $CC" >&5
+	echo "$as_me:2916: checking version of $CC" >&5
 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6
 	GCC_VERSION="`${CC} --version| sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`"
 	test -z "$GCC_VERSION" && GCC_VERSION=unknown
-	echo "$as_me:2913: result: $GCC_VERSION" >&5
+	echo "$as_me:2920: result: $GCC_VERSION" >&5
 echo "${ECHO_T}$GCC_VERSION" >&6
 fi
 
@@ -2919,12 +2926,12 @@ INTEL_COMPILER=no
 if test "$GCC" = yes ; then
 	case $host_os in
 	linux*|gnu*)
-		echo "$as_me:2922: checking if this is really Intel C compiler" >&5
+		echo "$as_me:2929: checking if this is really Intel C compiler" >&5
 echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
 		cf_save_CFLAGS="$CFLAGS"
 		CFLAGS="$CFLAGS -no-gcc"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 2927 "configure"
+#line 2934 "configure"
 #include "confdefs.h"
 
 int
@@ -2941,16 +2948,16 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:2944: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:2951: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:2947: \$? = $ac_status" >&5
+  echo "$as_me:2954: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:2950: \"$ac_try\"") >&5
+  { (eval echo "$as_me:2957: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:2953: \$? = $ac_status" >&5
+  echo "$as_me:2960: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   INTEL_COMPILER=yes
 cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
@@ -2961,14 +2968,14 @@ cat conftest.$ac_ext >&5
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 		CFLAGS="$cf_save_CFLAGS"
-		echo "$as_me:2964: result: $INTEL_COMPILER" >&5
+		echo "$as_me:2971: result: $INTEL_COMPILER" >&5
 echo "${ECHO_T}$INTEL_COMPILER" >&6
 		;;
 	esac
 fi
 
 cat > conftest.$ac_ext <<EOF
-#line 2971 "configure"
+#line 2978 "configure"
 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
 EOF
 
@@ -2986,7 +2993,7 @@ then
 # remark #981: operands are evaluated in unspecified order
 # warning #269: invalid format string conversion
 
-	{ echo "$as_me:2989: checking for $CC warning options..." >&5
+	{ echo "$as_me:2996: checking for $CC warning options..." >&5
 echo "$as_me: checking for $CC warning options..." >&6;}
 	cf_save_CFLAGS="$CFLAGS"
 	EXTRA_CFLAGS="-Wall"
@@ -3003,12 +3010,12 @@ echo "$as_me: checking for $CC warning options..." >&6;}
 		wd981
 	do
 		CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
-		if { (eval echo "$as_me:3006: \"$ac_compile\"") >&5
+		if { (eval echo "$as_me:3013: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3009: \$? = $ac_status" >&5
+  echo "$as_me:3016: \$? = $ac_status" >&5
   (exit $ac_status); }; then
-			test -n "$verbose" && echo "$as_me:3011: result: ... -$cf_opt" >&5
+			test -n "$verbose" && echo "$as_me:3018: result: ... -$cf_opt" >&5
 echo "${ECHO_T}... -$cf_opt" >&6
 			EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
 		fi
@@ -3017,7 +3024,7 @@ echo "${ECHO_T}... -$cf_opt" >&6
 
 elif test "$GCC" = yes
 then
-	{ echo "$as_me:3020: checking for $CC warning options..." >&5
+	{ echo "$as_me:3027: checking for $CC warning options..." >&5
 echo "$as_me: checking for $CC warning options..." >&6;}
 	cf_save_CFLAGS="$CFLAGS"
 	EXTRA_CFLAGS="-W -Wall"
@@ -3037,12 +3044,12 @@ echo "$as_me: checking for $CC warning options..." >&6;}
 		Wundef $cf_warn_CONST
 	do
 		CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
-		if { (eval echo "$as_me:3040: \"$ac_compile\"") >&5
+		if { (eval echo "$as_me:3047: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3043: \$? = $ac_status" >&5
+  echo "$as_me:3050: \$? = $ac_status" >&5
   (exit $ac_status); }; then
-			test -n "$verbose" && echo "$as_me:3045: result: ... -$cf_opt" >&5
+			test -n "$verbose" && echo "$as_me:3052: result: ... -$cf_opt" >&5
 echo "${ECHO_T}... -$cf_opt" >&6
 			case $cf_opt in #(vi
 			Wcast-qual) #(vi
@@ -3067,7 +3074,7 @@ rm -f conftest*
 fi
 fi
 
-echo "$as_me:3070: checking if you want to link with dbmalloc for testing" >&5
+echo "$as_me:3077: checking if you want to link with dbmalloc for testing" >&5
 echo $ECHO_N "checking if you want to link with dbmalloc for testing... $ECHO_C" >&6
 
 # Check whether --with-dbmalloc or --without-dbmalloc was given.
@@ -3077,11 +3084,11 @@ if test "${with_dbmalloc+set}" = set; then
 else
   with_dbmalloc=no
 fi;
-echo "$as_me:3080: result: $with_dbmalloc" >&5
+echo "$as_me:3087: result: $with_dbmalloc" >&5
 echo "${ECHO_T}$with_dbmalloc" >&6
 if test $with_dbmalloc = yes ; then
 
-echo "$as_me:3084: checking for debug_malloc in -ldbmalloc" >&5
+echo "$as_me:3091: checking for debug_malloc in -ldbmalloc" >&5
 echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6
 if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3089,7 +3096,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-ldbmalloc  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 3092 "configure"
+#line 3099 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -3108,16 +3115,16 @@ debug_malloc ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:3111: \"$ac_link\"") >&5
+if { (eval echo "$as_me:3118: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:3114: \$? = $ac_status" >&5
+  echo "$as_me:3121: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:3117: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3124: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3120: \$? = $ac_status" >&5
+  echo "$as_me:3127: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_dbmalloc_debug_malloc=yes
 else
@@ -3128,7 +3135,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:3131: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
+echo "$as_me:3138: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
 echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6
 if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then
   cat >>confdefs.h <<EOF
@@ -3141,7 +3148,7 @@ fi
 
 fi
 
-echo "$as_me:3144: checking if you want to link with dmalloc for testing" >&5
+echo "$as_me:3151: checking if you want to link with dmalloc for testing" >&5
 echo $ECHO_N "checking if you want to link with dmalloc for testing... $ECHO_C" >&6
 
 # Check whether --with-dmalloc or --without-dmalloc was given.
@@ -3151,11 +3158,11 @@ if test "${with_dmalloc+set}" = set; then
 else
   with_dmalloc=no
 fi;
-echo "$as_me:3154: result: $with_dmalloc" >&5
+echo "$as_me:3161: result: $with_dmalloc" >&5
 echo "${ECHO_T}$with_dmalloc" >&6
 if test $with_dmalloc = yes ; then
 
-echo "$as_me:3158: checking for dmalloc_debug in -ldmalloc" >&5
+echo "$as_me:3165: checking for dmalloc_debug in -ldmalloc" >&5
 echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6
 if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3163,7 +3170,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-ldmalloc  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 3166 "configure"
+#line 3173 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -3182,16 +3189,16 @@ dmalloc_debug ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:3185: \"$ac_link\"") >&5
+if { (eval echo "$as_me:3192: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:3188: \$? = $ac_status" >&5
+  echo "$as_me:3195: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:3191: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3198: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3194: \$? = $ac_status" >&5
+  echo "$as_me:3201: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_dmalloc_dmalloc_debug=yes
 else
@@ -3202,7 +3209,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:3205: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
+echo "$as_me:3212: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
 echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6
 if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then
   cat >>confdefs.h <<EOF
@@ -3219,7 +3226,7 @@ cat >>confdefs.h <<\EOF
 #define UNIX 1
 EOF
 
-echo "$as_me:3222: checking for $CC option to accept ANSI C" >&5
+echo "$as_me:3229: checking for $CC option to accept ANSI C" >&5
 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
 if test "${ac_cv_prog_cc_stdc+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3227,7 +3234,7 @@ else
   ac_cv_prog_cc_stdc=no
 ac_save_CC=$CC
 cat >conftest.$ac_ext <<_ACEOF
-#line 3230 "configure"
+#line 3237 "configure"
 #include "confdefs.h"
 #include <stdarg.h>
 #include <stdio.h>
@@ -3276,16 +3283,16 @@ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIO
 do
   CC="$ac_save_CC $ac_arg"
   rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3279: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3286: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3282: \$? = $ac_status" >&5
+  echo "$as_me:3289: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:3285: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3292: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3288: \$? = $ac_status" >&5
+  echo "$as_me:3295: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_prog_cc_stdc=$ac_arg
 break
@@ -3302,21 +3309,21 @@ fi
 
 case "x$ac_cv_prog_cc_stdc" in
   x|xno)
-    echo "$as_me:3305: result: none needed" >&5
+    echo "$as_me:3312: result: none needed" >&5
 echo "${ECHO_T}none needed" >&6 ;;
   *)
-    echo "$as_me:3308: result: $ac_cv_prog_cc_stdc" >&5
+    echo "$as_me:3315: result: $ac_cv_prog_cc_stdc" >&5
 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
     CC="$CC $ac_cv_prog_cc_stdc" ;;
 esac
 
-echo "$as_me:3313: checking for an ANSI C-conforming const" >&5
+echo "$as_me:3320: checking for an ANSI C-conforming const" >&5
 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
 if test "${ac_cv_c_const+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 3319 "configure"
+#line 3326 "configure"
 #include "confdefs.h"
 
 int
@@ -3374,16 +3381,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3377: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3384: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3380: \$? = $ac_status" >&5
+  echo "$as_me:3387: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:3383: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3390: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3386: \$? = $ac_status" >&5
+  echo "$as_me:3393: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_c_const=yes
 else
@@ -3393,7 +3400,7 @@ ac_cv_c_const=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:3396: result: $ac_cv_c_const" >&5
+echo "$as_me:3403: result: $ac_cv_c_const" >&5
 echo "${ECHO_T}$ac_cv_c_const" >&6
 if test $ac_cv_c_const = no; then
 
@@ -3441,7 +3448,7 @@ clix*)
 	# contributed by Alex Matulich (matuli_a@marlin.navsea.navy.mil) also
 	# references -lmalloc and -lbsd.
 
-echo "$as_me:3444: checking for strcmp in -lc_s" >&5
+echo "$as_me:3451: checking for strcmp in -lc_s" >&5
 echo $ECHO_N "checking for strcmp in -lc_s... $ECHO_C" >&6
 if test "${ac_cv_lib_c_s_strcmp+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3449,7 +3456,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lc_s  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 3452 "configure"
+#line 3459 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -3468,16 +3475,16 @@ strcmp ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:3471: \"$ac_link\"") >&5
+if { (eval echo "$as_me:3478: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:3474: \$? = $ac_status" >&5
+  echo "$as_me:3481: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:3477: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3484: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3480: \$? = $ac_status" >&5
+  echo "$as_me:3487: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_c_s_strcmp=yes
 else
@@ -3488,7 +3495,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:3491: result: $ac_cv_lib_c_s_strcmp" >&5
+echo "$as_me:3498: result: $ac_cv_lib_c_s_strcmp" >&5
 echo "${ECHO_T}$ac_cv_lib_c_s_strcmp" >&6
 if test $ac_cv_lib_c_s_strcmp = yes; then
   cat >>confdefs.h <<EOF
@@ -3559,14 +3566,14 @@ sco*)
 	# SCO's cc (which is reported to have broken const/volatile).
 	case "$CC" in #(vi
 	cc|*/cc)
-		{ echo "$as_me:3562: WARNING: You should consider using gcc or rcc if available" >&5
+		{ echo "$as_me:3569: WARNING: You should consider using gcc or rcc if available" >&5
 echo "$as_me: WARNING: You should consider using gcc or rcc if available" >&2;}
 		unset ac_cv_prog_CC
 		for ac_prog in gcc rcc
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:3569: checking for $ac_word" >&5
+echo "$as_me:3576: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3581,7 +3588,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_CC="$ac_prog"
-echo "$as_me:3584: found $ac_dir/$ac_word" >&5
+echo "$as_me:3591: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -3589,10 +3596,10 @@ fi
 fi
 CC=$ac_cv_prog_CC
 if test -n "$CC"; then
-  echo "$as_me:3592: result: $CC" >&5
+  echo "$as_me:3599: result: $CC" >&5
 echo "${ECHO_T}$CC" >&6
 else
-  echo "$as_me:3595: result: no" >&5
+  echo "$as_me:3602: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -3615,23 +3622,23 @@ sony-newsos*)
 for ac_header in jcurses.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:3618: checking for $ac_header" >&5
+echo "$as_me:3625: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 3624 "configure"
+#line 3631 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:3628: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:3635: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:3634: \$? = $ac_status" >&5
+  echo "$as_me:3641: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -3650,7 +3657,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:3653: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:3660: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -3678,23 +3685,23 @@ ultrix*)
 for ac_header in cursesX.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:3681: checking for $ac_header" >&5
+echo "$as_me:3688: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 3687 "configure"
+#line 3694 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:3691: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:3698: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:3697: \$? = $ac_status" >&5
+  echo "$as_me:3704: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -3713,7 +3720,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:3716: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:3723: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -3730,7 +3737,7 @@ done
 	;;
 esac
 
-echo "$as_me:3733: checking for ${CC-cc} option to accept ANSI C" >&5
+echo "$as_me:3740: checking for ${CC-cc} option to accept ANSI C" >&5
 echo $ECHO_N "checking for ${CC-cc} option to accept ANSI C... $ECHO_C" >&6
 if test "${cf_cv_ansi_cc+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3824,7 +3831,7 @@ if test -n "$cf_new_extra_cppflags" ; then
 fi
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 3827 "configure"
+#line 3834 "configure"
 #include "confdefs.h"
 
 #ifndef CC_HAS_PROTOS
@@ -3845,16 +3852,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3848: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3855: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3851: \$? = $ac_status" >&5
+  echo "$as_me:3858: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:3854: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3861: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3857: \$? = $ac_status" >&5
+  echo "$as_me:3864: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ansi_cc="$cf_arg"; break
 else
@@ -3867,7 +3874,7 @@ CFLAGS="$cf_save_CFLAGS"
 CPPFLAGS="$cf_save_CPPFLAGS"
 
 fi
-echo "$as_me:3870: result: $cf_cv_ansi_cc" >&5
+echo "$as_me:3877: result: $cf_cv_ansi_cc" >&5
 echo "${ECHO_T}$cf_cv_ansi_cc" >&6
 
 if test "$cf_cv_ansi_cc" != "no"; then
@@ -3950,7 +3957,7 @@ fi
 fi
 
 if test "$cf_cv_ansi_cc" = "no"; then
-	{ { echo "$as_me:3953: error: Your compiler does not appear to recognize prototypes.
+	{ { echo "$as_me:3960: error: Your compiler does not appear to recognize prototypes.
 You have the following choices:
 	a. adjust your compiler options
 	b. get an up-to-date compiler
@@ -3963,7 +3970,7 @@ You have the following choices:
    { (exit 1); exit 1; }; }
 fi
 
-	echo "$as_me:3966: checking for _LARGEFILE_SOURCE value needed for large files" >&5
+	echo "$as_me:3973: checking for _LARGEFILE_SOURCE value needed for large files" >&5
 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6
 if test "${ac_cv_sys_largefile_source+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3971,7 +3978,7 @@ else
   while :; do
   ac_cv_sys_largefile_source=no
   cat >conftest.$ac_ext <<_ACEOF
-#line 3974 "configure"
+#line 3981 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -3983,16 +3990,16 @@ return !fseeko;
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3986: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3993: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3989: \$? = $ac_status" >&5
+  echo "$as_me:3996: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:3992: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3999: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3995: \$? = $ac_status" >&5
+  echo "$as_me:4002: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   break
 else
@@ -4001,7 +4008,7 @@ cat conftest.$ac_ext >&5
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
   cat >conftest.$ac_ext <<_ACEOF
-#line 4004 "configure"
+#line 4011 "configure"
 #include "confdefs.h"
 #define _LARGEFILE_SOURCE 1
 #include <stdio.h>
@@ -4014,16 +4021,16 @@ return !fseeko;
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4017: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4024: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4020: \$? = $ac_status" >&5
+  echo "$as_me:4027: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4023: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4030: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4026: \$? = $ac_status" >&5
+  echo "$as_me:4033: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_sys_largefile_source=1; break
 else
@@ -4034,7 +4041,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
   break
 done
 fi
-echo "$as_me:4037: result: $ac_cv_sys_largefile_source" >&5
+echo "$as_me:4044: result: $ac_cv_sys_largefile_source" >&5
 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6
 if test "$ac_cv_sys_largefile_source" != no; then
 
@@ -4048,13 +4055,13 @@ rm -f conftest*
 # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug
 # in glibc 2.1.3, but that breaks too many other things.
 # If you want fseeko and ftello with glibc, upgrade to a fixed glibc.
-echo "$as_me:4051: checking for fseeko" >&5
+echo "$as_me:4058: checking for fseeko" >&5
 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6
 if test "${ac_cv_func_fseeko+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4057 "configure"
+#line 4064 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -4066,16 +4073,16 @@ return fseeko && fseeko (stdin, 0, 0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4069: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4076: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:4072: \$? = $ac_status" >&5
+  echo "$as_me:4079: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:4075: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4082: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4078: \$? = $ac_status" >&5
+  echo "$as_me:4085: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_fseeko=yes
 else
@@ -4085,7 +4092,7 @@ ac_cv_func_fseeko=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:4088: result: $ac_cv_func_fseeko" >&5
+echo "$as_me:4095: result: $ac_cv_func_fseeko" >&5
 echo "${ECHO_T}$ac_cv_func_fseeko" >&6
 if test $ac_cv_func_fseeko = yes; then
 
@@ -4102,7 +4109,7 @@ if test "${enable_largefile+set}" = set; then
 fi;
 if test "$enable_largefile" != no; then
 
-  echo "$as_me:4105: checking for special C compiler options needed for large files" >&5
+  echo "$as_me:4112: checking for special C compiler options needed for large files" >&5
 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6
 if test "${ac_cv_sys_largefile_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -4114,7 +4121,7 @@ else
      	 # IRIX 6.2 and later do not support large files by default,
      	 # so use the C compiler's -n32 option if that helps.
          cat >conftest.$ac_ext <<_ACEOF
-#line 4117 "configure"
+#line 4124 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
  /* Check that off_t can represent 2**63 - 1 correctly.
@@ -4134,16 +4141,16 @@ main ()
 }
 _ACEOF
      	 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4137: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4144: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4140: \$? = $ac_status" >&5
+  echo "$as_me:4147: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4143: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4150: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4146: \$? = $ac_status" >&5
+  echo "$as_me:4153: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   break
 else
@@ -4153,16 +4160,16 @@ fi
 rm -f conftest.$ac_objext
      	 CC="$CC -n32"
      	 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4156: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4163: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4159: \$? = $ac_status" >&5
+  echo "$as_me:4166: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4162: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4169: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4165: \$? = $ac_status" >&5
+  echo "$as_me:4172: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_sys_largefile_CC=' -n32'; break
 else
@@ -4176,13 +4183,13 @@ rm -f conftest.$ac_objext
        rm -f conftest.$ac_ext
     fi
 fi
-echo "$as_me:4179: result: $ac_cv_sys_largefile_CC" >&5
+echo "$as_me:4186: result: $ac_cv_sys_largefile_CC" >&5
 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6
   if test "$ac_cv_sys_largefile_CC" != no; then
     CC=$CC$ac_cv_sys_largefile_CC
   fi
 
-  echo "$as_me:4185: checking for _FILE_OFFSET_BITS value needed for large files" >&5
+  echo "$as_me:4192: checking for _FILE_OFFSET_BITS value needed for large files" >&5
 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6
 if test "${ac_cv_sys_file_offset_bits+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -4190,7 +4197,7 @@ else
   while :; do
   ac_cv_sys_file_offset_bits=no
   cat >conftest.$ac_ext <<_ACEOF
-#line 4193 "configure"
+#line 4200 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
  /* Check that off_t can represent 2**63 - 1 correctly.
@@ -4210,16 +4217,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4213: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4220: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4216: \$? = $ac_status" >&5
+  echo "$as_me:4223: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4219: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4226: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4222: \$? = $ac_status" >&5
+  echo "$as_me:4229: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   break
 else
@@ -4228,7 +4235,7 @@ cat conftest.$ac_ext >&5
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
   cat >conftest.$ac_ext <<_ACEOF
-#line 4231 "configure"
+#line 4238 "configure"
 #include "confdefs.h"
 #define _FILE_OFFSET_BITS 64
 #include <sys/types.h>
@@ -4249,16 +4256,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4252: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4259: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4255: \$? = $ac_status" >&5
+  echo "$as_me:4262: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4258: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4265: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4261: \$? = $ac_status" >&5
+  echo "$as_me:4268: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_sys_file_offset_bits=64; break
 else
@@ -4269,7 +4276,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
   break
 done
 fi
-echo "$as_me:4272: result: $ac_cv_sys_file_offset_bits" >&5
+echo "$as_me:4279: result: $ac_cv_sys_file_offset_bits" >&5
 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6
 if test "$ac_cv_sys_file_offset_bits" != no; then
 
@@ -4279,7 +4286,7 @@ EOF
 
 fi
 rm -f conftest*
-  echo "$as_me:4282: checking for _LARGE_FILES value needed for large files" >&5
+  echo "$as_me:4289: checking for _LARGE_FILES value needed for large files" >&5
 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6
 if test "${ac_cv_sys_large_files+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -4287,7 +4294,7 @@ else
   while :; do
   ac_cv_sys_large_files=no
   cat >conftest.$ac_ext <<_ACEOF
-#line 4290 "configure"
+#line 4297 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
  /* Check that off_t can represent 2**63 - 1 correctly.
@@ -4307,16 +4314,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4310: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4317: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4313: \$? = $ac_status" >&5
+  echo "$as_me:4320: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4316: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4323: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4319: \$? = $ac_status" >&5
+  echo "$as_me:4326: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   break
 else
@@ -4325,7 +4332,7 @@ cat conftest.$ac_ext >&5
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
   cat >conftest.$ac_ext <<_ACEOF
-#line 4328 "configure"
+#line 4335 "configure"
 #include "confdefs.h"
 #define _LARGE_FILES 1
 #include <sys/types.h>
@@ -4346,16 +4353,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4349: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4356: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4352: \$? = $ac_status" >&5
+  echo "$as_me:4359: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4355: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4362: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4358: \$? = $ac_status" >&5
+  echo "$as_me:4365: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_sys_large_files=1; break
 else
@@ -4366,7 +4373,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
   break
 done
 fi
-echo "$as_me:4369: result: $ac_cv_sys_large_files" >&5
+echo "$as_me:4376: result: $ac_cv_sys_large_files" >&5
 echo "${ECHO_T}$ac_cv_sys_large_files" >&6
 if test "$ac_cv_sys_large_files" != no; then
 
@@ -4388,14 +4395,14 @@ fi
 	test "$ac_cv_sys_large_files"      != no && CPPFLAGS="$CPPFLAGS -D_LARGE_FILES "
 	test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE "
 
-	echo "$as_me:4391: checking whether to use struct dirent64" >&5
+	echo "$as_me:4398: checking whether to use struct dirent64" >&5
 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6
 if test "${cf_cv_struct_dirent64+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 		cat >conftest.$ac_ext <<_ACEOF
-#line 4398 "configure"
+#line 4405 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -4416,16 +4423,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4419: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4426: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4422: \$? = $ac_status" >&5
+  echo "$as_me:4429: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4425: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4432: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4428: \$? = $ac_status" >&5
+  echo "$as_me:4435: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_struct_dirent64=yes
 else
@@ -4436,7 +4443,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:4439: result: $cf_cv_struct_dirent64" >&5
+echo "$as_me:4446: result: $cf_cv_struct_dirent64" >&5
 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6
 	test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF
 #define HAVE_STRUCT_DIRENT64 1
@@ -4445,7 +4452,7 @@ EOF
 if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
-echo "$as_me:4448: checking for $ac_word" >&5
+echo "$as_me:4455: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_RANLIB+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -4460,7 +4467,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
-echo "$as_me:4463: found $ac_dir/$ac_word" >&5
+echo "$as_me:4470: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -4468,10 +4475,10 @@ fi
 fi
 RANLIB=$ac_cv_prog_RANLIB
 if test -n "$RANLIB"; then
-  echo "$as_me:4471: result: $RANLIB" >&5
+  echo "$as_me:4478: result: $RANLIB" >&5
 echo "${ECHO_T}$RANLIB" >&6
 else
-  echo "$as_me:4474: result: no" >&5
+  echo "$as_me:4481: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -4480,7 +4487,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
   ac_ct_RANLIB=$RANLIB
   # Extract the first word of "ranlib", so it can be a program name with args.
 set dummy ranlib; ac_word=$2
-echo "$as_me:4483: checking for $ac_word" >&5
+echo "$as_me:4490: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -4495,7 +4502,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_ac_ct_RANLIB="ranlib"
-echo "$as_me:4498: found $ac_dir/$ac_word" >&5
+echo "$as_me:4505: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -4504,10 +4511,10 @@ fi
 fi
 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
 if test -n "$ac_ct_RANLIB"; then
-  echo "$as_me:4507: result: $ac_ct_RANLIB" >&5
+  echo "$as_me:4514: result: $ac_ct_RANLIB" >&5
 echo "${ECHO_T}$ac_ct_RANLIB" >&6
 else
-  echo "$as_me:4510: result: no" >&5
+  echo "$as_me:4517: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -4516,13 +4523,13 @@ else
   RANLIB="$ac_cv_prog_RANLIB"
 fi
 
-echo "$as_me:4519: checking for ANSI C header files" >&5
+echo "$as_me:4526: checking for ANSI C header files" >&5
 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
 if test "${ac_cv_header_stdc+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4525 "configure"
+#line 4532 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 #include <stdarg.h>
@@ -4530,13 +4537,13 @@ else
 #include <float.h>
 
 _ACEOF
-if { (eval echo "$as_me:4533: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:4540: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:4539: \$? = $ac_status" >&5
+  echo "$as_me:4546: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -4558,7 +4565,7 @@ rm -f conftest.err conftest.$ac_ext
 if test $ac_cv_header_stdc = yes; then
   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
   cat >conftest.$ac_ext <<_ACEOF
-#line 4561 "configure"
+#line 4568 "configure"
 #include "confdefs.h"
 #include <string.h>
 
@@ -4576,7 +4583,7 @@ fi
 if test $ac_cv_header_stdc = yes; then
   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
   cat >conftest.$ac_ext <<_ACEOF
-#line 4579 "configure"
+#line 4586 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 
@@ -4597,7 +4604,7 @@ if test $ac_cv_header_stdc = yes; then
   :
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4600 "configure"
+#line 4607 "configure"
 #include "confdefs.h"
 #include <ctype.h>
 #if ((' ' & 0x0FF) == 0x020)
@@ -4623,15 +4630,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:4626: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4633: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:4629: \$? = $ac_status" >&5
+  echo "$as_me:4636: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:4631: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4638: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4634: \$? = $ac_status" >&5
+  echo "$as_me:4641: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -4644,7 +4651,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
 fi
-echo "$as_me:4647: result: $ac_cv_header_stdc" >&5
+echo "$as_me:4654: result: $ac_cv_header_stdc" >&5
 echo "${ECHO_T}$ac_cv_header_stdc" >&6
 if test $ac_cv_header_stdc = yes; then
 
@@ -4654,7 +4661,7 @@ EOF
 
 fi
 
-echo "$as_me:4657: checking for inline" >&5
+echo "$as_me:4664: checking for inline" >&5
 echo $ECHO_N "checking for inline... $ECHO_C" >&6
 if test "${ac_cv_c_inline+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -4662,7 +4669,7 @@ else
   ac_cv_c_inline=no
 for ac_kw in inline __inline__ __inline; do
   cat >conftest.$ac_ext <<_ACEOF
-#line 4665 "configure"
+#line 4672 "configure"
 #include "confdefs.h"
 #ifndef __cplusplus
 static $ac_kw int static_foo () {return 0; }
@@ -4671,16 +4678,16 @@ $ac_kw int foo () {return 0; }
 
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4674: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4681: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4677: \$? = $ac_status" >&5
+  echo "$as_me:4684: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4680: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4687: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4683: \$? = $ac_status" >&5
+  echo "$as_me:4690: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_c_inline=$ac_kw; break
 else
@@ -4691,7 +4698,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:4694: result: $ac_cv_c_inline" >&5
+echo "$as_me:4701: result: $ac_cv_c_inline" >&5
 echo "${ECHO_T}$ac_cv_c_inline" >&6
 case $ac_cv_c_inline in
   inline | yes) ;;
@@ -4712,28 +4719,28 @@ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
                   inttypes.h stdint.h unistd.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:4715: checking for $ac_header" >&5
+echo "$as_me:4722: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4721 "configure"
+#line 4728 "configure"
 #include "confdefs.h"
 $ac_includes_default
 #include <$ac_header>
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4727: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4734: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4730: \$? = $ac_status" >&5
+  echo "$as_me:4737: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4733: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4740: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4736: \$? = $ac_status" >&5
+  echo "$as_me:4743: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_Header=yes"
 else
@@ -4743,7 +4750,7 @@ eval "$as_ac_Header=no"
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:4746: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:4753: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -4753,13 +4760,13 @@ EOF
 fi
 done
 
-echo "$as_me:4756: checking for off_t" >&5
+echo "$as_me:4763: checking for off_t" >&5
 echo $ECHO_N "checking for off_t... $ECHO_C" >&6
 if test "${ac_cv_type_off_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4762 "configure"
+#line 4769 "configure"
 #include "confdefs.h"
 $ac_includes_default
 int
@@ -4774,16 +4781,16 @@ if (sizeof (off_t))
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4777: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4784: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4780: \$? = $ac_status" >&5
+  echo "$as_me:4787: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4783: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4790: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4786: \$? = $ac_status" >&5
+  echo "$as_me:4793: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_type_off_t=yes
 else
@@ -4793,7 +4800,7 @@ ac_cv_type_off_t=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:4796: result: $ac_cv_type_off_t" >&5
+echo "$as_me:4803: result: $ac_cv_type_off_t" >&5
 echo "${ECHO_T}$ac_cv_type_off_t" >&6
 if test $ac_cv_type_off_t = yes; then
   :
@@ -4805,13 +4812,13 @@ EOF
 
 fi
 
-echo "$as_me:4808: checking for size_t" >&5
+echo "$as_me:4815: checking for size_t" >&5
 echo $ECHO_N "checking for size_t... $ECHO_C" >&6
 if test "${ac_cv_type_size_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4814 "configure"
+#line 4821 "configure"
 #include "confdefs.h"
 $ac_includes_default
 int
@@ -4826,16 +4833,16 @@ if (sizeof (size_t))
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4829: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4836: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4832: \$? = $ac_status" >&5
+  echo "$as_me:4839: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4835: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4842: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4838: \$? = $ac_status" >&5
+  echo "$as_me:4845: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_type_size_t=yes
 else
@@ -4845,7 +4852,7 @@ ac_cv_type_size_t=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:4848: result: $ac_cv_type_size_t" >&5
+echo "$as_me:4855: result: $ac_cv_type_size_t" >&5
 echo "${ECHO_T}$ac_cv_type_size_t" >&6
 if test $ac_cv_type_size_t = yes; then
   :
@@ -4859,13 +4866,13 @@ fi
 
 # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
 # for constant arguments.  Useless!
-echo "$as_me:4862: checking for working alloca.h" >&5
+echo "$as_me:4869: checking for working alloca.h" >&5
 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6
 if test "${ac_cv_working_alloca_h+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4868 "configure"
+#line 4875 "configure"
 #include "confdefs.h"
 #include <alloca.h>
 int
@@ -4877,16 +4884,16 @@ char *p = (char *) alloca (2 * sizeof (int));
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4880: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4887: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:4883: \$? = $ac_status" >&5
+  echo "$as_me:4890: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:4886: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4893: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4889: \$? = $ac_status" >&5
+  echo "$as_me:4896: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_working_alloca_h=yes
 else
@@ -4896,7 +4903,7 @@ ac_cv_working_alloca_h=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:4899: result: $ac_cv_working_alloca_h" >&5
+echo "$as_me:4906: result: $ac_cv_working_alloca_h" >&5
 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
 if test $ac_cv_working_alloca_h = yes; then
 
@@ -4906,13 +4913,13 @@ EOF
 
 fi
 
-echo "$as_me:4909: checking for alloca" >&5
+echo "$as_me:4916: checking for alloca" >&5
 echo $ECHO_N "checking for alloca... $ECHO_C" >&6
 if test "${ac_cv_func_alloca_works+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4915 "configure"
+#line 4922 "configure"
 #include "confdefs.h"
 #ifdef __GNUC__
 # define alloca __builtin_alloca
@@ -4944,16 +4951,16 @@ char *p = (char *) alloca (1);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4947: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4954: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:4950: \$? = $ac_status" >&5
+  echo "$as_me:4957: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:4953: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4960: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4956: \$? = $ac_status" >&5
+  echo "$as_me:4963: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_alloca_works=yes
 else
@@ -4963,7 +4970,7 @@ ac_cv_func_alloca_works=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:4966: result: $ac_cv_func_alloca_works" >&5
+echo "$as_me:4973: result: $ac_cv_func_alloca_works" >&5
 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
 
 if test $ac_cv_func_alloca_works = yes; then
@@ -4984,13 +4991,13 @@ cat >>confdefs.h <<\EOF
 #define C_ALLOCA 1
 EOF
 
-echo "$as_me:4987: checking whether \`alloca.c' needs Cray hooks" >&5
+echo "$as_me:4994: checking whether \`alloca.c' needs Cray hooks" >&5
 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6
 if test "${ac_cv_os_cray+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4993 "configure"
+#line 5000 "configure"
 #include "confdefs.h"
 #if defined(CRAY) && ! defined(CRAY2)
 webecray
@@ -5008,18 +5015,18 @@ fi
 rm -f conftest*
 
 fi
-echo "$as_me:5011: result: $ac_cv_os_cray" >&5
+echo "$as_me:5018: result: $ac_cv_os_cray" >&5
 echo "${ECHO_T}$ac_cv_os_cray" >&6
 if test $ac_cv_os_cray = yes; then
   for ac_func in _getb67 GETB67 getb67; do
     as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:5016: checking for $ac_func" >&5
+echo "$as_me:5023: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5022 "configure"
+#line 5029 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -5050,16 +5057,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5053: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5060: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5056: \$? = $ac_status" >&5
+  echo "$as_me:5063: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5059: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5066: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5062: \$? = $ac_status" >&5
+  echo "$as_me:5069: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -5069,7 +5076,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:5072: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:5079: result: `eval echo '${'$as_ac_var'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 if test `eval echo '${'$as_ac_var'}'` = yes; then
 
@@ -5083,7 +5090,7 @@ fi
   done
 fi
 
-echo "$as_me:5086: checking stack direction for C alloca" >&5
+echo "$as_me:5093: checking stack direction for C alloca" >&5
 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6
 if test "${ac_cv_c_stack_direction+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -5092,7 +5099,7 @@ else
   ac_cv_c_stack_direction=0
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5095 "configure"
+#line 5102 "configure"
 #include "confdefs.h"
 int
 find_stack_direction ()
@@ -5115,15 +5122,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:5118: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5125: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5121: \$? = $ac_status" >&5
+  echo "$as_me:5128: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:5123: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5130: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5126: \$? = $ac_status" >&5
+  echo "$as_me:5133: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_c_stack_direction=1
 else
@@ -5135,7 +5142,7 @@ fi
 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
-echo "$as_me:5138: result: $ac_cv_c_stack_direction" >&5
+echo "$as_me:5145: result: $ac_cv_c_stack_direction" >&5
 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
 
 cat >>confdefs.h <<EOF
@@ -5147,23 +5154,23 @@ fi
 for ac_header in stdlib.h unistd.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:5150: checking for $ac_header" >&5
+echo "$as_me:5157: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5156 "configure"
+#line 5163 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:5160: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:5167: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:5166: \$? = $ac_status" >&5
+  echo "$as_me:5173: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -5182,7 +5189,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:5185: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:5192: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -5195,13 +5202,13 @@ done
 for ac_func in getpagesize
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:5198: checking for $ac_func" >&5
+echo "$as_me:5205: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5204 "configure"
+#line 5211 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -5232,16 +5239,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5235: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5242: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5238: \$? = $ac_status" >&5
+  echo "$as_me:5245: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5241: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5248: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5244: \$? = $ac_status" >&5
+  echo "$as_me:5251: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -5251,7 +5258,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:5254: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:5261: result: `eval echo '${'$as_ac_var'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 if test `eval echo '${'$as_ac_var'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -5261,7 +5268,7 @@ EOF
 fi
 done
 
-echo "$as_me:5264: checking for working mmap" >&5
+echo "$as_me:5271: checking for working mmap" >&5
 echo $ECHO_N "checking for working mmap... $ECHO_C" >&6
 if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -5270,7 +5277,7 @@ else
   ac_cv_func_mmap_fixed_mapped=no
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5273 "configure"
+#line 5280 "configure"
 #include "confdefs.h"
 $ac_includes_default
 /* Thanks to Mike Haertel and Jim Avera for this test.
@@ -5397,15 +5404,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:5400: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5407: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5403: \$? = $ac_status" >&5
+  echo "$as_me:5410: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:5405: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5412: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5408: \$? = $ac_status" >&5
+  echo "$as_me:5415: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_mmap_fixed_mapped=yes
 else
@@ -5417,7 +5424,7 @@ fi
 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
-echo "$as_me:5420: result: $ac_cv_func_mmap_fixed_mapped" >&5
+echo "$as_me:5427: result: $ac_cv_func_mmap_fixed_mapped" >&5
 echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6
 if test $ac_cv_func_mmap_fixed_mapped = yes; then
 
@@ -5428,13 +5435,13 @@ EOF
 fi
 rm -f conftest.mmap
 
-    echo "$as_me:5431: checking whether we are using the GNU C Library 2.1 or newer" >&5
+    echo "$as_me:5438: checking whether we are using the GNU C Library 2.1 or newer" >&5
 echo $ECHO_N "checking whether we are using the GNU C Library 2.1 or newer... $ECHO_C" >&6
 if test "${ac_cv_gnu_library_2_1+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5437 "configure"
+#line 5444 "configure"
 #include "confdefs.h"
 
 #include <features.h>
@@ -5454,7 +5461,7 @@ fi
 rm -f conftest*
 
 fi
-echo "$as_me:5457: result: $ac_cv_gnu_library_2_1" >&5
+echo "$as_me:5464: result: $ac_cv_gnu_library_2_1" >&5
 echo "${ECHO_T}$ac_cv_gnu_library_2_1" >&6
 
     GLIBC21="$ac_cv_gnu_library_2_1"
@@ -5483,23 +5490,23 @@ for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \
 stdlib.h string.h unistd.h sys/param.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:5486: checking for $ac_header" >&5
+echo "$as_me:5493: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5492 "configure"
+#line 5499 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:5496: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:5503: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:5502: \$? = $ac_status" >&5
+  echo "$as_me:5509: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -5518,7 +5525,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:5521: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:5528: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -5533,13 +5540,13 @@ getgid getuid mempcpy munmap putenv setenv setlocale stpcpy strchr strcasecmp \
 strdup strtoul tsearch __argz_count __argz_stringify __argz_next
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:5536: checking for $ac_func" >&5
+echo "$as_me:5543: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5542 "configure"
+#line 5549 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -5570,16 +5577,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5573: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5580: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5576: \$? = $ac_status" >&5
+  echo "$as_me:5583: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5579: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5586: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5582: \$? = $ac_status" >&5
+  echo "$as_me:5589: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -5589,7 +5596,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:5592: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:5599: result: `eval echo '${'$as_ac_var'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 if test `eval echo '${'$as_ac_var'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -5610,7 +5617,7 @@ if test "${with_libiconv_prefix+set}" = set; then
 
 fi;
 
-  echo "$as_me:5613: checking for iconv" >&5
+  echo "$as_me:5620: checking for iconv" >&5
 echo $ECHO_N "checking for iconv... $ECHO_C" >&6
 if test "${am_cv_func_iconv+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -5619,7 +5626,7 @@ else
     am_cv_func_iconv="no, consider installing GNU libiconv"
     am_cv_lib_iconv=no
     cat >conftest.$ac_ext <<_ACEOF
-#line 5622 "configure"
+#line 5629 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 #include <iconv.h>
@@ -5634,16 +5641,16 @@ iconv_t cd = iconv_open("","");
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5637: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5644: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5640: \$? = $ac_status" >&5
+  echo "$as_me:5647: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5643: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5650: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5646: \$? = $ac_status" >&5
+  echo "$as_me:5653: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   am_cv_func_iconv=yes
 else
@@ -5655,7 +5662,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
       am_save_LIBS="$LIBS"
       LIBS="$LIBS -liconv"
       cat >conftest.$ac_ext <<_ACEOF
-#line 5658 "configure"
+#line 5665 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 #include <iconv.h>
@@ -5670,16 +5677,16 @@ iconv_t cd = iconv_open("","");
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5673: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5680: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5676: \$? = $ac_status" >&5
+  echo "$as_me:5683: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5679: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5686: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5682: \$? = $ac_status" >&5
+  echo "$as_me:5689: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   am_cv_lib_iconv=yes
         am_cv_func_iconv=yes
@@ -5692,7 +5699,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
     fi
 
 fi
-echo "$as_me:5695: result: $am_cv_func_iconv" >&5
+echo "$as_me:5702: result: $am_cv_func_iconv" >&5
 echo "${ECHO_T}$am_cv_func_iconv" >&6
   if test "$am_cv_func_iconv" = yes; then
 
@@ -5700,14 +5707,14 @@ cat >>confdefs.h <<\EOF
 #define HAVE_ICONV 1
 EOF
 
-    echo "$as_me:5703: checking for iconv declaration" >&5
+    echo "$as_me:5710: checking for iconv declaration" >&5
 echo $ECHO_N "checking for iconv declaration... $ECHO_C" >&6
     if test "${am_cv_proto_iconv+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
       cat >conftest.$ac_ext <<_ACEOF
-#line 5710 "configure"
+#line 5717 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -5731,16 +5738,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:5734: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:5741: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:5737: \$? = $ac_status" >&5
+  echo "$as_me:5744: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:5740: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5747: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5743: \$? = $ac_status" >&5
+  echo "$as_me:5750: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   am_cv_proto_iconv_arg1=""
 else
@@ -5753,7 +5760,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 fi
 
     am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'`
-    echo "$as_me:5756: result: ${ac_t:-
+    echo "$as_me:5763: result: ${ac_t:-
          }$am_cv_proto_iconv" >&5
 echo "${ECHO_T}${ac_t:-
          }$am_cv_proto_iconv" >&6
@@ -5768,13 +5775,13 @@ EOF
     LIBICONV="-liconv"
   fi
 
-  echo "$as_me:5771: checking for nl_langinfo and CODESET" >&5
+  echo "$as_me:5778: checking for nl_langinfo and CODESET" >&5
 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6
 if test "${am_cv_langinfo_codeset+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5777 "configure"
+#line 5784 "configure"
 #include "confdefs.h"
 #include <langinfo.h>
 int
@@ -5786,16 +5793,16 @@ char* cs = nl_langinfo(CODESET);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5789: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5796: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5792: \$? = $ac_status" >&5
+  echo "$as_me:5799: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5795: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5802: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5798: \$? = $ac_status" >&5
+  echo "$as_me:5805: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   am_cv_langinfo_codeset=yes
 else
@@ -5806,7 +5813,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:5809: result: $am_cv_langinfo_codeset" >&5
+echo "$as_me:5816: result: $am_cv_langinfo_codeset" >&5
 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6
   if test $am_cv_langinfo_codeset = yes; then
 
@@ -5817,13 +5824,13 @@ EOF
   fi
 
    if test $ac_cv_header_locale_h = yes; then
-    echo "$as_me:5820: checking for LC_MESSAGES" >&5
+    echo "$as_me:5827: checking for LC_MESSAGES" >&5
 echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6
 if test "${am_cv_val_LC_MESSAGES+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5826 "configure"
+#line 5833 "configure"
 #include "confdefs.h"
 #include <locale.h>
 int
@@ -5835,16 +5842,16 @@ return LC_MESSAGES
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5838: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5845: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5841: \$? = $ac_status" >&5
+  echo "$as_me:5848: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5844: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5851: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5847: \$? = $ac_status" >&5
+  echo "$as_me:5854: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   am_cv_val_LC_MESSAGES=yes
 else
@@ -5854,7 +5861,7 @@ am_cv_val_LC_MESSAGES=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:5857: result: $am_cv_val_LC_MESSAGES" >&5
+echo "$as_me:5864: result: $am_cv_val_LC_MESSAGES" >&5
 echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6
     if test $am_cv_val_LC_MESSAGES = yes; then
 
@@ -5864,7 +5871,7 @@ EOF
 
     fi
   fi
-   echo "$as_me:5867: checking whether NLS is requested" >&5
+   echo "$as_me:5874: checking whether NLS is requested" >&5
 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6
 
 # Check whether --enable-nls or --disable-nls was given.
@@ -5874,7 +5881,7 @@ if test "${enable_nls+set}" = set; then
 else
   USE_NLS=no
 fi;
-    echo "$as_me:5877: result: $USE_NLS" >&5
+    echo "$as_me:5884: result: $USE_NLS" >&5
 echo "${ECHO_T}$USE_NLS" >&6
 
     BUILD_INCLUDED_LIBINTL=no
@@ -5887,7 +5894,7 @@ cat >>confdefs.h <<\EOF
 #define ENABLE_NLS 1
 EOF
 
-      echo "$as_me:5890: checking whether included gettext is requested" >&5
+      echo "$as_me:5897: checking whether included gettext is requested" >&5
 echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6
 
 # Check whether --with-included-gettext or --without-included-gettext was given.
@@ -5897,30 +5904,30 @@ if test "${with_included_gettext+set}" = set; then
 else
   nls_cv_force_use_gnu_gettext=no
 fi;
-      echo "$as_me:5900: result: $nls_cv_force_use_gnu_gettext" >&5
+      echo "$as_me:5907: result: $nls_cv_force_use_gnu_gettext" >&5
 echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6
 
       nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
       if test "$nls_cv_force_use_gnu_gettext" != "yes"; then
                         	CATOBJEXT=NONE
 
-echo "$as_me:5907: checking for libintl.h" >&5
+echo "$as_me:5914: checking for libintl.h" >&5
 echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6
 if test "${ac_cv_header_libintl_h+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5913 "configure"
+#line 5920 "configure"
 #include "confdefs.h"
 #include <libintl.h>
 _ACEOF
-if { (eval echo "$as_me:5917: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:5924: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:5923: \$? = $ac_status" >&5
+  echo "$as_me:5930: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -5939,7 +5946,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:5942: result: $ac_cv_header_libintl_h" >&5
+echo "$as_me:5949: result: $ac_cv_header_libintl_h" >&5
 echo "${ECHO_T}$ac_cv_header_libintl_h" >&6
 if test $ac_cv_header_libintl_h = yes; then
   cf_find_header=yes
@@ -6104,13 +6111,13 @@ cat >>confdefs.h <<\EOF
 #define HAVE_LIBINTL_H 1
 EOF
 
-	   echo "$as_me:6107: checking for GNU gettext in libc" >&5
+	   echo "$as_me:6114: checking for GNU gettext in libc" >&5
 echo $ECHO_N "checking for GNU gettext in libc... $ECHO_C" >&6
 if test "${gt_cv_func_gnugettext1_libc+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 6113 "configure"
+#line 6120 "configure"
 #include "confdefs.h"
 #include <libintl.h>
 extern int _nl_msg_cat_cntr;
@@ -6124,16 +6131,16 @@ return (int) gettext ("") + _nl_msg_cat_cntr
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6127: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6134: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:6130: \$? = $ac_status" >&5
+  echo "$as_me:6137: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:6133: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6140: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6136: \$? = $ac_status" >&5
+  echo "$as_me:6143: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   gt_cv_func_gnugettext1_libc=yes
 else
@@ -6143,13 +6150,13 @@ gt_cv_func_gnugettext1_libc=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:6146: result: $gt_cv_func_gnugettext1_libc" >&5
+echo "$as_me:6153: result: $gt_cv_func_gnugettext1_libc" >&5
 echo "${ECHO_T}$gt_cv_func_gnugettext1_libc" >&6
 
 	   if test "$gt_cv_func_gnugettext1_libc" != "yes"; then
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 6152 "configure"
+#line 6159 "configure"
 #include "confdefs.h"
 #include <libintl.h>
 extern int _nl_msg_cat_cntr;
@@ -6163,16 +6170,16 @@ return (int) gettext ("") + _nl_msg_cat_cntr
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6166: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6173: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:6169: \$? = $ac_status" >&5
+  echo "$as_me:6176: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:6172: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6179: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6175: \$? = $ac_status" >&5
+  echo "$as_me:6182: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_find_linkage=yes
 else
@@ -6244,7 +6251,7 @@ do
 		LIBS="-lintl $cf_save_LIBS"
 		LDFLAGS="$cf_save_LDFLAGS -L$cf_libdir"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 6247 "configure"
+#line 6254 "configure"
 #include "confdefs.h"
 #include <libintl.h>
 extern int _nl_msg_cat_cntr;
@@ -6258,16 +6265,16 @@ return (int) gettext ("") + _nl_msg_cat_cntr
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6261: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6268: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:6264: \$? = $ac_status" >&5
+  echo "$as_me:6271: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:6267: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6274: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6270: \$? = $ac_status" >&5
+  echo "$as_me:6277: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 			test -n "$verbose" && echo "	... found in $cf_libdir" 1>&6
@@ -6316,13 +6323,13 @@ EOF
 for ac_func in dcgettext
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:6319: checking for $ac_func" >&5
+echo "$as_me:6326: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 6325 "configure"
+#line 6332 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -6353,16 +6360,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6356: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6363: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:6359: \$? = $ac_status" >&5
+  echo "$as_me:6366: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:6362: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6369: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6365: \$? = $ac_status" >&5
+  echo "$as_me:6372: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -6372,7 +6379,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:6375: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:6382: result: `eval echo '${'$as_ac_var'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 if test `eval echo '${'$as_ac_var'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -6387,7 +6394,7 @@ done
 	     	     # Extract the first word of "msgfmt", so it can be a program name with args.
 
 set dummy msgfmt; ac_word=$2
-echo "$as_me:6390: checking for $ac_word" >&5
+echo "$as_me:6397: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_MSGFMT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6401,9 +6408,9 @@ else
   IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}${PATHSEP}"
   for ac_dir in $PATH; do
     test -z "$ac_dir" && ac_dir=.
-    if test -f $ac_dir/$ac_word; then
+    if test -f $ac_dir/$ac_word$ac_exeext; then
       if $ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1; then
-	ac_cv_path_MSGFMT="$ac_dir/$ac_word"
+	ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exeext"
 	break
       fi
     fi
@@ -6415,16 +6422,16 @@ esac
 fi
 MSGFMT="$ac_cv_path_MSGFMT"
 if test "$MSGFMT" != ":"; then
-  echo "$as_me:6418: result: $MSGFMT" >&5
+  echo "$as_me:6425: result: $MSGFMT" >&5
 echo "${ECHO_T}$MSGFMT" >&6
 else
-  echo "$as_me:6421: result: no" >&5
+  echo "$as_me:6428: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
 	     # Extract the first word of "gmsgfmt", so it can be a program name with args.
 set dummy gmsgfmt; ac_word=$2
-echo "$as_me:6427: checking for $ac_word" >&5
+echo "$as_me:6434: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_GMSGFMT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6441,7 +6448,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_GMSGFMT="$ac_dir/$ac_word"
-   echo "$as_me:6444: found $ac_dir/$ac_word" >&5
+   echo "$as_me:6451: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -6453,17 +6460,17 @@ fi
 GMSGFMT=$ac_cv_path_GMSGFMT
 
 if test -n "$GMSGFMT"; then
-  echo "$as_me:6456: result: $GMSGFMT" >&5
+  echo "$as_me:6463: result: $GMSGFMT" >&5
 echo "${ECHO_T}$GMSGFMT" >&6
 else
-  echo "$as_me:6459: result: no" >&5
+  echo "$as_me:6466: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
 	     	     # Extract the first word of "xgettext", so it can be a program name with args.
 
 set dummy xgettext; ac_word=$2
-echo "$as_me:6466: checking for $ac_word" >&5
+echo "$as_me:6473: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_XGETTEXT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6477,9 +6484,9 @@ else
   IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}${PATHSEP}"
   for ac_dir in $PATH; do
     test -z "$ac_dir" && ac_dir=.
-    if test -f $ac_dir/$ac_word; then
+    if test -f $ac_dir/$ac_word$ac_exeext; then
       if $ac_dir/$ac_word --omit-header /dev/null >/dev/null 2>&1; then
-	ac_cv_path_XGETTEXT="$ac_dir/$ac_word"
+	ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exeext"
 	break
       fi
     fi
@@ -6491,10 +6498,10 @@ esac
 fi
 XGETTEXT="$ac_cv_path_XGETTEXT"
 if test "$XGETTEXT" != ":"; then
-  echo "$as_me:6494: result: $XGETTEXT" >&5
+  echo "$as_me:6501: result: $XGETTEXT" >&5
 echo "${ECHO_T}$XGETTEXT" >&6
 else
-  echo "$as_me:6497: result: no" >&5
+  echo "$as_me:6504: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -6510,7 +6517,7 @@ fi
 
       if test "$nls_cv_use_gnu_gettext" = "yes"; then
         if test ! -d $srcdir/intl ; then
-	  { { echo "$as_me:6513: error: no NLS library is packaged with this application" >&5
+	  { { echo "$as_me:6520: error: no NLS library is packaged with this application" >&5
 echo "$as_me: error: no NLS library is packaged with this application" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -6518,7 +6525,7 @@ echo "$as_me: error: no NLS library is packaged with this application" >&2;}
         # Extract the first word of "msgfmt", so it can be a program name with args.
 
 set dummy msgfmt; ac_word=$2
-echo "$as_me:6521: checking for $ac_word" >&5
+echo "$as_me:6528: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_MSGFMT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6532,9 +6539,9 @@ else
   IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}${PATHSEP}"
   for ac_dir in $PATH; do
     test -z "$ac_dir" && ac_dir=.
-    if test -f $ac_dir/$ac_word; then
+    if test -f $ac_dir/$ac_word$ac_exeext; then
       if $ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1; then
-	ac_cv_path_MSGFMT="$ac_dir/$ac_word"
+	ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exeext"
 	break
       fi
     fi
@@ -6546,16 +6553,16 @@ esac
 fi
 MSGFMT="$ac_cv_path_MSGFMT"
 if test "$MSGFMT" != ":"; then
-  echo "$as_me:6549: result: $MSGFMT" >&5
+  echo "$as_me:6556: result: $MSGFMT" >&5
 echo "${ECHO_T}$MSGFMT" >&6
 else
-  echo "$as_me:6552: result: no" >&5
+  echo "$as_me:6559: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
         # Extract the first word of "gmsgfmt", so it can be a program name with args.
 set dummy gmsgfmt; ac_word=$2
-echo "$as_me:6558: checking for $ac_word" >&5
+echo "$as_me:6565: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_GMSGFMT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6572,7 +6579,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_GMSGFMT="$ac_dir/$ac_word"
-   echo "$as_me:6575: found $ac_dir/$ac_word" >&5
+   echo "$as_me:6582: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -6584,17 +6591,17 @@ fi
 GMSGFMT=$ac_cv_path_GMSGFMT
 
 if test -n "$GMSGFMT"; then
-  echo "$as_me:6587: result: $GMSGFMT" >&5
+  echo "$as_me:6594: result: $GMSGFMT" >&5
 echo "${ECHO_T}$GMSGFMT" >&6
 else
-  echo "$as_me:6590: result: no" >&5
+  echo "$as_me:6597: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
         # Extract the first word of "xgettext", so it can be a program name with args.
 
 set dummy xgettext; ac_word=$2
-echo "$as_me:6597: checking for $ac_word" >&5
+echo "$as_me:6604: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_XGETTEXT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6608,9 +6615,9 @@ else
   IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}${PATHSEP}"
   for ac_dir in $PATH; do
     test -z "$ac_dir" && ac_dir=.
-    if test -f $ac_dir/$ac_word; then
+    if test -f $ac_dir/$ac_word$ac_exeext; then
       if $ac_dir/$ac_word --omit-header /dev/null >/dev/null 2>&1; then
-	ac_cv_path_XGETTEXT="$ac_dir/$ac_word"
+	ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exeext"
 	break
       fi
     fi
@@ -6622,10 +6629,10 @@ esac
 fi
 XGETTEXT="$ac_cv_path_XGETTEXT"
 if test "$XGETTEXT" != ":"; then
-  echo "$as_me:6625: result: $XGETTEXT" >&5
+  echo "$as_me:6632: result: $XGETTEXT" >&5
 echo "${ECHO_T}$XGETTEXT" >&6
 else
-  echo "$as_me:6628: result: no" >&5
+  echo "$as_me:6635: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -6640,7 +6647,7 @@ fi
 			if $GMSGFMT --statistics /dev/null >/dev/null 2>&1; then
 	  : ;
 	else
-	  echo "$as_me:6643: result: found msgfmt program is not GNU msgfmt; ignore it" >&5
+	  echo "$as_me:6650: result: found msgfmt program is not GNU msgfmt; ignore it" >&5
 echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6
 	  GMSGFMT=":"
 	fi
@@ -6650,7 +6657,7 @@ echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6
 			if $XGETTEXT --omit-header /dev/null >/dev/null 2>&1; then
 	  : ;
 	else
-	  echo "$as_me:6653: result: found xgettext program is not GNU xgettext; ignore it" >&5
+	  echo "$as_me:6660: result: found xgettext program is not GNU xgettext; ignore it" >&5
 echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6
 	  XGETTEXT=":"
 	fi
@@ -6670,7 +6677,7 @@ echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:6673: checking for $ac_word" >&5
+echo "$as_me:6680: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_INTLBISON+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6685,7 +6692,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_INTLBISON="$ac_prog"
-echo "$as_me:6688: found $ac_dir/$ac_word" >&5
+echo "$as_me:6695: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -6693,10 +6700,10 @@ fi
 fi
 INTLBISON=$ac_cv_prog_INTLBISON
 if test -n "$INTLBISON"; then
-  echo "$as_me:6696: result: $INTLBISON" >&5
+  echo "$as_me:6703: result: $INTLBISON" >&5
 echo "${ECHO_T}$INTLBISON" >&6
 else
-  echo "$as_me:6699: result: no" >&5
+  echo "$as_me:6706: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -6706,7 +6713,7 @@ done
     if test -z "$INTLBISON"; then
       ac_verc_fail=yes
     else
-            echo "$as_me:6709: checking version of bison" >&5
+            echo "$as_me:6716: checking version of bison" >&5
 echo $ECHO_N "checking version of bison... $ECHO_C" >&6
       ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
       case $ac_prog_version in
@@ -6715,7 +6722,7 @@ echo $ECHO_N "checking version of bison... $ECHO_C" >&6
            ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
         *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
       esac
-      echo "$as_me:6718: result: $ac_prog_version" >&5
+      echo "$as_me:6725: result: $ac_prog_version" >&5
 echo "${ECHO_T}$ac_prog_version" >&6
     fi
     if test $ac_verc_fail = yes; then
@@ -6741,7 +6748,7 @@ echo "${ECHO_T}$ac_prog_version" >&6
      if test "x$ALL_LINGUAS" = "x"; then
        LINGUAS=
      else
-       echo "$as_me:6744: checking for catalogs to be installed" >&5
+       echo "$as_me:6751: checking for catalogs to be installed" >&5
 echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6
        NEW_LINGUAS=
        for presentlang in $ALL_LINGUAS; do
@@ -6761,7 +6768,7 @@ echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6
          fi
        done
        LINGUAS=$NEW_LINGUAS
-       echo "$as_me:6764: result: $LINGUAS" >&5
+       echo "$as_me:6771: result: $LINGUAS" >&5
 echo "${ECHO_T}$LINGUAS" >&6
      fi
 
@@ -6794,7 +6801,7 @@ cf_makefile=makefile
 use_our_messages=no
 if test "$USE_NLS" = yes ; then
 if test -d $srcdir/po ; then
-echo "$as_me:6797: checking if we should use included message-library" >&5
+echo "$as_me:6804: checking if we should use included message-library" >&5
 echo $ECHO_N "checking if we should use included message-library... $ECHO_C" >&6
 
 # Check whether --enable-included-msgs or --disable-included-msgs was given.
@@ -6805,7 +6812,7 @@ else
   use_our_messages=yes
 fi;
 fi
-echo "$as_me:6808: result: $use_our_messages" >&5
+echo "$as_me:6815: result: $use_our_messages" >&5
 echo "${ECHO_T}$use_our_messages" >&6
 fi
 
@@ -6846,23 +6853,23 @@ else
 for ac_header in libintl.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:6849: checking for $ac_header" >&5
+echo "$as_me:6856: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 6855 "configure"
+#line 6862 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:6859: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:6866: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:6865: \$? = $ac_status" >&5
+  echo "$as_me:6872: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -6881,7 +6888,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:6884: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:6891: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -6957,15 +6964,15 @@ case ".$withval" in #(vi
   withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%`
   ;;
 *)
-  { { echo "$as_me:6960: error: expected a pathname, not \"$withval\"" >&5
+  { { echo "$as_me:6967: error: expected a pathname, not \"$withval\"" >&5
 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
    { (exit 1); exit 1; }; }
   ;;
 esac
 
-eval NLS_DATADIR="$withval"
+NLS_DATADIR="$withval"
 
-echo "$as_me:6968: checking if you want full utility pathnames" >&5
+echo "$as_me:6975: checking if you want full utility pathnames" >&5
 echo $ECHO_N "checking if you want full utility pathnames... $ECHO_C" >&6
 
 # Check whether --enable-full-paths or --disable-full-paths was given.
@@ -6982,13 +6989,13 @@ else
   with_full_paths=yes
 
 fi;
-echo "$as_me:6985: result: $with_full_paths" >&5
+echo "$as_me:6992: result: $with_full_paths" >&5
 echo "${ECHO_T}$with_full_paths" >&6
 test $with_full_paths = no && cat >>confdefs.h <<\EOF
 #define USE_EXECVP 1
 EOF
 
-echo "$as_me:6991: checking for system mailer" >&5
+echo "$as_me:6998: checking for system mailer" >&5
 echo $ECHO_N "checking for system mailer... $ECHO_C" >&6
 if test "${cf_cv_SYSTEM_MAIL+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7008,13 +7015,13 @@ else
 
 fi
 
-echo "$as_me:7011: result: $cf_cv_SYSTEM_MAIL" >&5
+echo "$as_me:7018: result: $cf_cv_SYSTEM_MAIL" >&5
 echo "${ECHO_T}$cf_cv_SYSTEM_MAIL" >&6
 cat >>confdefs.h <<EOF
 #define SYSTEM_MAIL "$cf_cv_SYSTEM_MAIL"
 EOF
 
-echo "$as_me:7017: checking system mail flags" >&5
+echo "$as_me:7024: checking system mail flags" >&5
 echo $ECHO_N "checking system mail flags... $ECHO_C" >&6
 if test "${cf_cv_system_mail_flags+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7030,7 +7037,7 @@ else
 
 fi
 
-echo "$as_me:7033: result: $cf_cv_system_mail_flags" >&5
+echo "$as_me:7040: result: $cf_cv_system_mail_flags" >&5
 echo "${ECHO_T}$cf_cv_system_mail_flags" >&6
 cat >>confdefs.h <<EOF
 #define SYSTEM_MAIL_FLAGS "$cf_cv_system_mail_flags"
@@ -7042,7 +7049,7 @@ if test $with_full_paths = no ; then
 fi
 fi
 
-echo "$as_me:7045: checking if $CC -U and -D options work together" >&5
+echo "$as_me:7052: checking if $CC -U and -D options work together" >&5
 echo $ECHO_N "checking if $CC -U and -D options work together... $ECHO_C" >&6
 if test "${cf_cv_cc_u_d_options+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7051,7 +7058,7 @@ else
 	cf_save_CPPFLAGS="$CPPFLAGS"
 	CPPFLAGS="-UU_D_OPTIONS -DU_D_OPTIONS -DD_U_OPTIONS -UD_U_OPTIONS"
 	cat >conftest.$ac_ext <<_ACEOF
-#line 7054 "configure"
+#line 7061 "configure"
 #include "confdefs.h"
 
 int
@@ -7070,16 +7077,16 @@ make a defined-error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7073: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7080: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:7076: \$? = $ac_status" >&5
+  echo "$as_me:7083: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:7079: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7086: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7082: \$? = $ac_status" >&5
+  echo "$as_me:7089: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_cc_u_d_options=yes
@@ -7093,7 +7100,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 	CPPFLAGS="$cf_save_CPPFLAGS"
 
 fi
-echo "$as_me:7096: result: $cf_cv_cc_u_d_options" >&5
+echo "$as_me:7103: result: $cf_cv_cc_u_d_options" >&5
 echo "${ECHO_T}$cf_cv_cc_u_d_options" >&6
 
 cf_XOPEN_SOURCE=600
@@ -7119,14 +7126,14 @@ irix[56].*) #(vi
 	;;
 linux*|gnu*) #(vi
 
-echo "$as_me:7122: checking if we must define _GNU_SOURCE" >&5
+echo "$as_me:7129: checking if we must define _GNU_SOURCE" >&5
 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6
 if test "${cf_cv_gnu_source+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 7129 "configure"
+#line 7136 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
@@ -7141,16 +7148,16 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7144: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7151: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:7147: \$? = $ac_status" >&5
+  echo "$as_me:7154: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:7150: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7157: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7153: \$? = $ac_status" >&5
+  echo "$as_me:7160: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_gnu_source=no
 else
@@ -7159,7 +7166,7 @@ cat conftest.$ac_ext >&5
 cf_save="$CPPFLAGS"
 	 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
 	 cat >conftest.$ac_ext <<_ACEOF
-#line 7162 "configure"
+#line 7169 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
@@ -7174,16 +7181,16 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7177: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7184: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:7180: \$? = $ac_status" >&5
+  echo "$as_me:7187: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:7183: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7190: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7186: \$? = $ac_status" >&5
+  echo "$as_me:7193: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_gnu_source=no
 else
@@ -7198,7 +7205,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:7201: result: $cf_cv_gnu_source" >&5
+echo "$as_me:7208: result: $cf_cv_gnu_source" >&5
 echo "${ECHO_T}$cf_cv_gnu_source" >&6
 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
 
@@ -7225,14 +7232,14 @@ solaris*) #(vi
 	CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
 	;;
 *)
-	echo "$as_me:7228: checking if we should define _XOPEN_SOURCE" >&5
+	echo "$as_me:7235: checking if we should define _XOPEN_SOURCE" >&5
 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
 if test "${cf_cv_xopen_source+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 7235 "configure"
+#line 7242 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
@@ -7247,16 +7254,16 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7250: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7257: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:7253: \$? = $ac_status" >&5
+  echo "$as_me:7260: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:7256: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7263: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7259: \$? = $ac_status" >&5
+  echo "$as_me:7266: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_xopen_source=no
 else
@@ -7265,7 +7272,7 @@ cat conftest.$ac_ext >&5
 cf_save="$CPPFLAGS"
 	 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
 	 cat >conftest.$ac_ext <<_ACEOF
-#line 7268 "configure"
+#line 7275 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
@@ -7280,16 +7287,16 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7283: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7290: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:7286: \$? = $ac_status" >&5
+  echo "$as_me:7293: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:7289: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7296: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7292: \$? = $ac_status" >&5
+  echo "$as_me:7299: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_xopen_source=no
 else
@@ -7304,7 +7311,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:7307: result: $cf_cv_xopen_source" >&5
+echo "$as_me:7314: result: $cf_cv_xopen_source" >&5
 echo "${ECHO_T}$cf_cv_xopen_source" >&6
 	if test "$cf_cv_xopen_source" != no ; then
 
@@ -7338,16 +7345,16 @@ cf_trim_CPPFLAGS=`echo "$cf_save_CPPFLAGS" | \
 	sed	-e 's/-[UD]_POSIX_C_SOURCE\(=[^ 	]*\)\?[ 	]/ /g' \
 		-e 's/-[UD]_POSIX_C_SOURCE\(=[^ 	]*\)\?$//g'`
 
-echo "$as_me:7341: checking if we should define _POSIX_C_SOURCE" >&5
+echo "$as_me:7348: checking if we should define _POSIX_C_SOURCE" >&5
 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
 if test "${cf_cv_posix_c_source+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
-echo "(line 7347) testing if the symbol is already defined go no further ..." 1>&5
+echo "(line 7354) testing if the symbol is already defined go no further ..." 1>&5
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 7350 "configure"
+#line 7357 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
@@ -7362,16 +7369,16 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7365: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7372: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:7368: \$? = $ac_status" >&5
+  echo "$as_me:7375: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:7371: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7378: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7374: \$? = $ac_status" >&5
+  echo "$as_me:7381: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_posix_c_source=no
 else
@@ -7392,7 +7399,7 @@ cf_want_posix_source=no
 	 esac
 	 if test "$cf_want_posix_source" = yes ; then
 		cat >conftest.$ac_ext <<_ACEOF
-#line 7395 "configure"
+#line 7402 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
@@ -7407,16 +7414,16 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7410: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7417: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:7413: \$? = $ac_status" >&5
+  echo "$as_me:7420: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:7416: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7423: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7419: \$? = $ac_status" >&5
+  echo "$as_me:7426: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -7427,15 +7434,15 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 	 fi
 
-echo "(line 7430) testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
+echo "(line 7437) testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
 
 	 CFLAGS="$cf_trim_CFLAGS"
 	 CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
 
-echo "(line 7435) testing if the second compile does not leave our definition intact error ..." 1>&5
+echo "(line 7442) testing if the second compile does not leave our definition intact error ..." 1>&5
 
 	 cat >conftest.$ac_ext <<_ACEOF
-#line 7438 "configure"
+#line 7445 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
@@ -7450,16 +7457,16 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7453: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:7460: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:7456: \$? = $ac_status" >&5
+  echo "$as_me:7463: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:7459: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7466: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7462: \$? = $ac_status" >&5
+  echo "$as_me:7469: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -7475,7 +7482,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:7478: result: $cf_cv_posix_c_source" >&5
+echo "$as_me:7485: result: $cf_cv_posix_c_source" >&5
 echo "${ECHO_T}$cf_cv_posix_c_source" >&6
 
 if test "$cf_cv_posix_c_source" != no ; then
@@ -7492,6 +7499,153 @@ fi
 	;;
 esac
 
+echo "$as_me:7502: checking if SIGWINCH is defined" >&5
+echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6
+if test "${cf_cv_define_sigwinch+set}" = set; then
+  echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+
+	cat >conftest.$ac_ext <<_ACEOF
+#line 7509 "configure"
+#include "confdefs.h"
+
+#include <sys/types.h>
+#include <sys/signal.h>
+
+int
+main ()
+{
+int x = SIGWINCH
+  ;
+  return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:7524: \"$ac_compile\"") >&5
+  (eval $ac_compile) 2>&5
+  ac_status=$?
+  echo "$as_me:7527: \$? = $ac_status" >&5
+  (exit $ac_status); } &&
+         { ac_try='test -s conftest.$ac_objext'
+  { (eval echo "$as_me:7530: \"$ac_try\"") >&5
+  (eval $ac_try) 2>&5
+  ac_status=$?
+  echo "$as_me:7533: \$? = $ac_status" >&5
+  (exit $ac_status); }; }; then
+  cf_cv_define_sigwinch=yes
+else
+  echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+cat >conftest.$ac_ext <<_ACEOF
+#line 7540 "configure"
+#include "confdefs.h"
+
+#undef _XOPEN_SOURCE
+#undef _POSIX_SOURCE
+#undef _POSIX_C_SOURCE
+#include <sys/types.h>
+#include <sys/signal.h>
+
+int
+main ()
+{
+int x = SIGWINCH
+  ;
+  return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:7558: \"$ac_compile\"") >&5
+  (eval $ac_compile) 2>&5
+  ac_status=$?
+  echo "$as_me:7561: \$? = $ac_status" >&5
+  (exit $ac_status); } &&
+         { ac_try='test -s conftest.$ac_objext'
+  { (eval echo "$as_me:7564: \"$ac_try\"") >&5
+  (eval $ac_try) 2>&5
+  ac_status=$?
+  echo "$as_me:7567: \$? = $ac_status" >&5
+  (exit $ac_status); }; }; then
+  cf_cv_define_sigwinch=maybe
+else
+  echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+cf_cv_define_sigwinch=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+
+fi
+echo "$as_me:7581: result: $cf_cv_define_sigwinch" >&5
+echo "${ECHO_T}$cf_cv_define_sigwinch" >&6
+
+if test "$cf_cv_define_sigwinch" = maybe ; then
+echo "$as_me:7585: checking for actual SIGWINCH definition" >&5
+echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6
+if test "${cf_cv_fixup_sigwinch+set}" = set; then
+  echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+
+cf_cv_fixup_sigwinch=unknown
+cf_sigwinch=32
+while test $cf_sigwinch != 1
+do
+	cat >conftest.$ac_ext <<_ACEOF
+#line 7596 "configure"
+#include "confdefs.h"
+
+#undef _XOPEN_SOURCE
+#undef _POSIX_SOURCE
+#undef _POSIX_C_SOURCE
+#include <sys/types.h>
+#include <sys/signal.h>
+
+int
+main ()
+{
+
+#if SIGWINCH != $cf_sigwinch
+make an error
+#endif
+int x = SIGWINCH
+  ;
+  return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:7618: \"$ac_compile\"") >&5
+  (eval $ac_compile) 2>&5
+  ac_status=$?
+  echo "$as_me:7621: \$? = $ac_status" >&5
+  (exit $ac_status); } &&
+         { ac_try='test -s conftest.$ac_objext'
+  { (eval echo "$as_me:7624: \"$ac_try\"") >&5
+  (eval $ac_try) 2>&5
+  ac_status=$?
+  echo "$as_me:7627: \$? = $ac_status" >&5
+  (exit $ac_status); }; }; then
+  cf_cv_fixup_sigwinch=$cf_sigwinch
+	 break
+else
+  echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+
+cf_sigwinch=`expr $cf_sigwinch - 1`
+done
+
+fi
+echo "$as_me:7641: result: $cf_cv_fixup_sigwinch" >&5
+echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6
+
+	if test "$cf_cv_fixup_sigwinch" != unknown ; then
+		CPPFLAGS="$CPPFLAGS -DSIGWINCH=$cf_cv_fixup_sigwinch"
+	fi
+fi
+
 if test -n "$TRY_CFLAGS" ; then
 
 test -n "$verbose" && echo "	checking additions to CFLAGS" 1>&6
@@ -7572,7 +7726,7 @@ fi
 
 if test "$cf_check_cflags" != "$CFLAGS" ; then
 cat >conftest.$ac_ext <<_ACEOF
-#line 7575 "configure"
+#line 7729 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -7584,16 +7738,16 @@ printf("Hello world");
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7587: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7741: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7590: \$? = $ac_status" >&5
+  echo "$as_me:7744: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7593: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7747: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7596: \$? = $ac_status" >&5
+  echo "$as_me:7750: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -7614,7 +7768,7 @@ fi
 
 ### Look for network libraries first, since some functions (such as gethostname)
 ### are used in a lot of places.
-echo "$as_me:7617: checking if you want ssl library" >&5
+echo "$as_me:7771: checking if you want ssl library" >&5
 echo $ECHO_N "checking if you want ssl library... $ECHO_C" >&6
 if test "${cf_cv_use_libssl+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7629,11 +7783,11 @@ else
 fi;
 
 fi
-echo "$as_me:7632: result: $cf_cv_use_libssl" >&5
+echo "$as_me:7786: result: $cf_cv_use_libssl" >&5
 echo "${ECHO_T}$cf_cv_use_libssl" >&6
 
 if test "x$cf_cv_use_libssl" = "xno" ; then
-echo "$as_me:7636: checking if you want experimental gnutls support" >&5
+echo "$as_me:7790: checking if you want experimental gnutls support" >&5
 echo $ECHO_N "checking if you want experimental gnutls support... $ECHO_C" >&6
 if test "${cf_cv_use_libgnutls+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7648,11 +7802,11 @@ else
 fi;
 
 fi
-echo "$as_me:7651: result: $cf_cv_use_libgnutls" >&5
+echo "$as_me:7805: result: $cf_cv_use_libgnutls" >&5
 echo "${ECHO_T}$cf_cv_use_libgnutls" >&6
 fi
 
-echo "$as_me:7655: checking if you want socks library" >&5
+echo "$as_me:7809: checking if you want socks library" >&5
 echo $ECHO_N "checking if you want socks library... $ECHO_C" >&6
 if test "${cf_cv_use_libsocks+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7667,10 +7821,10 @@ else
 fi;
 
 fi
-echo "$as_me:7670: result: $cf_cv_use_libsocks" >&5
+echo "$as_me:7824: result: $cf_cv_use_libsocks" >&5
 echo "${ECHO_T}$cf_cv_use_libsocks" >&6
 
-echo "$as_me:7673: checking if you want socks5 library" >&5
+echo "$as_me:7827: checking if you want socks5 library" >&5
 echo $ECHO_N "checking if you want socks5 library... $ECHO_C" >&6
 if test "${cf_cv_use_libsocks5+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7685,7 +7839,7 @@ else
 fi;
 
 fi
-echo "$as_me:7688: result: $cf_cv_use_libsocks5" >&5
+echo "$as_me:7842: result: $cf_cv_use_libsocks5" >&5
 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6
 
 if test "x$cf_cv_use_libsocks" != xno ; then
@@ -7703,7 +7857,7 @@ no|yes) #(vi
       test -d $cf_cv_use_libsocks/../include && CPPFLAGS="$CPPFLAGS -I$cf_cv_use_libsocks/../include"
     fi
   else
-    { echo "$as_me:7706: WARNING: expected a directory: $cf_cv_use_libsocks" >&5
+    { echo "$as_me:7860: WARNING: expected a directory: $cf_cv_use_libsocks" >&5
 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libsocks" >&2;}
   fi
   ;;
@@ -7746,7 +7900,7 @@ cat >>confdefs.h <<\EOF
 EOF
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 7749 "configure"
+#line 7903 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -7760,22 +7914,22 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7763: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7917: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7766: \$? = $ac_status" >&5
+  echo "$as_me:7920: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7769: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7923: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7772: \$? = $ac_status" >&5
+  echo "$as_me:7926: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-{ { echo "$as_me:7778: error: Cannot link with socks library" >&5
+{ { echo "$as_me:7932: error: Cannot link with socks library" >&5
 echo "$as_me: error: Cannot link with socks library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -7796,7 +7950,7 @@ no|yes) #(vi
       test -d $cf_cv_use_libsocks5/../include && CPPFLAGS="$CPPFLAGS -I$cf_cv_use_libsocks5/../include"
     fi
   else
-    { echo "$as_me:7799: WARNING: expected a directory: $cf_cv_use_libsocks5" >&5
+    { echo "$as_me:7953: WARNING: expected a directory: $cf_cv_use_libsocks5" >&5
 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libsocks5" >&2;}
   fi
   ;;
@@ -7810,11 +7964,11 @@ cat >>confdefs.h <<\EOF
 #define SOCKS 1
 EOF
 
-echo "$as_me:7813: checking if the socks library uses socks4 prefix" >&5
+echo "$as_me:7967: checking if the socks library uses socks4 prefix" >&5
 echo $ECHO_N "checking if the socks library uses socks4 prefix... $ECHO_C" >&6
 cf_use_socks4=error
 cat >conftest.$ac_ext <<_ACEOF
-#line 7817 "configure"
+#line 7971 "configure"
 #include "confdefs.h"
 
 #include <socks.h>
@@ -7828,16 +7982,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7831: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7985: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7834: \$? = $ac_status" >&5
+  echo "$as_me:7988: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7837: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7991: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7840: \$? = $ac_status" >&5
+  echo "$as_me:7994: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cat >>confdefs.h <<\EOF
 #define USE_SOCKS4_PREFIX 1
@@ -7848,7 +8002,7 @@ else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 cat >conftest.$ac_ext <<_ACEOF
-#line 7851 "configure"
+#line 8005 "configure"
 #include "confdefs.h"
 #include <socks.h>
 int
@@ -7860,29 +8014,29 @@ SOCKSinit((char *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7863: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8017: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7866: \$? = $ac_status" >&5
+  echo "$as_me:8020: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7869: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8023: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7872: \$? = $ac_status" >&5
+  echo "$as_me:8026: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_use_socks4=no
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-{ { echo "$as_me:7878: error: Cannot link with socks5 library" >&5
+{ { echo "$as_me:8032: error: Cannot link with socks5 library" >&5
 echo "$as_me: error: Cannot link with socks5 library" >&2;}
    { (exit 1); exit 1; }; }
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-echo "$as_me:7885: result: $cf_use_socks4" >&5
+echo "$as_me:8039: result: $cf_use_socks4" >&5
 echo "${ECHO_T}$cf_use_socks4" >&6
 if test "$cf_use_socks4" = "yes" ; then
 	cat >>confdefs.h <<\EOF
@@ -7935,10 +8089,10 @@ EOF
 EOF
 
 fi
-echo "$as_me:7938: checking if socks5p.h is available" >&5
+echo "$as_me:8092: checking if socks5p.h is available" >&5
 echo $ECHO_N "checking if socks5p.h is available... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 7941 "configure"
+#line 8095 "configure"
 #include "confdefs.h"
 
 #define INCLUDE_PROTOTYPES
@@ -7953,16 +8107,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:7956: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8110: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:7959: \$? = $ac_status" >&5
+  echo "$as_me:8113: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:7962: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8116: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7965: \$? = $ac_status" >&5
+  echo "$as_me:8119: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_use_socks5p_h=yes
 else
@@ -7971,7 +8125,7 @@ cat conftest.$ac_ext >&5
 cf_use_socks5p_h=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
-echo "$as_me:7974: result: $cf_use_socks5p_h" >&5
+echo "$as_me:8128: result: $cf_use_socks5p_h" >&5
 echo "${ECHO_T}$cf_use_socks5p_h" >&6
 test "$cf_use_socks5p_h" = yes && cat >>confdefs.h <<\EOF
 #define INCLUDE_PROTOTYPES 1
@@ -7980,13 +8134,13 @@ EOF
 else
 
 cf_test_netlibs=no
-echo "$as_me:7983: checking for network libraries" >&5
+echo "$as_me:8137: checking for network libraries" >&5
 echo $ECHO_N "checking for network libraries... $ECHO_C" >&6
 if test "${cf_cv_netlibs+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
-echo "$as_me:7989: result: working..." >&5
+echo "$as_me:8143: result: working..." >&5
 echo "${ECHO_T}working..." >&6
 cf_cv_netlibs=""
 cf_test_netlibs=yes
@@ -7994,13 +8148,13 @@ cf_test_netlibs=yes
 for ac_func in gethostname
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:7997: checking for $ac_func" >&5
+echo "$as_me:8151: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 8003 "configure"
+#line 8157 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -8031,16 +8185,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8034: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8188: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8037: \$? = $ac_status" >&5
+  echo "$as_me:8191: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8040: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8194: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8043: \$? = $ac_status" >&5
+  echo "$as_me:8197: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -8050,7 +8204,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:8053: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:8207: result: `eval echo '${'$as_ac_var'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 if test `eval echo '${'$as_ac_var'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -8059,7 +8213,7 @@ EOF
 
 else
 
-echo "$as_me:8062: checking for gethostname in -lnsl" >&5
+echo "$as_me:8216: checking for gethostname in -lnsl" >&5
 echo $ECHO_N "checking for gethostname in -lnsl... $ECHO_C" >&6
 if test "${ac_cv_lib_nsl_gethostname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8067,7 +8221,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lnsl $cf_cv_netlibs $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8070 "configure"
+#line 8224 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8086,16 +8240,16 @@ gethostname ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8089: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8243: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8092: \$? = $ac_status" >&5
+  echo "$as_me:8246: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8095: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8249: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8098: \$? = $ac_status" >&5
+  echo "$as_me:8252: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_nsl_gethostname=yes
 else
@@ -8106,7 +8260,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8109: result: $ac_cv_lib_nsl_gethostname" >&5
+echo "$as_me:8263: result: $ac_cv_lib_nsl_gethostname" >&5
 echo "${ECHO_T}$ac_cv_lib_nsl_gethostname" >&6
 if test $ac_cv_lib_nsl_gethostname = yes; then
 
@@ -8123,7 +8277,7 @@ else
 	ac_cv_func_gethostname=unknown
 	unset ac_cv_func_gethostname 2>/dev/null
 
-echo "$as_me:8126: checking for gethostname in -lsocket" >&5
+echo "$as_me:8280: checking for gethostname in -lsocket" >&5
 echo $ECHO_N "checking for gethostname in -lsocket... $ECHO_C" >&6
 if test "${ac_cv_lib_socket_gethostname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8131,7 +8285,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lsocket $cf_cv_netlibs $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8134 "configure"
+#line 8288 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8150,16 +8304,16 @@ gethostname ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8153: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8307: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8156: \$? = $ac_status" >&5
+  echo "$as_me:8310: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8159: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8313: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8162: \$? = $ac_status" >&5
+  echo "$as_me:8316: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_socket_gethostname=yes
 else
@@ -8170,7 +8324,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8173: result: $ac_cv_lib_socket_gethostname" >&5
+echo "$as_me:8327: result: $ac_cv_lib_socket_gethostname" >&5
 echo "${ECHO_T}$ac_cv_lib_socket_gethostname" >&6
 if test $ac_cv_lib_socket_gethostname = yes; then
 
@@ -8198,7 +8352,7 @@ done
 # FIXME:  sequent needs this library (i.e., -lsocket -linet -lnsl), but
 # I don't know the entrypoints - 97/7/22 TD
 # AC_HAVE_LIBRARY(inet,cf_cv_netlibs="-linet $cf_cv_netlibs")
-echo "$as_me:8201: checking for main in -linet" >&5
+echo "$as_me:8355: checking for main in -linet" >&5
 echo $ECHO_N "checking for main in -linet... $ECHO_C" >&6
 if test "${ac_cv_lib_inet_main+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8206,7 +8360,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-linet  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8209 "configure"
+#line 8363 "configure"
 #include "confdefs.h"
 
 int
@@ -8218,16 +8372,16 @@ main ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8221: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8375: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8224: \$? = $ac_status" >&5
+  echo "$as_me:8378: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8227: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8381: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8230: \$? = $ac_status" >&5
+  echo "$as_me:8384: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_inet_main=yes
 else
@@ -8238,7 +8392,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8241: result: $ac_cv_lib_inet_main" >&5
+echo "$as_me:8395: result: $ac_cv_lib_inet_main" >&5
 echo "${ECHO_T}$ac_cv_lib_inet_main" >&6
 if test $ac_cv_lib_inet_main = yes; then
   cf_cv_netlibs="-linet $cf_cv_netlibs"
@@ -8250,13 +8404,13 @@ if test "$ac_cv_func_lsocket" != no ; then
 for ac_func in socket
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:8253: checking for $ac_func" >&5
+echo "$as_me:8407: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 8259 "configure"
+#line 8413 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -8287,16 +8441,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8290: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8444: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8293: \$? = $ac_status" >&5
+  echo "$as_me:8447: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8296: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8450: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8299: \$? = $ac_status" >&5
+  echo "$as_me:8453: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -8306,7 +8460,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:8309: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:8463: result: `eval echo '${'$as_ac_var'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 if test `eval echo '${'$as_ac_var'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -8315,7 +8469,7 @@ EOF
 
 else
 
-echo "$as_me:8318: checking for socket in -lsocket" >&5
+echo "$as_me:8472: checking for socket in -lsocket" >&5
 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6
 if test "${ac_cv_lib_socket_socket+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8323,7 +8477,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lsocket $cf_cv_netlibs $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8326 "configure"
+#line 8480 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8342,16 +8496,16 @@ socket ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8345: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8499: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8348: \$? = $ac_status" >&5
+  echo "$as_me:8502: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8351: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8505: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8354: \$? = $ac_status" >&5
+  echo "$as_me:8508: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_socket_socket=yes
 else
@@ -8362,7 +8516,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8365: result: $ac_cv_lib_socket_socket" >&5
+echo "$as_me:8519: result: $ac_cv_lib_socket_socket" >&5
 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6
 if test $ac_cv_lib_socket_socket = yes; then
 
@@ -8379,7 +8533,7 @@ else
 	ac_cv_func_socket=unknown
 	unset ac_cv_func_socket 2>/dev/null
 
-echo "$as_me:8382: checking for socket in -lbsd" >&5
+echo "$as_me:8536: checking for socket in -lbsd" >&5
 echo $ECHO_N "checking for socket in -lbsd... $ECHO_C" >&6
 if test "${ac_cv_lib_bsd_socket+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8387,7 +8541,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lbsd $cf_cv_netlibs $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8390 "configure"
+#line 8544 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8406,16 +8560,16 @@ socket ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8409: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8563: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8412: \$? = $ac_status" >&5
+  echo "$as_me:8566: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8415: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8569: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8418: \$? = $ac_status" >&5
+  echo "$as_me:8572: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_bsd_socket=yes
 else
@@ -8426,7 +8580,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8429: result: $ac_cv_lib_bsd_socket" >&5
+echo "$as_me:8583: result: $ac_cv_lib_bsd_socket" >&5
 echo "${ECHO_T}$ac_cv_lib_bsd_socket" >&6
 if test $ac_cv_lib_bsd_socket = yes; then
 
@@ -8456,13 +8610,13 @@ fi
 for ac_func in gethostbyname
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:8459: checking for $ac_func" >&5
+echo "$as_me:8613: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 8465 "configure"
+#line 8619 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -8493,16 +8647,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8496: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8650: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8499: \$? = $ac_status" >&5
+  echo "$as_me:8653: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8502: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8656: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8505: \$? = $ac_status" >&5
+  echo "$as_me:8659: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -8512,7 +8666,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:8515: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:8669: result: `eval echo '${'$as_ac_var'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 if test `eval echo '${'$as_ac_var'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -8521,7 +8675,7 @@ EOF
 
 else
 
-echo "$as_me:8524: checking for gethostbyname in -lnsl" >&5
+echo "$as_me:8678: checking for gethostbyname in -lnsl" >&5
 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6
 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8529,7 +8683,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lnsl $cf_cv_netlibs $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8532 "configure"
+#line 8686 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8548,16 +8702,16 @@ gethostbyname ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8551: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8705: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8554: \$? = $ac_status" >&5
+  echo "$as_me:8708: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8557: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8711: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8560: \$? = $ac_status" >&5
+  echo "$as_me:8714: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_nsl_gethostbyname=yes
 else
@@ -8568,7 +8722,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8571: result: $ac_cv_lib_nsl_gethostbyname" >&5
+echo "$as_me:8725: result: $ac_cv_lib_nsl_gethostbyname" >&5
 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6
 if test $ac_cv_lib_nsl_gethostbyname = yes; then
 
@@ -8595,13 +8749,13 @@ done
 for ac_func in strcasecmp
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:8598: checking for $ac_func" >&5
+echo "$as_me:8752: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 8604 "configure"
+#line 8758 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -8632,16 +8786,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8635: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8789: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8638: \$? = $ac_status" >&5
+  echo "$as_me:8792: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8641: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8795: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8644: \$? = $ac_status" >&5
+  echo "$as_me:8798: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -8651,7 +8805,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:8654: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:8808: result: `eval echo '${'$as_ac_var'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 if test `eval echo '${'$as_ac_var'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -8660,7 +8814,7 @@ EOF
 
 else
 
-echo "$as_me:8663: checking for strcasecmp in -lresolv" >&5
+echo "$as_me:8817: checking for strcasecmp in -lresolv" >&5
 echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6
 if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8668,7 +8822,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lresolv $cf_cv_netlibs $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8671 "configure"
+#line 8825 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8687,16 +8841,16 @@ strcasecmp ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8690: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8844: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8693: \$? = $ac_status" >&5
+  echo "$as_me:8847: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8696: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8850: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8699: \$? = $ac_status" >&5
+  echo "$as_me:8853: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_resolv_strcasecmp=yes
 else
@@ -8707,7 +8861,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8710: result: $ac_cv_lib_resolv_strcasecmp" >&5
+echo "$as_me:8864: result: $ac_cv_lib_resolv_strcasecmp" >&5
 echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6
 if test $ac_cv_lib_resolv_strcasecmp = yes; then
 
@@ -8736,14 +8890,14 @@ test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&6
 
 fi
 
-echo "$as_me:8739: checking for inet_aton function" >&5
+echo "$as_me:8893: checking for inet_aton function" >&5
 echo $ECHO_N "checking for inet_aton function... $ECHO_C" >&6
 if test "${cf_cv_have_inet_aton+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 8746 "configure"
+#line 8900 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <sys/socket.h>
@@ -8759,16 +8913,16 @@ inet_aton(0, (struct in_addr *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8762: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8916: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8765: \$? = $ac_status" >&5
+  echo "$as_me:8919: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8768: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8922: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8771: \$? = $ac_status" >&5
+  echo "$as_me:8925: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_inet_aton=yes
 else
@@ -8778,7 +8932,7 @@ cf_cv_have_inet_aton=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:8781: result: $cf_cv_have_inet_aton" >&5
+echo "$as_me:8935: result: $cf_cv_have_inet_aton" >&5
 echo "${ECHO_T}$cf_cv_have_inet_aton" >&6
 if test "$cf_cv_have_inet_aton" = yes ; then
     cat >>confdefs.h <<\EOF
@@ -8786,14 +8940,14 @@ if test "$cf_cv_have_inet_aton" = yes ; then
 EOF
 
 else
-    echo "$as_me:8789: checking for inet_addr function" >&5
+    echo "$as_me:8943: checking for inet_addr function" >&5
 echo $ECHO_N "checking for inet_addr function... $ECHO_C" >&6
 if test "${cf_cv_have_inet_addr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
     cat >conftest.$ac_ext <<_ACEOF
-#line 8796 "configure"
+#line 8950 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <sys/socket.h>
@@ -8809,16 +8963,16 @@ inet_addr(0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8812: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8966: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8815: \$? = $ac_status" >&5
+  echo "$as_me:8969: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8818: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8972: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8821: \$? = $ac_status" >&5
+  echo "$as_me:8975: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_inet_addr=yes
 else
@@ -8828,10 +8982,10 @@ cf_cv_have_inet_addr=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:8831: result: $cf_cv_have_inet_addr" >&5
+echo "$as_me:8985: result: $cf_cv_have_inet_addr" >&5
 echo "${ECHO_T}$cf_cv_have_inet_addr" >&6
     if test "$cf_cv_have_inet_addr" = no ; then
-	echo "$as_me:8834: checking for library with inet_addr" >&5
+	echo "$as_me:8988: checking for library with inet_addr" >&5
 echo $ECHO_N "checking for library with inet_addr... $ECHO_C" >&6
 if test "${cf_cv_lib_inet_addr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8842,7 +8996,7 @@ else
 	    do
 		LIBS="$cf_save_LIBS $cf_inetlib"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 8845 "configure"
+#line 8999 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <sys/socket.h>
@@ -8858,16 +9012,16 @@ inet_addr(0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8861: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9015: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8864: \$? = $ac_status" >&5
+  echo "$as_me:9018: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8867: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9021: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8870: \$? = $ac_status" >&5
+  echo "$as_me:9024: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_lib_inet_addr=$cf_inetlib
 else
@@ -8881,12 +9035,12 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 	    done
 
 fi
-echo "$as_me:8884: result: $cf_cv_lib_inet_addr" >&5
+echo "$as_me:9038: result: $cf_cv_lib_inet_addr" >&5
 echo "${ECHO_T}$cf_cv_lib_inet_addr" >&6
 	if test "$cf_cv_lib_inet_addr" != no ; then
 	    LIBS="$LIBS $cf_cv_lib_inet_addr"
 	else
-	    { echo "$as_me:8889: WARNING: Unable to find library for inet_addr function" >&5
+	    { echo "$as_me:9043: WARNING: Unable to find library for inet_addr function" >&5
 echo "$as_me: WARNING: Unable to find library for inet_addr function" >&2;}
 	fi
     fi
@@ -8901,7 +9055,7 @@ no) #(vi
 	;;
 yes) #(vi
 
-echo "$as_me:8904: checking for SSL_get_version in -lssl" >&5
+echo "$as_me:9058: checking for SSL_get_version in -lssl" >&5
 echo $ECHO_N "checking for SSL_get_version in -lssl... $ECHO_C" >&6
 if test "${ac_cv_lib_ssl_SSL_get_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8909,7 +9063,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lssl -lcrypto $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8912 "configure"
+#line 9066 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8928,16 +9082,16 @@ SSL_get_version ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8931: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9085: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8934: \$? = $ac_status" >&5
+  echo "$as_me:9088: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8937: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9091: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8940: \$? = $ac_status" >&5
+  echo "$as_me:9094: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_ssl_SSL_get_version=yes
 else
@@ -8948,7 +9102,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8951: result: $ac_cv_lib_ssl_SSL_get_version" >&5
+echo "$as_me:9105: result: $ac_cv_lib_ssl_SSL_get_version" >&5
 echo "${ECHO_T}$ac_cv_lib_ssl_SSL_get_version" >&6
 if test $ac_cv_lib_ssl_SSL_get_version = yes; then
   cat >>confdefs.h <<EOF
@@ -8965,7 +9119,7 @@ else
 
 			cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library"
 		else
-			{ { echo "$as_me:8968: error: cannot find ssl library" >&5
+			{ { echo "$as_me:9122: error: cannot find ssl library" >&5
 echo "$as_me: error: cannot find ssl library" >&2;}
    { (exit 1); exit 1; }; }
 		fi
@@ -8980,13 +9134,13 @@ fi
 		elif test -d $cf_cv_use_libssl/../include ; then
 			cf_ssl_root=$cf_cv_use_libssl/..
 		else
-			{ { echo "$as_me:8983: error: cannot find ssl library under $cf_cv_use_libssl" >&5
+			{ { echo "$as_me:9137: error: cannot find ssl library under $cf_cv_use_libssl" >&5
 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;}
    { (exit 1); exit 1; }; }
 		fi
 		cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library"
 	else
-		{ echo "$as_me:8989: WARNING: expected a directory: $cf_cv_use_libssl" >&5
+		{ echo "$as_me:9143: WARNING: expected a directory: $cf_cv_use_libssl" >&5
 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libssl" >&2;}
 	fi
 	;;
@@ -9070,10 +9224,10 @@ fi
 fi
 
 if test "$cf_ssl_subincs" = yes ; then
-echo "$as_me:9073: checking for openssl include directory" >&5
+echo "$as_me:9227: checking for openssl include directory" >&5
 echo $ECHO_N "checking for openssl include directory... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 9076 "configure"
+#line 9230 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -9087,16 +9241,16 @@ SSL_shutdown((SSL *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9090: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9244: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:9093: \$? = $ac_status" >&5
+  echo "$as_me:9247: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:9096: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9250: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9099: \$? = $ac_status" >&5
+  echo "$as_me:9253: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_openssl_incl=yes
 else
@@ -9105,7 +9259,7 @@ cat conftest.$ac_ext >&5
 cf_openssl_incl=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
-echo "$as_me:9108: result: $cf_openssl_incl" >&5
+echo "$as_me:9262: result: $cf_openssl_incl" >&5
 echo "${ECHO_T}$cf_openssl_incl" >&6
 test "$cf_openssl_incl" = yes && cat >>confdefs.h <<\EOF
 #define USE_OPENSSL_INCL 1
@@ -9113,10 +9267,10 @@ EOF
 
 fi
 
-echo "$as_me:9116: checking if we can link to ssl library" >&5
+echo "$as_me:9270: checking if we can link to ssl library" >&5
 echo $ECHO_N "checking if we can link to ssl library... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 9119 "configure"
+#line 9273 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -9135,16 +9289,16 @@ SSL_shutdown((SSL *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9138: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9292: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9141: \$? = $ac_status" >&5
+  echo "$as_me:9295: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9144: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9298: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9147: \$? = $ac_status" >&5
+  echo "$as_me:9301: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_ssl_library=yes
 else
@@ -9153,7 +9307,7 @@ cat conftest.$ac_ext >&5
 cf_ssl_library=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-echo "$as_me:9156: result: $cf_ssl_library" >&5
+echo "$as_me:9310: result: $cf_ssl_library" >&5
 echo "${ECHO_T}$cf_ssl_library" >&6
 if test "$cf_ssl_library" = yes ; then
 	cat >>confdefs.h <<\EOF
@@ -9165,7 +9319,7 @@ EOF
 EOF
 
 else
-	{ { echo "$as_me:9168: error: Cannot link with ssl library" >&5
+	{ { echo "$as_me:9322: error: Cannot link with ssl library" >&5
 echo "$as_me: error: Cannot link with ssl library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -9173,7 +9327,7 @@ fi
 elif test "x$cf_cv_use_libgnutls" != xno ; then
 
 cf_ssl_library="-lgnutls -lcrypt"
-echo "$as_me:9176: checking if we know what directory gnutls is in" >&5
+echo "$as_me:9330: checking if we know what directory gnutls is in" >&5
 echo $ECHO_N "checking if we know what directory gnutls is in... $ECHO_C" >&6
 case "$cf_cv_use_libgnutls" in #(vi
 no) #(vi
@@ -9181,7 +9335,7 @@ no) #(vi
 	;;
 yes) #(vi
 
-echo "$as_me:9184: checking for gnutls_init in -lgnutls" >&5
+echo "$as_me:9338: checking for gnutls_init in -lgnutls" >&5
 echo $ECHO_N "checking for gnutls_init in -lgnutls... $ECHO_C" >&6
 if test "${ac_cv_lib_gnutls_gnutls_init+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9189,7 +9343,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgnutls -lgnutls-extra -lgnutls -lcrypt $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 9192 "configure"
+#line 9346 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -9208,16 +9362,16 @@ gnutls_init ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9211: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9365: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9214: \$? = $ac_status" >&5
+  echo "$as_me:9368: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9217: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9371: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9220: \$? = $ac_status" >&5
+  echo "$as_me:9374: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gnutls_gnutls_init=yes
 else
@@ -9228,7 +9382,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:9231: result: $ac_cv_lib_gnutls_gnutls_init" >&5
+echo "$as_me:9385: result: $ac_cv_lib_gnutls_gnutls_init" >&5
 echo "${ECHO_T}$ac_cv_lib_gnutls_gnutls_init" >&6
 if test $ac_cv_lib_gnutls_gnutls_init = yes; then
   cat >>confdefs.h <<EOF
@@ -9244,7 +9398,7 @@ else
 			test -n "$verbose" && echo "	assume it is in $cf_ssl_root" 1>&6
 
 		else
-			{ { echo "$as_me:9247: error: cannot find gnutls library" >&5
+			{ { echo "$as_me:9401: error: cannot find gnutls library" >&5
 echo "$as_me: error: cannot find gnutls library" >&2;}
    { (exit 1); exit 1; }; }
 		fi
@@ -9259,17 +9413,17 @@ fi
 		elif test -d $cf_cv_use_libgnutls/../include ; then
 			cf_ssl_root=$cf_cv_use_libgnutls/..
 		else
-			{ { echo "$as_me:9262: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5
+			{ { echo "$as_me:9416: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5
 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;}
    { (exit 1); exit 1; }; }
 		fi
 	else
-		{ echo "$as_me:9267: WARNING: expected a directory: $cf_cv_use_libgnutls" >&5
+		{ echo "$as_me:9421: WARNING: expected a directory: $cf_cv_use_libgnutls" >&5
 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libgnutls" >&2;}
 	fi
 	;;
 esac
-echo "$as_me:9272: result: $cf_ssl_root" >&5
+echo "$as_me:9426: result: $cf_ssl_root" >&5
 echo "${ECHO_T}$cf_ssl_root" >&6
 LIBS="$cf_ssl_library $LIBS"
 
@@ -9350,7 +9504,7 @@ fi
 	fi
 fi
 
-echo "$as_me:9353: checking for SSL_connect in -lgnutls-openssl" >&5
+echo "$as_me:9507: checking for SSL_connect in -lgnutls-openssl" >&5
 echo $ECHO_N "checking for SSL_connect in -lgnutls-openssl... $ECHO_C" >&6
 if test "${ac_cv_lib_gnutls_openssl_SSL_connect+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9358,7 +9512,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgnutls-openssl  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 9361 "configure"
+#line 9515 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -9377,16 +9531,16 @@ SSL_connect ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9380: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9534: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9383: \$? = $ac_status" >&5
+  echo "$as_me:9537: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9386: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9540: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9389: \$? = $ac_status" >&5
+  echo "$as_me:9543: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gnutls_openssl_SSL_connect=yes
 else
@@ -9397,12 +9551,12 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:9400: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5
+echo "$as_me:9554: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5
 echo "${ECHO_T}$ac_cv_lib_gnutls_openssl_SSL_connect" >&6
 if test $ac_cv_lib_gnutls_openssl_SSL_connect = yes; then
   LIBS="-lgnutls-openssl $LIBS"
 else
-  echo "$as_me:9405: checking for SSL_connect in -lgnutls-extra" >&5
+  echo "$as_me:9559: checking for SSL_connect in -lgnutls-extra" >&5
 echo $ECHO_N "checking for SSL_connect in -lgnutls-extra... $ECHO_C" >&6
 if test "${ac_cv_lib_gnutls_extra_SSL_connect+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9410,7 +9564,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgnutls-extra  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 9413 "configure"
+#line 9567 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -9429,16 +9583,16 @@ SSL_connect ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9432: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9586: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9435: \$? = $ac_status" >&5
+  echo "$as_me:9589: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9438: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9592: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9441: \$? = $ac_status" >&5
+  echo "$as_me:9595: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gnutls_extra_SSL_connect=yes
 else
@@ -9449,12 +9603,12 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:9452: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5
+echo "$as_me:9606: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5
 echo "${ECHO_T}$ac_cv_lib_gnutls_extra_SSL_connect" >&6
 if test $ac_cv_lib_gnutls_extra_SSL_connect = yes; then
   LIBS="-lgnutls-extra $LIBS"
 else
-  { { echo "$as_me:9457: error: cannot find gnutls openssl functions" >&5
+  { { echo "$as_me:9611: error: cannot find gnutls openssl functions" >&5
 echo "$as_me: error: cannot find gnutls openssl functions" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -9462,10 +9616,10 @@ fi
 fi
 
 if test "$cf_ssl_subincs" = yes ; then
-echo "$as_me:9465: checking for gnutls include directory" >&5
+echo "$as_me:9619: checking for gnutls include directory" >&5
 echo $ECHO_N "checking for gnutls include directory... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 9468 "configure"
+#line 9622 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -9479,16 +9633,16 @@ SSL_shutdown((SSL *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9482: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9636: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:9485: \$? = $ac_status" >&5
+  echo "$as_me:9639: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:9488: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9642: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9491: \$? = $ac_status" >&5
+  echo "$as_me:9645: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_openssl_incl=yes
 else
@@ -9497,7 +9651,7 @@ cat conftest.$ac_ext >&5
 cf_openssl_incl=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
-echo "$as_me:9500: result: $cf_openssl_incl" >&5
+echo "$as_me:9654: result: $cf_openssl_incl" >&5
 echo "${ECHO_T}$cf_openssl_incl" >&6
 test "$cf_openssl_incl" = yes && cat >>confdefs.h <<\EOF
 #define USE_GNUTLS_INCL 1
@@ -9505,10 +9659,10 @@ EOF
 
 fi
 
-echo "$as_me:9508: checking if we can link to gnutls library" >&5
+echo "$as_me:9662: checking if we can link to gnutls library" >&5
 echo $ECHO_N "checking if we can link to gnutls library... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 9511 "configure"
+#line 9665 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -9527,16 +9681,16 @@ SSL_shutdown((SSL *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9530: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9684: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9533: \$? = $ac_status" >&5
+  echo "$as_me:9687: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9536: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9690: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9539: \$? = $ac_status" >&5
+  echo "$as_me:9693: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_ssl_library=yes
 else
@@ -9545,7 +9699,7 @@ cat conftest.$ac_ext >&5
 cf_ssl_library=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-echo "$as_me:9548: result: $cf_ssl_library" >&5
+echo "$as_me:9702: result: $cf_ssl_library" >&5
 echo "${ECHO_T}$cf_ssl_library" >&6
 if test "$cf_ssl_library" = yes ; then
 	cat >>confdefs.h <<\EOF
@@ -9553,15 +9707,15 @@ if test "$cf_ssl_library" = yes ; then
 EOF
 
 else
-	{ { echo "$as_me:9556: error: Cannot link with gnutls library" >&5
+	{ { echo "$as_me:9710: error: Cannot link with gnutls library" >&5
 echo "$as_me: error: Cannot link with gnutls library" >&2;}
    { (exit 1); exit 1; }; }
 fi
 
-echo "$as_me:9561: checking for X509 support" >&5
+echo "$as_me:9715: checking for X509 support" >&5
 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 9564 "configure"
+#line 9718 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -9581,16 +9735,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(X509_STORE_CTX *0));
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9584: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9738: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9587: \$? = $ac_status" >&5
+  echo "$as_me:9741: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9590: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9744: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9593: \$? = $ac_status" >&5
+  echo "$as_me:9747: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_x509_support=no
 else
@@ -9598,7 +9752,7 @@ else
 cat conftest.$ac_ext >&5
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-echo "$as_me:9601: result: $cf_x509_support" >&5
+echo "$as_me:9755: result: $cf_x509_support" >&5
 echo "${ECHO_T}$cf_x509_support" >&6
 if test "$cf_x509_support" = yes ; then
 	cat >>confdefs.h <<\EOF
@@ -9609,7 +9763,7 @@ fi
 
 fi
 
-echo "$as_me:9612: checking for screen type" >&5
+echo "$as_me:9766: checking for screen type" >&5
 echo $ECHO_N "checking for screen type... $ECHO_C" >&6
 if test "${cf_cv_screen+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9623,7 +9777,7 @@ case $withval in
 curses|ncurses|ncursesw|pdcurses|slang)
 	cf_cv_screen=$withval
 	;;
-*)	{ { echo "$as_me:9626: error: Unexpected value" >&5
+*)	{ { echo "$as_me:9780: error: Unexpected value" >&5
 echo "$as_me: error: Unexpected value" >&2;}
    { (exit 1); exit 1; }; }
 	;;
@@ -9632,7 +9786,7 @@ else
   cf_cv_screen=curses
 fi;
 fi
-echo "$as_me:9635: result: $cf_cv_screen" >&5
+echo "$as_me:9789: result: $cf_cv_screen" >&5
 echo "${ECHO_T}$cf_cv_screen" >&6
 
 case $cf_cv_screen in
@@ -9661,7 +9815,7 @@ case ".$withval" in #(vi
   withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%`
   ;;
 *)
-  { { echo "$as_me:9664: error: expected a pathname, not \"$withval\"" >&5
+  { { echo "$as_me:9818: error: expected a pathname, not \"$withval\"" >&5
 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
    { (exit 1); exit 1; }; }
   ;;
@@ -9675,10 +9829,11 @@ fi;
 	;;
 esac
 
+dft_color_style=yes
 case $cf_cv_screen in
 curses)
 
-echo "$as_me:9681: checking for extra include directories" >&5
+echo "$as_me:9836: checking for extra include directories" >&5
 echo $ECHO_N "checking for extra include directories... $ECHO_C" >&6
 if test "${cf_cv_curses_incdir+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9698,11 +9853,11 @@ sunos3*|sunos4*)
 esac
 
 fi
-echo "$as_me:9701: result: $cf_cv_curses_incdir" >&5
+echo "$as_me:9856: result: $cf_cv_curses_incdir" >&5
 echo "${ECHO_T}$cf_cv_curses_incdir" >&6
 test "$cf_cv_curses_incdir" != no && CPPFLAGS="$cf_cv_curses_incdir $CPPFLAGS"
 
-echo "$as_me:9705: checking if we have identified curses headers" >&5
+echo "$as_me:9860: checking if we have identified curses headers" >&5
 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
 if test "${cf_cv_ncurses_header+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9716,7 +9871,7 @@ for cf_header in \
 	ncurses/ncurses.h
 do
 cat >conftest.$ac_ext <<_ACEOF
-#line 9719 "configure"
+#line 9874 "configure"
 #include "confdefs.h"
 #include <${cf_header}>
 int
@@ -9728,16 +9883,16 @@ initscr(); tgoto("?", 0,0)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9731: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9886: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:9734: \$? = $ac_status" >&5
+  echo "$as_me:9889: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:9737: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9892: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9740: \$? = $ac_status" >&5
+  echo "$as_me:9895: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ncurses_header=$cf_header; break
 else
@@ -9748,11 +9903,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:9751: result: $cf_cv_ncurses_header" >&5
+echo "$as_me:9906: result: $cf_cv_ncurses_header" >&5
 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
 
 if test "$cf_cv_ncurses_header" = none ; then
-	{ { echo "$as_me:9755: error: No curses header-files found" >&5
+	{ { echo "$as_me:9910: error: No curses header-files found" >&5
 echo "$as_me: error: No curses header-files found" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -9762,23 +9917,23 @@ fi
 for ac_header in $cf_cv_ncurses_header
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:9765: checking for $ac_header" >&5
+echo "$as_me:9920: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 9771 "configure"
+#line 9926 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:9775: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:9930: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:9781: \$? = $ac_status" >&5
+  echo "$as_me:9936: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -9797,7 +9952,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:9800: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:9955: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -9807,7 +9962,7 @@ EOF
 fi
 done
 
-echo "$as_me:9810: checking for terminfo header" >&5
+echo "$as_me:9965: checking for terminfo header" >&5
 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
 if test "${cf_cv_term_header+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9825,7 +9980,7 @@ esac
 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
 do
 cat >conftest.$ac_ext <<_ACEOF
-#line 9828 "configure"
+#line 9983 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -9840,16 +9995,16 @@ int x = auto_left_margin
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9843: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9998: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:9846: \$? = $ac_status" >&5
+  echo "$as_me:10001: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:9849: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10004: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9852: \$? = $ac_status" >&5
+  echo "$as_me:10007: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_term_header="$cf_test"
@@ -9865,7 +10020,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:9868: result: $cf_cv_term_header" >&5
+echo "$as_me:10023: result: $cf_cv_term_header" >&5
 echo "${ECHO_T}$cf_cv_term_header" >&6
 
 # Set definitions to allow ifdef'ing to accommodate subdirectories
@@ -9894,7 +10049,7 @@ EOF
 	;;
 esac
 
-echo "$as_me:9897: checking for ncurses version" >&5
+echo "$as_me:10052: checking for ncurses version" >&5
 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
 if test "${cf_cv_ncurses_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9920,10 +10075,10 @@ Autoconf "old"
 #endif
 EOF
 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
-	{ (eval echo "$as_me:9923: \"$cf_try\"") >&5
+	{ (eval echo "$as_me:10078: \"$cf_try\"") >&5
   (eval $cf_try) 2>&5
   ac_status=$?
-  echo "$as_me:9926: \$? = $ac_status" >&5
+  echo "$as_me:10081: \$? = $ac_status" >&5
   (exit $ac_status); }
 	if test -f conftest.out ; then
 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
@@ -9933,7 +10088,7 @@ EOF
 
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 9936 "configure"
+#line 10091 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -9958,15 +10113,15 @@ int main()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:9961: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10116: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9964: \$? = $ac_status" >&5
+  echo "$as_me:10119: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:9966: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10121: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9969: \$? = $ac_status" >&5
+  echo "$as_me:10124: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_ncurses_version=`cat $cf_tempfile`
@@ -9980,16 +10135,16 @@ fi
 	rm -f $cf_tempfile
 
 fi
-echo "$as_me:9983: result: $cf_cv_ncurses_version" >&5
+echo "$as_me:10138: result: $cf_cv_ncurses_version" >&5
 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF
 #define NCURSES 1
 EOF
 
-echo "$as_me:9989: checking if we have identified curses libraries" >&5
+echo "$as_me:10144: checking if we have identified curses libraries" >&5
 echo $ECHO_N "checking if we have identified curses libraries... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 9992 "configure"
+#line 10147 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -10001,16 +10156,16 @@ initscr(); tgoto("?", 0,0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10004: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10159: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10007: \$? = $ac_status" >&5
+  echo "$as_me:10162: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10010: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10165: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10013: \$? = $ac_status" >&5
+  echo "$as_me:10168: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -10019,13 +10174,13 @@ cat conftest.$ac_ext >&5
 cf_result=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-echo "$as_me:10022: result: $cf_result" >&5
+echo "$as_me:10177: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 
 if test "$cf_result" = no ; then
 case $host_os in #(vi
 freebsd*) #(vi
-	echo "$as_me:10028: checking for tgoto in -lmytinfo" >&5
+	echo "$as_me:10183: checking for tgoto in -lmytinfo" >&5
 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10033,7 +10188,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lmytinfo  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 10036 "configure"
+#line 10191 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -10052,16 +10207,16 @@ tgoto ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10055: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10210: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10058: \$? = $ac_status" >&5
+  echo "$as_me:10213: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10061: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10216: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10064: \$? = $ac_status" >&5
+  echo "$as_me:10219: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_mytinfo_tgoto=yes
 else
@@ -10072,7 +10227,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:10075: result: $ac_cv_lib_mytinfo_tgoto" >&5
+echo "$as_me:10230: result: $ac_cv_lib_mytinfo_tgoto" >&5
 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
 if test $ac_cv_lib_mytinfo_tgoto = yes; then
   LIBS="-lmytinfo $LIBS"
@@ -10080,7 +10235,7 @@ fi
 
 	;;
 hpux10.*) #(vi
-	echo "$as_me:10083: checking for initscr in -lcur_colr" >&5
+	echo "$as_me:10238: checking for initscr in -lcur_colr" >&5
 echo $ECHO_N "checking for initscr in -lcur_colr... $ECHO_C" >&6
 if test "${ac_cv_lib_cur_colr_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10088,7 +10243,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lcur_colr  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 10091 "configure"
+#line 10246 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -10107,16 +10262,16 @@ initscr ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10110: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10265: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10113: \$? = $ac_status" >&5
+  echo "$as_me:10268: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10116: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10271: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10119: \$? = $ac_status" >&5
+  echo "$as_me:10274: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_cur_colr_initscr=yes
 else
@@ -10127,7 +10282,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:10130: result: $ac_cv_lib_cur_colr_initscr" >&5
+echo "$as_me:10285: result: $ac_cv_lib_cur_colr_initscr" >&5
 echo "${ECHO_T}$ac_cv_lib_cur_colr_initscr" >&6
 if test $ac_cv_lib_cur_colr_initscr = yes; then
 
@@ -10136,7 +10291,7 @@ if test $ac_cv_lib_cur_colr_initscr = yes; then
 
 else
 
-	echo "$as_me:10139: checking for initscr in -lHcurses" >&5
+	echo "$as_me:10294: checking for initscr in -lHcurses" >&5
 echo $ECHO_N "checking for initscr in -lHcurses... $ECHO_C" >&6
 if test "${ac_cv_lib_Hcurses_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10144,7 +10299,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lHcurses  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 10147 "configure"
+#line 10302 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -10163,16 +10318,16 @@ initscr ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10166: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10321: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10169: \$? = $ac_status" >&5
+  echo "$as_me:10324: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10172: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10327: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10175: \$? = $ac_status" >&5
+  echo "$as_me:10330: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_Hcurses_initscr=yes
 else
@@ -10183,7 +10338,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:10186: result: $ac_cv_lib_Hcurses_initscr" >&5
+echo "$as_me:10341: result: $ac_cv_lib_Hcurses_initscr" >&5
 echo "${ECHO_T}$ac_cv_lib_Hcurses_initscr" >&6
 if test $ac_cv_lib_Hcurses_initscr = yes; then
 
@@ -10221,13 +10376,13 @@ if test ".$ac_cv_func_initscr" != .yes ; then
 
 	# Check for library containing tgoto.  Do this before curses library
 	# because it may be needed to link the test-case for initscr.
-	echo "$as_me:10224: checking for tgoto" >&5
+	echo "$as_me:10379: checking for tgoto" >&5
 echo $ECHO_N "checking for tgoto... $ECHO_C" >&6
 if test "${ac_cv_func_tgoto+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 10230 "configure"
+#line 10385 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char tgoto (); below.  */
@@ -10258,16 +10413,16 @@ f = tgoto;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10261: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10416: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10264: \$? = $ac_status" >&5
+  echo "$as_me:10419: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10267: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10422: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10270: \$? = $ac_status" >&5
+  echo "$as_me:10425: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_tgoto=yes
 else
@@ -10277,7 +10432,7 @@ ac_cv_func_tgoto=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:10280: result: $ac_cv_func_tgoto" >&5
+echo "$as_me:10435: result: $ac_cv_func_tgoto" >&5
 echo "${ECHO_T}$ac_cv_func_tgoto" >&6
 if test $ac_cv_func_tgoto = yes; then
   cf_term_lib=predefined
@@ -10286,7 +10441,7 @@ else
 		for cf_term_lib in $cf_check_list termcap termlib unknown
 		do
 			as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh`
-echo "$as_me:10289: checking for tgoto in -l$cf_term_lib" >&5
+echo "$as_me:10444: checking for tgoto in -l$cf_term_lib" >&5
 echo $ECHO_N "checking for tgoto in -l$cf_term_lib... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10294,7 +10449,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-l$cf_term_lib  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 10297 "configure"
+#line 10452 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -10313,16 +10468,16 @@ tgoto ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10316: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10471: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10319: \$? = $ac_status" >&5
+  echo "$as_me:10474: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10322: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10477: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10325: \$? = $ac_status" >&5
+  echo "$as_me:10480: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_Lib=yes"
 else
@@ -10333,7 +10488,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:10336: result: `eval echo '${'$as_ac_Lib'}'`" >&5
+echo "$as_me:10491: result: `eval echo '${'$as_ac_Lib'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
   break
@@ -10348,7 +10503,7 @@ fi
 	for cf_curs_lib in $cf_check_list xcurses jcurses unknown
 	do
 		as_ac_Lib=`echo "ac_cv_lib_$cf_curs_lib''_initscr" | $as_tr_sh`
-echo "$as_me:10351: checking for initscr in -l$cf_curs_lib" >&5
+echo "$as_me:10506: checking for initscr in -l$cf_curs_lib" >&5
 echo $ECHO_N "checking for initscr in -l$cf_curs_lib... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10356,7 +10511,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-l$cf_curs_lib  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 10359 "configure"
+#line 10514 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -10375,16 +10530,16 @@ initscr ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10378: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10533: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10381: \$? = $ac_status" >&5
+  echo "$as_me:10536: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10384: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10539: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10387: \$? = $ac_status" >&5
+  echo "$as_me:10542: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_Lib=yes"
 else
@@ -10395,23 +10550,23 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:10398: result: `eval echo '${'$as_ac_Lib'}'`" >&5
+echo "$as_me:10553: result: `eval echo '${'$as_ac_Lib'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
   break
 fi
 
 	done
-	test $cf_curs_lib = unknown && { { echo "$as_me:10405: error: no curses library found" >&5
+	test $cf_curs_lib = unknown && { { echo "$as_me:10560: error: no curses library found" >&5
 echo "$as_me: error: no curses library found" >&2;}
    { (exit 1); exit 1; }; }
 
 	LIBS="-l$cf_curs_lib $cf_save_LIBS"
 	if test "$cf_term_lib" = unknown ; then
-		echo "$as_me:10411: checking if we can link with $cf_curs_lib library" >&5
+		echo "$as_me:10566: checking if we can link with $cf_curs_lib library" >&5
 echo $ECHO_N "checking if we can link with $cf_curs_lib library... $ECHO_C" >&6
 		cat >conftest.$ac_ext <<_ACEOF
-#line 10414 "configure"
+#line 10569 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -10423,16 +10578,16 @@ initscr()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10426: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10581: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10429: \$? = $ac_status" >&5
+  echo "$as_me:10584: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10432: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10587: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10435: \$? = $ac_status" >&5
+  echo "$as_me:10590: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -10441,18 +10596,18 @@ cat conftest.$ac_ext >&5
 cf_result=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-		echo "$as_me:10444: result: $cf_result" >&5
+		echo "$as_me:10599: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
-		test $cf_result = no && { { echo "$as_me:10446: error: Cannot link curses library" >&5
+		test $cf_result = no && { { echo "$as_me:10601: error: Cannot link curses library" >&5
 echo "$as_me: error: Cannot link curses library" >&2;}
    { (exit 1); exit 1; }; }
 	elif test "$cf_curs_lib" = "$cf_term_lib" ; then
 		:
 	elif test "$cf_term_lib" != predefined ; then
-		echo "$as_me:10452: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5
+		echo "$as_me:10607: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5
 echo $ECHO_N "checking if we need both $cf_curs_lib and $cf_term_lib libraries... $ECHO_C" >&6
 		cat >conftest.$ac_ext <<_ACEOF
-#line 10455 "configure"
+#line 10610 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -10464,16 +10619,16 @@ initscr(); tgoto((char *)0, 0, 0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10467: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10622: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10470: \$? = $ac_status" >&5
+  echo "$as_me:10625: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10473: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10628: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10476: \$? = $ac_status" >&5
+  echo "$as_me:10631: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=no
 else
@@ -10482,7 +10637,7 @@ cat conftest.$ac_ext >&5
 
 			LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS"
 			cat >conftest.$ac_ext <<_ACEOF
-#line 10485 "configure"
+#line 10640 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -10494,16 +10649,16 @@ initscr()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10497: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10652: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10500: \$? = $ac_status" >&5
+  echo "$as_me:10655: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10503: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10658: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10506: \$? = $ac_status" >&5
+  echo "$as_me:10661: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -10515,13 +10670,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-		echo "$as_me:10518: result: $cf_result" >&5
+		echo "$as_me:10673: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 	fi
 fi
 fi
 
-echo "$as_me:10524: checking for curses performance tradeoff" >&5
+echo "$as_me:10679: checking for curses performance tradeoff" >&5
 echo $ECHO_N "checking for curses performance tradeoff... $ECHO_C" >&6
 if test "${cf_cv_curs_performance+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10529,7 +10684,7 @@ else
 
     cf_cv_curs_performance=no
     cat >conftest.$ac_ext <<_ACEOF
-#line 10532 "configure"
+#line 10687 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -10548,20 +10703,20 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10551: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10706: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:10554: \$? = $ac_status" >&5
+  echo "$as_me:10709: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:10557: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10712: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10560: \$? = $ac_status" >&5
+  echo "$as_me:10715: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 10564 "configure"
+#line 10719 "configure"
 #include "confdefs.h"
 
 #define CURS_PERFORMANCE
@@ -10581,16 +10736,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10584: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10739: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:10587: \$? = $ac_status" >&5
+  echo "$as_me:10742: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:10590: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10745: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10593: \$? = $ac_status" >&5
+  echo "$as_me:10748: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_curs_performance=yes
 else
@@ -10605,20 +10760,20 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
 
-echo "$as_me:10608: result: $cf_cv_curs_performance" >&5
+echo "$as_me:10763: result: $cf_cv_curs_performance" >&5
 echo "${ECHO_T}$cf_cv_curs_performance" >&6
 test $cf_cv_curs_performance = yes && cat >>confdefs.h <<\EOF
 #define CURS_PERFORMANCE 1
 EOF
 
-echo "$as_me:10614: checking for curses touchline function" >&5
+echo "$as_me:10769: checking for curses touchline function" >&5
 echo $ECHO_N "checking for curses touchline function... $ECHO_C" >&6
 if test "${cf_cv_curs_touchline+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 10621 "configure"
+#line 10776 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -10631,23 +10786,23 @@ touchline(stdscr, 1,2,3);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10634: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10789: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10637: \$? = $ac_status" >&5
+  echo "$as_me:10792: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10640: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10795: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10643: \$? = $ac_status" >&5
+  echo "$as_me:10798: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_curs_touchline=bsd
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 cat >conftest.$ac_ext <<_ACEOF
-#line 10650 "configure"
+#line 10805 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -10660,16 +10815,16 @@ touchline(stdscr, 1,2);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10663: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10818: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10666: \$? = $ac_status" >&5
+  echo "$as_me:10821: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10669: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10824: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10672: \$? = $ac_status" >&5
+  echo "$as_me:10827: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_curs_touchline=sysv
 else
@@ -10681,7 +10836,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:10684: result: $cf_cv_curs_touchline" >&5
+echo "$as_me:10839: result: $cf_cv_curs_touchline" >&5
 echo "${ECHO_T}$cf_cv_curs_touchline" >&6
 case "$cf_cv_curs_touchline" in #(vi
 bsd) #(vi
@@ -10707,7 +10862,7 @@ test -n "$cf_cv_curses_dir" && \
 test "$cf_cv_curses_dir" != "no" && \
 CPPFLAGS="-I$cf_cv_curses_dir/include -I$cf_cv_curses_dir/include/$cf_ncuhdr_root $CPPFLAGS"
 
-echo "$as_me:10710: checking for $cf_ncuhdr_root header in include-path" >&5
+echo "$as_me:10865: checking for $cf_ncuhdr_root header in include-path" >&5
 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
 if test "${cf_cv_ncurses_h+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10719,7 +10874,7 @@ else
 	do
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 10722 "configure"
+#line 10877 "configure"
 #include "confdefs.h"
 
 #include <$cf_header>
@@ -10743,16 +10898,16 @@ printf("old\n");
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10746: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10901: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:10749: \$? = $ac_status" >&5
+  echo "$as_me:10904: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:10752: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10907: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10755: \$? = $ac_status" >&5
+  echo "$as_me:10910: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ncurses_h=$cf_header
 
@@ -10767,14 +10922,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 	done
 
 fi
-echo "$as_me:10770: result: $cf_cv_ncurses_h" >&5
+echo "$as_me:10925: result: $cf_cv_ncurses_h" >&5
 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
 
 if test "$cf_cv_ncurses_h" != no ; then
 	cf_cv_ncurses_header=$cf_cv_ncurses_h
 else
 
-echo "$as_me:10777: checking for $cf_ncuhdr_root include-path" >&5
+echo "$as_me:10932: checking for $cf_ncuhdr_root include-path" >&5
 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
 if test "${cf_cv_ncurses_h2+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10869,7 +11024,7 @@ do
 				cf_save_CPPFLAGS="$CPPFLAGS"
 				CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 10872 "configure"
+#line 11027 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -10881,16 +11036,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10884: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11039: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:10887: \$? = $ac_status" >&5
+  echo "$as_me:11042: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:10890: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11045: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10893: \$? = $ac_status" >&5
+  echo "$as_me:11048: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -10917,7 +11072,7 @@ done
 		do
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 10920 "configure"
+#line 11075 "configure"
 #include "confdefs.h"
 
 #include <$cf_header>
@@ -10941,16 +11096,16 @@ printf("old\n");
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10944: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11099: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:10947: \$? = $ac_status" >&5
+  echo "$as_me:11102: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:10950: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11105: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10953: \$? = $ac_status" >&5
+  echo "$as_me:11108: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ncurses_h2=$cf_header
 
@@ -10971,12 +11126,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 		CPPFLAGS="$cf_save2_CPPFLAGS"
 		test "$cf_cv_ncurses_h2" != no && break
 	done
-	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:10974: error: not found" >&5
+	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:11129: error: not found" >&5
 echo "$as_me: error: not found" >&2;}
    { (exit 1); exit 1; }; }
 
 fi
-echo "$as_me:10979: result: $cf_cv_ncurses_h2" >&5
+echo "$as_me:11134: result: $cf_cv_ncurses_h2" >&5
 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
 
 	cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
@@ -10998,7 +11153,7 @@ do
 				cf_save_CPPFLAGS="$CPPFLAGS"
 				CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 11001 "configure"
+#line 11156 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -11010,16 +11165,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11013: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11168: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:11016: \$? = $ac_status" >&5
+  echo "$as_me:11171: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:11019: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11174: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11022: \$? = $ac_status" >&5
+  echo "$as_me:11177: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -11068,7 +11223,7 @@ EOF
 	;;
 esac
 
-echo "$as_me:11071: checking for terminfo header" >&5
+echo "$as_me:11226: checking for terminfo header" >&5
 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
 if test "${cf_cv_term_header+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11086,7 +11241,7 @@ esac
 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
 do
 cat >conftest.$ac_ext <<_ACEOF
-#line 11089 "configure"
+#line 11244 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -11101,16 +11256,16 @@ int x = auto_left_margin
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11104: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11259: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:11107: \$? = $ac_status" >&5
+  echo "$as_me:11262: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:11110: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11265: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11113: \$? = $ac_status" >&5
+  echo "$as_me:11268: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_term_header="$cf_test"
@@ -11126,7 +11281,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:11129: result: $cf_cv_term_header" >&5
+echo "$as_me:11284: result: $cf_cv_term_header" >&5
 echo "${ECHO_T}$cf_cv_term_header" >&6
 
 # Set definitions to allow ifdef'ing to accommodate subdirectories
@@ -11160,7 +11315,7 @@ cat >>confdefs.h <<\EOF
 #define NCURSES 1
 EOF
 
-echo "$as_me:11163: checking for ncurses version" >&5
+echo "$as_me:11318: checking for ncurses version" >&5
 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
 if test "${cf_cv_ncurses_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11186,10 +11341,10 @@ Autoconf "old"
 #endif
 EOF
 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
-	{ (eval echo "$as_me:11189: \"$cf_try\"") >&5
+	{ (eval echo "$as_me:11344: \"$cf_try\"") >&5
   (eval $cf_try) 2>&5
   ac_status=$?
-  echo "$as_me:11192: \$? = $ac_status" >&5
+  echo "$as_me:11347: \$? = $ac_status" >&5
   (exit $ac_status); }
 	if test -f conftest.out ; then
 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
@@ -11199,7 +11354,7 @@ EOF
 
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 11202 "configure"
+#line 11357 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -11224,15 +11379,15 @@ int main()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:11227: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11382: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11230: \$? = $ac_status" >&5
+  echo "$as_me:11385: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:11232: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11387: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11235: \$? = $ac_status" >&5
+  echo "$as_me:11390: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_ncurses_version=`cat $cf_tempfile`
@@ -11246,7 +11401,7 @@ fi
 	rm -f $cf_tempfile
 
 fi
-echo "$as_me:11249: result: $cf_cv_ncurses_version" >&5
+echo "$as_me:11404: result: $cf_cv_ncurses_version" >&5
 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF
 #define NCURSES 1
@@ -11258,7 +11413,7 @@ cf_nculib_root=ncurses
 	# to link gpm.
 cf_ncurses_LIBS=""
 cf_ncurses_SAVE="$LIBS"
-echo "$as_me:11261: checking for Gpm_Open in -lgpm" >&5
+echo "$as_me:11416: checking for Gpm_Open in -lgpm" >&5
 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11266,7 +11421,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgpm  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 11269 "configure"
+#line 11424 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -11285,16 +11440,16 @@ Gpm_Open ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11288: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11443: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11291: \$? = $ac_status" >&5
+  echo "$as_me:11446: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11294: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11449: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11297: \$? = $ac_status" >&5
+  echo "$as_me:11452: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gpm_Gpm_Open=yes
 else
@@ -11305,10 +11460,10 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:11308: result: $ac_cv_lib_gpm_Gpm_Open" >&5
+echo "$as_me:11463: result: $ac_cv_lib_gpm_Gpm_Open" >&5
 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
-  echo "$as_me:11311: checking for initscr in -lgpm" >&5
+  echo "$as_me:11466: checking for initscr in -lgpm" >&5
 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11316,7 +11471,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgpm  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 11319 "configure"
+#line 11474 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -11335,16 +11490,16 @@ initscr ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11338: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11493: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11341: \$? = $ac_status" >&5
+  echo "$as_me:11496: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11344: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11499: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11347: \$? = $ac_status" >&5
+  echo "$as_me:11502: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gpm_initscr=yes
 else
@@ -11355,7 +11510,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:11358: result: $ac_cv_lib_gpm_initscr" >&5
+echo "$as_me:11513: result: $ac_cv_lib_gpm_initscr" >&5
 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
 if test $ac_cv_lib_gpm_initscr = yes; then
   LIBS="$cf_ncurses_SAVE"
@@ -11370,7 +11525,7 @@ freebsd*)
 	# This is only necessary if you are linking against an obsolete
 	# version of ncurses (but it should do no harm, since it's static).
 	if test "$cf_nculib_root" = ncurses ; then
-		echo "$as_me:11373: checking for tgoto in -lmytinfo" >&5
+		echo "$as_me:11528: checking for tgoto in -lmytinfo" >&5
 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11378,7 +11533,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lmytinfo  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 11381 "configure"
+#line 11536 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -11397,16 +11552,16 @@ tgoto ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11400: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11555: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11403: \$? = $ac_status" >&5
+  echo "$as_me:11558: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11406: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11561: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11409: \$? = $ac_status" >&5
+  echo "$as_me:11564: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_mytinfo_tgoto=yes
 else
@@ -11417,7 +11572,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:11420: result: $ac_cv_lib_mytinfo_tgoto" >&5
+echo "$as_me:11575: result: $ac_cv_lib_mytinfo_tgoto" >&5
 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
 if test $ac_cv_lib_mytinfo_tgoto = yes; then
   cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
@@ -11436,13 +11591,13 @@ else
 
 	eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
 	cf_libdir=""
-	echo "$as_me:11439: checking for initscr" >&5
+	echo "$as_me:11594: checking for initscr" >&5
 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
 if test "${ac_cv_func_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 11445 "configure"
+#line 11600 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char initscr (); below.  */
@@ -11473,16 +11628,16 @@ f = initscr;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11476: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11631: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11479: \$? = $ac_status" >&5
+  echo "$as_me:11634: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11482: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11637: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11485: \$? = $ac_status" >&5
+  echo "$as_me:11640: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_initscr=yes
 else
@@ -11492,18 +11647,18 @@ ac_cv_func_initscr=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:11495: result: $ac_cv_func_initscr" >&5
+echo "$as_me:11650: result: $ac_cv_func_initscr" >&5
 echo "${ECHO_T}$ac_cv_func_initscr" >&6
 if test $ac_cv_func_initscr = yes; then
   eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:11502: checking for initscr in -l$cf_nculib_root" >&5
+		echo "$as_me:11657: checking for initscr in -l$cf_nculib_root" >&5
 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
 		LIBS="-l$cf_nculib_root $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 11506 "configure"
+#line 11661 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -11515,25 +11670,25 @@ initscr()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11518: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11673: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11521: \$? = $ac_status" >&5
+  echo "$as_me:11676: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11524: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11679: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11527: \$? = $ac_status" >&5
+  echo "$as_me:11682: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:11529: result: yes" >&5
+  echo "$as_me:11684: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:11536: result: no" >&5
+echo "$as_me:11691: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -11593,11 +11748,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:11596: checking for -l$cf_nculib_root in $cf_libdir" >&5
+				echo "$as_me:11751: checking for -l$cf_nculib_root in $cf_libdir" >&5
 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 11600 "configure"
+#line 11755 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -11609,25 +11764,25 @@ initscr()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11612: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11767: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11615: \$? = $ac_status" >&5
+  echo "$as_me:11770: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11618: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11773: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11621: \$? = $ac_status" >&5
+  echo "$as_me:11776: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:11623: result: yes" >&5
+  echo "$as_me:11778: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:11630: result: no" >&5
+echo "$as_me:11785: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -11642,7 +11797,7 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
 
 if test $cf_found_library = no ; then
-	{ { echo "$as_me:11645: error: Cannot link $cf_nculib_root library" >&5
+	{ { echo "$as_me:11800: error: Cannot link $cf_nculib_root library" >&5
 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -11650,7 +11805,7 @@ fi
 fi
 
 if test -n "$cf_ncurses_LIBS" ; then
-	echo "$as_me:11653: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
+	echo "$as_me:11808: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
 	cf_ncurses_SAVE="$LIBS"
 	for p in $cf_ncurses_LIBS ; do
@@ -11660,7 +11815,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS..
 		fi
 	done
 	cat >conftest.$ac_ext <<_ACEOF
-#line 11663 "configure"
+#line 11818 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -11672,23 +11827,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11675: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11830: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11678: \$? = $ac_status" >&5
+  echo "$as_me:11833: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11681: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11836: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11684: \$? = $ac_status" >&5
+  echo "$as_me:11839: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:11686: result: yes" >&5
+  echo "$as_me:11841: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:11691: result: no" >&5
+echo "$as_me:11846: result: no" >&5
 echo "${ECHO_T}no" >&6
 		 LIBS="$cf_ncurses_SAVE"
 fi
@@ -11701,7 +11856,7 @@ cat >>confdefs.h <<EOF
 #define $cf_nculib_ROOT 1
 EOF
 
-echo "$as_me:11704: checking for ncurses version" >&5
+echo "$as_me:11859: checking for ncurses version" >&5
 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
 if test "${cf_cv_ncurses_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11727,10 +11882,10 @@ Autoconf "old"
 #endif
 EOF
 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
-	{ (eval echo "$as_me:11730: \"$cf_try\"") >&5
+	{ (eval echo "$as_me:11885: \"$cf_try\"") >&5
   (eval $cf_try) 2>&5
   ac_status=$?
-  echo "$as_me:11733: \$? = $ac_status" >&5
+  echo "$as_me:11888: \$? = $ac_status" >&5
   (exit $ac_status); }
 	if test -f conftest.out ; then
 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
@@ -11740,7 +11895,7 @@ EOF
 
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 11743 "configure"
+#line 11898 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -11765,15 +11920,15 @@ int main()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:11768: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11923: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11771: \$? = $ac_status" >&5
+  echo "$as_me:11926: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:11773: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11928: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11776: \$? = $ac_status" >&5
+  echo "$as_me:11931: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_ncurses_version=`cat $cf_tempfile`
@@ -11787,7 +11942,7 @@ fi
 	rm -f $cf_tempfile
 
 fi
-echo "$as_me:11790: result: $cf_cv_ncurses_version" >&5
+echo "$as_me:11945: result: $cf_cv_ncurses_version" >&5
 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF
 #define NCURSES 1
@@ -11796,7 +11951,7 @@ EOF
 	;;
 ncursesw)
 
-echo "$as_me:11799: checking for multibyte character support" >&5
+echo "$as_me:11954: checking for multibyte character support" >&5
 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6
 if test "${cf_cv_utf8_lib+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11804,7 +11959,7 @@ else
 
 	cf_save_LIBS="$LIBS"
 	cat >conftest.$ac_ext <<_ACEOF
-#line 11807 "configure"
+#line 11962 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -11817,16 +11972,16 @@ putwc(0,0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11820: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11975: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11823: \$? = $ac_status" >&5
+  echo "$as_me:11978: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11826: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11981: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11829: \$? = $ac_status" >&5
+  echo "$as_me:11984: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_utf8_lib=yes
 else
@@ -11834,7 +11989,7 @@ else
 cat conftest.$ac_ext >&5
 LIBS="-lutf8 $LIBS"
 	 cat >conftest.$ac_ext <<_ACEOF
-#line 11837 "configure"
+#line 11992 "configure"
 #include "confdefs.h"
 
 #include <libutf8.h>
@@ -11847,16 +12002,16 @@ putwc(0,0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11850: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12005: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11853: \$? = $ac_status" >&5
+  echo "$as_me:12008: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11856: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12011: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11859: \$? = $ac_status" >&5
+  echo "$as_me:12014: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_utf8_lib=add-on
 else
@@ -11870,7 +12025,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:11873: result: $cf_cv_utf8_lib" >&5
+echo "$as_me:12028: result: $cf_cv_utf8_lib" >&5
 echo "${ECHO_T}$cf_cv_utf8_lib" >&6
 
 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
@@ -11889,7 +12044,7 @@ test -n "$cf_cv_curses_dir" && \
 test "$cf_cv_curses_dir" != "no" && \
 CPPFLAGS="-I$cf_cv_curses_dir/include -I$cf_cv_curses_dir/include/$cf_ncuhdr_root $CPPFLAGS"
 
-echo "$as_me:11892: checking for $cf_ncuhdr_root header in include-path" >&5
+echo "$as_me:12047: checking for $cf_ncuhdr_root header in include-path" >&5
 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
 if test "${cf_cv_ncurses_h+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11901,7 +12056,7 @@ else
 	do
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 11904 "configure"
+#line 12059 "configure"
 #include "confdefs.h"
 
 #define _XOPEN_SOURCE_EXTENDED
@@ -11933,16 +12088,16 @@ printf("old\n");
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11936: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12091: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:11939: \$? = $ac_status" >&5
+  echo "$as_me:12094: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:11942: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12097: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11945: \$? = $ac_status" >&5
+  echo "$as_me:12100: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ncurses_h=$cf_header
 
@@ -11957,14 +12112,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 	done
 
 fi
-echo "$as_me:11960: result: $cf_cv_ncurses_h" >&5
+echo "$as_me:12115: result: $cf_cv_ncurses_h" >&5
 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
 
 if test "$cf_cv_ncurses_h" != no ; then
 	cf_cv_ncurses_header=$cf_cv_ncurses_h
 else
 
-echo "$as_me:11967: checking for $cf_ncuhdr_root include-path" >&5
+echo "$as_me:12122: checking for $cf_ncuhdr_root include-path" >&5
 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
 if test "${cf_cv_ncurses_h2+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -12059,7 +12214,7 @@ do
 				cf_save_CPPFLAGS="$CPPFLAGS"
 				CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 12062 "configure"
+#line 12217 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -12071,16 +12226,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12074: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12229: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:12077: \$? = $ac_status" >&5
+  echo "$as_me:12232: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:12080: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12235: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12083: \$? = $ac_status" >&5
+  echo "$as_me:12238: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -12107,7 +12262,7 @@ done
 		do
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 12110 "configure"
+#line 12265 "configure"
 #include "confdefs.h"
 
 #include <$cf_header>
@@ -12131,16 +12286,16 @@ printf("old\n");
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12134: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12289: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:12137: \$? = $ac_status" >&5
+  echo "$as_me:12292: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:12140: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12295: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12143: \$? = $ac_status" >&5
+  echo "$as_me:12298: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ncurses_h2=$cf_header
 
@@ -12161,12 +12316,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 		CPPFLAGS="$cf_save2_CPPFLAGS"
 		test "$cf_cv_ncurses_h2" != no && break
 	done
-	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:12164: error: not found" >&5
+	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:12319: error: not found" >&5
 echo "$as_me: error: not found" >&2;}
    { (exit 1); exit 1; }; }
 
 fi
-echo "$as_me:12169: result: $cf_cv_ncurses_h2" >&5
+echo "$as_me:12324: result: $cf_cv_ncurses_h2" >&5
 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
 
 	cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
@@ -12188,7 +12343,7 @@ do
 				cf_save_CPPFLAGS="$CPPFLAGS"
 				CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 12191 "configure"
+#line 12346 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -12200,16 +12355,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12203: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12358: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:12206: \$? = $ac_status" >&5
+  echo "$as_me:12361: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:12209: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12364: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12212: \$? = $ac_status" >&5
+  echo "$as_me:12367: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -12258,7 +12413,7 @@ EOF
 	;;
 esac
 
-echo "$as_me:12261: checking for terminfo header" >&5
+echo "$as_me:12416: checking for terminfo header" >&5
 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
 if test "${cf_cv_term_header+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -12276,7 +12431,7 @@ esac
 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
 do
 cat >conftest.$ac_ext <<_ACEOF
-#line 12279 "configure"
+#line 12434 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -12291,16 +12446,16 @@ int x = auto_left_margin
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12294: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12449: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:12297: \$? = $ac_status" >&5
+  echo "$as_me:12452: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:12300: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12455: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12303: \$? = $ac_status" >&5
+  echo "$as_me:12458: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_term_header="$cf_test"
@@ -12316,7 +12471,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:12319: result: $cf_cv_term_header" >&5
+echo "$as_me:12474: result: $cf_cv_term_header" >&5
 echo "${ECHO_T}$cf_cv_term_header" >&6
 
 # Set definitions to allow ifdef'ing to accommodate subdirectories
@@ -12350,7 +12505,7 @@ cat >>confdefs.h <<\EOF
 #define NCURSES 1
 EOF
 
-echo "$as_me:12353: checking for ncurses version" >&5
+echo "$as_me:12508: checking for ncurses version" >&5
 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
 if test "${cf_cv_ncurses_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -12376,10 +12531,10 @@ Autoconf "old"
 #endif
 EOF
 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
-	{ (eval echo "$as_me:12379: \"$cf_try\"") >&5
+	{ (eval echo "$as_me:12534: \"$cf_try\"") >&5
   (eval $cf_try) 2>&5
   ac_status=$?
-  echo "$as_me:12382: \$? = $ac_status" >&5
+  echo "$as_me:12537: \$? = $ac_status" >&5
   (exit $ac_status); }
 	if test -f conftest.out ; then
 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
@@ -12389,7 +12544,7 @@ EOF
 
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 12392 "configure"
+#line 12547 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -12414,15 +12569,15 @@ int main()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:12417: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12572: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12420: \$? = $ac_status" >&5
+  echo "$as_me:12575: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:12422: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12577: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12425: \$? = $ac_status" >&5
+  echo "$as_me:12580: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_ncurses_version=`cat $cf_tempfile`
@@ -12436,7 +12591,7 @@ fi
 	rm -f $cf_tempfile
 
 fi
-echo "$as_me:12439: result: $cf_cv_ncurses_version" >&5
+echo "$as_me:12594: result: $cf_cv_ncurses_version" >&5
 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF
 #define NCURSES 1
@@ -12448,7 +12603,7 @@ cf_nculib_root=ncursesw
 	# to link gpm.
 cf_ncurses_LIBS=""
 cf_ncurses_SAVE="$LIBS"
-echo "$as_me:12451: checking for Gpm_Open in -lgpm" >&5
+echo "$as_me:12606: checking for Gpm_Open in -lgpm" >&5
 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -12456,7 +12611,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgpm  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 12459 "configure"
+#line 12614 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -12475,16 +12630,16 @@ Gpm_Open ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12478: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12633: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12481: \$? = $ac_status" >&5
+  echo "$as_me:12636: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12484: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12639: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12487: \$? = $ac_status" >&5
+  echo "$as_me:12642: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gpm_Gpm_Open=yes
 else
@@ -12495,10 +12650,10 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:12498: result: $ac_cv_lib_gpm_Gpm_Open" >&5
+echo "$as_me:12653: result: $ac_cv_lib_gpm_Gpm_Open" >&5
 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
-  echo "$as_me:12501: checking for initscr in -lgpm" >&5
+  echo "$as_me:12656: checking for initscr in -lgpm" >&5
 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -12506,7 +12661,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgpm  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 12509 "configure"
+#line 12664 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -12525,16 +12680,16 @@ initscr ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12528: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12683: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12531: \$? = $ac_status" >&5
+  echo "$as_me:12686: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12534: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12689: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12537: \$? = $ac_status" >&5
+  echo "$as_me:12692: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gpm_initscr=yes
 else
@@ -12545,7 +12700,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:12548: result: $ac_cv_lib_gpm_initscr" >&5
+echo "$as_me:12703: result: $ac_cv_lib_gpm_initscr" >&5
 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
 if test $ac_cv_lib_gpm_initscr = yes; then
   LIBS="$cf_ncurses_SAVE"
@@ -12560,7 +12715,7 @@ freebsd*)
 	# This is only necessary if you are linking against an obsolete
 	# version of ncurses (but it should do no harm, since it's static).
 	if test "$cf_nculib_root" = ncurses ; then
-		echo "$as_me:12563: checking for tgoto in -lmytinfo" >&5
+		echo "$as_me:12718: checking for tgoto in -lmytinfo" >&5
 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -12568,7 +12723,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lmytinfo  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 12571 "configure"
+#line 12726 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -12587,16 +12742,16 @@ tgoto ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12590: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12745: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12593: \$? = $ac_status" >&5
+  echo "$as_me:12748: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12596: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12751: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12599: \$? = $ac_status" >&5
+  echo "$as_me:12754: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_mytinfo_tgoto=yes
 else
@@ -12607,7 +12762,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:12610: result: $ac_cv_lib_mytinfo_tgoto" >&5
+echo "$as_me:12765: result: $ac_cv_lib_mytinfo_tgoto" >&5
 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
 if test $ac_cv_lib_mytinfo_tgoto = yes; then
   cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
@@ -12626,13 +12781,13 @@ else
 
 	eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
 	cf_libdir=""
-	echo "$as_me:12629: checking for initscr" >&5
+	echo "$as_me:12784: checking for initscr" >&5
 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
 if test "${ac_cv_func_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 12635 "configure"
+#line 12790 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char initscr (); below.  */
@@ -12663,16 +12818,16 @@ f = initscr;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12666: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12821: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12669: \$? = $ac_status" >&5
+  echo "$as_me:12824: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12672: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12827: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12675: \$? = $ac_status" >&5
+  echo "$as_me:12830: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_initscr=yes
 else
@@ -12682,18 +12837,18 @@ ac_cv_func_initscr=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:12685: result: $ac_cv_func_initscr" >&5
+echo "$as_me:12840: result: $ac_cv_func_initscr" >&5
 echo "${ECHO_T}$ac_cv_func_initscr" >&6
 if test $ac_cv_func_initscr = yes; then
   eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:12692: checking for initscr in -l$cf_nculib_root" >&5
+		echo "$as_me:12847: checking for initscr in -l$cf_nculib_root" >&5
 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
 		LIBS="-l$cf_nculib_root $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 12696 "configure"
+#line 12851 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -12705,25 +12860,25 @@ initscr()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12708: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12863: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12711: \$? = $ac_status" >&5
+  echo "$as_me:12866: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12714: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12869: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12717: \$? = $ac_status" >&5
+  echo "$as_me:12872: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:12719: result: yes" >&5
+  echo "$as_me:12874: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:12726: result: no" >&5
+echo "$as_me:12881: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -12783,11 +12938,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:12786: checking for -l$cf_nculib_root in $cf_libdir" >&5
+				echo "$as_me:12941: checking for -l$cf_nculib_root in $cf_libdir" >&5
 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 12790 "configure"
+#line 12945 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -12799,25 +12954,25 @@ initscr()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12802: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12957: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12805: \$? = $ac_status" >&5
+  echo "$as_me:12960: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12808: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12963: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12811: \$? = $ac_status" >&5
+  echo "$as_me:12966: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:12813: result: yes" >&5
+  echo "$as_me:12968: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:12820: result: no" >&5
+echo "$as_me:12975: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -12832,7 +12987,7 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
 
 if test $cf_found_library = no ; then
-	{ { echo "$as_me:12835: error: Cannot link $cf_nculib_root library" >&5
+	{ { echo "$as_me:12990: error: Cannot link $cf_nculib_root library" >&5
 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -12840,7 +12995,7 @@ fi
 fi
 
 if test -n "$cf_ncurses_LIBS" ; then
-	echo "$as_me:12843: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
+	echo "$as_me:12998: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
 	cf_ncurses_SAVE="$LIBS"
 	for p in $cf_ncurses_LIBS ; do
@@ -12850,7 +13005,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS..
 		fi
 	done
 	cat >conftest.$ac_ext <<_ACEOF
-#line 12853 "configure"
+#line 13008 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -12862,23 +13017,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12865: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13020: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12868: \$? = $ac_status" >&5
+  echo "$as_me:13023: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12871: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13026: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12874: \$? = $ac_status" >&5
+  echo "$as_me:13029: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:12876: result: yes" >&5
+  echo "$as_me:13031: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:12881: result: no" >&5
+echo "$as_me:13036: result: no" >&5
 echo "${ECHO_T}no" >&6
 		 LIBS="$cf_ncurses_SAVE"
 fi
@@ -12891,7 +13046,7 @@ cat >>confdefs.h <<EOF
 #define $cf_nculib_ROOT 1
 EOF
 
-echo "$as_me:12894: checking for ncurses version" >&5
+echo "$as_me:13049: checking for ncurses version" >&5
 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
 if test "${cf_cv_ncurses_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -12917,10 +13072,10 @@ Autoconf "old"
 #endif
 EOF
 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
-	{ (eval echo "$as_me:12920: \"$cf_try\"") >&5
+	{ (eval echo "$as_me:13075: \"$cf_try\"") >&5
   (eval $cf_try) 2>&5
   ac_status=$?
-  echo "$as_me:12923: \$? = $ac_status" >&5
+  echo "$as_me:13078: \$? = $ac_status" >&5
   (exit $ac_status); }
 	if test -f conftest.out ; then
 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
@@ -12930,7 +13085,7 @@ EOF
 
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 12933 "configure"
+#line 13088 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -12955,15 +13110,15 @@ int main()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:12958: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13113: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12961: \$? = $ac_status" >&5
+  echo "$as_me:13116: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:12963: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13118: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12966: \$? = $ac_status" >&5
+  echo "$as_me:13121: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_ncurses_version=`cat $cf_tempfile`
@@ -12977,7 +13132,7 @@ fi
 	rm -f $cf_tempfile
 
 fi
-echo "$as_me:12980: result: $cf_cv_ncurses_version" >&5
+echo "$as_me:13135: result: $cf_cv_ncurses_version" >&5
 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF
 #define NCURSES 1
@@ -12990,14 +13145,14 @@ pdcurses)
 	;;
 slang)
 
-echo "$as_me:12993: checking for slang header file" >&5
+echo "$as_me:13148: checking for slang header file" >&5
 echo $ECHO_N "checking for slang header file... $ECHO_C" >&6
 if test "${cf_cv_slang_header+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 13000 "configure"
+#line 13155 "configure"
 #include "confdefs.h"
 #include <slang.h>
 int
@@ -13009,16 +13164,16 @@ printf("%s\n", SLANG_VERSION)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:13012: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:13167: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:13015: \$? = $ac_status" >&5
+  echo "$as_me:13170: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:13018: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13173: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13021: \$? = $ac_status" >&5
+  echo "$as_me:13176: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_slang_header=predefined
 else
@@ -13108,14 +13263,14 @@ test -d "$oldincludedir" && {
 		done
 		test -n "$cf_cv_slang_header" && break
 	done
-	test -z "$cf_cv_slang_header" && { { echo "$as_me:13111: error: not found" >&5
+	test -z "$cf_cv_slang_header" && { { echo "$as_me:13266: error: not found" >&5
 echo "$as_me: error: not found" >&2;}
    { (exit 1); exit 1; }; }
 
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:13118: result: $cf_cv_slang_header" >&5
+echo "$as_me:13273: result: $cf_cv_slang_header" >&5
 echo "${ECHO_T}$cf_cv_slang_header" >&6
 cat >>confdefs.h <<\EOF
 #define USE_SLANG 1
@@ -13141,7 +13296,7 @@ do
 				cf_save_CPPFLAGS="$CPPFLAGS"
 				CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 13144 "configure"
+#line 13299 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -13153,16 +13308,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:13156: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:13311: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:13159: \$? = $ac_status" >&5
+  echo "$as_me:13314: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:13162: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13317: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13165: \$? = $ac_status" >&5
+  echo "$as_me:13320: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -13188,14 +13343,14 @@ esac
 
 # There's an unofficial set of patches for slang that gives it some limited
 # UTF8 capability.  Unfortunately it won't compile unless one defines UTF8.
-echo "$as_me:13191: checking if we must define UTF8" >&5
+echo "$as_me:13346: checking if we must define UTF8" >&5
 echo $ECHO_N "checking if we must define UTF8... $ECHO_C" >&6
 if test "${cf_cv_slang_utf8+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 13198 "configure"
+#line 13353 "configure"
 #include "confdefs.h"
 
 #include <slang.h>
@@ -13208,16 +13363,16 @@ SLtt_get_screen_size()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:13211: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:13366: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:13214: \$? = $ac_status" >&5
+  echo "$as_me:13369: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:13217: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13372: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13220: \$? = $ac_status" >&5
+  echo "$as_me:13375: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_slang_utf8=no
 else
@@ -13225,7 +13380,7 @@ else
 cat conftest.$ac_ext >&5
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 13228 "configure"
+#line 13383 "configure"
 #include "confdefs.h"
 
 #define UTF8
@@ -13239,16 +13394,16 @@ SLtt_get_screen_size()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:13242: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:13397: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:13245: \$? = $ac_status" >&5
+  echo "$as_me:13400: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:13248: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13403: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13251: \$? = $ac_status" >&5
+  echo "$as_me:13406: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_slang_utf8=yes
 else
@@ -13261,7 +13416,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:13264: result: $cf_cv_slang_utf8" >&5
+echo "$as_me:13419: result: $cf_cv_slang_utf8" >&5
 echo "${ECHO_T}$cf_cv_slang_utf8" >&6
 
 if test "$cf_cv_slang_utf8" = yes ; then
@@ -13279,7 +13434,7 @@ else
 
 cf_cv_termlib=none
 cat >conftest.$ac_ext <<_ACEOF
-#line 13282 "configure"
+#line 13437 "configure"
 #include "confdefs.h"
 
 int
@@ -13291,19 +13446,19 @@ char *x=(char*)tgoto("",0,0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13294: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13449: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13297: \$? = $ac_status" >&5
+  echo "$as_me:13452: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13300: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13455: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13303: \$? = $ac_status" >&5
+  echo "$as_me:13458: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cat >conftest.$ac_ext <<_ACEOF
-#line 13306 "configure"
+#line 13461 "configure"
 #include "confdefs.h"
 
 int
@@ -13315,16 +13470,16 @@ int x=tigetstr("")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13318: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13473: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13321: \$? = $ac_status" >&5
+  echo "$as_me:13476: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13324: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13479: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13327: \$? = $ac_status" >&5
+  echo "$as_me:13482: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_termlib=terminfo
 else
@@ -13348,10 +13503,10 @@ if test "$cf_cv_termlib" = none; then
 	LIBS="-l$cf_lib $cf_save_LIBS"
 	for cf_func in tigetstr tgetstr
 	do
-		echo "$as_me:13351: checking for $cf_func in -l$cf_lib" >&5
+		echo "$as_me:13506: checking for $cf_func in -l$cf_lib" >&5
 echo $ECHO_N "checking for $cf_func in -l$cf_lib... $ECHO_C" >&6
 		cat >conftest.$ac_ext <<_ACEOF
-#line 13354 "configure"
+#line 13509 "configure"
 #include "confdefs.h"
 
 int
@@ -13363,16 +13518,16 @@ int x=$cf_func("")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13366: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13521: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13369: \$? = $ac_status" >&5
+  echo "$as_me:13524: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13372: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13527: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13375: \$? = $ac_status" >&5
+  echo "$as_me:13530: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -13381,7 +13536,7 @@ cat conftest.$ac_ext >&5
 cf_result=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-		echo "$as_me:13384: result: $cf_result" >&5
+		echo "$as_me:13539: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 		if test "$cf_result" = yes ; then
 			if test "$cf_func" = tigetstr ; then
@@ -13398,7 +13553,7 @@ echo "${ECHO_T}$cf_result" >&6
 fi
 if test "$cf_cv_termlib" = none; then
 	# allow curses library for broken AIX system.
-	echo "$as_me:13401: checking for initscr in -lcurses" >&5
+	echo "$as_me:13556: checking for initscr in -lcurses" >&5
 echo $ECHO_N "checking for initscr in -lcurses... $ECHO_C" >&6
 if test "${ac_cv_lib_curses_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -13406,7 +13561,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lcurses  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 13409 "configure"
+#line 13564 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -13425,16 +13580,16 @@ initscr ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13428: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13583: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13431: \$? = $ac_status" >&5
+  echo "$as_me:13586: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13434: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13589: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13437: \$? = $ac_status" >&5
+  echo "$as_me:13592: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_curses_initscr=yes
 else
@@ -13445,13 +13600,13 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:13448: result: $ac_cv_lib_curses_initscr" >&5
+echo "$as_me:13603: result: $ac_cv_lib_curses_initscr" >&5
 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6
 if test $ac_cv_lib_curses_initscr = yes; then
   LIBS="$LIBS -lcurses" cf_cv_termlib=termcap
 fi
 
-	echo "$as_me:13454: checking for tgoto in -ltermcap" >&5
+	echo "$as_me:13609: checking for tgoto in -ltermcap" >&5
 echo $ECHO_N "checking for tgoto in -ltermcap... $ECHO_C" >&6
 if test "${ac_cv_lib_termcap_tgoto+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -13459,7 +13614,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-ltermcap  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 13462 "configure"
+#line 13617 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -13478,16 +13633,16 @@ tgoto ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13481: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13636: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13484: \$? = $ac_status" >&5
+  echo "$as_me:13639: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13487: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13642: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13490: \$? = $ac_status" >&5
+  echo "$as_me:13645: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_termcap_tgoto=yes
 else
@@ -13498,7 +13653,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:13501: result: $ac_cv_lib_termcap_tgoto" >&5
+echo "$as_me:13656: result: $ac_cv_lib_termcap_tgoto" >&5
 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6
 if test $ac_cv_lib_termcap_tgoto = yes; then
   LIBS="$LIBS -ltermcap" cf_cv_termlib=termcap
@@ -13509,20 +13664,20 @@ fi
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 if test "$cf_cv_termlib" = none; then
-	{ echo "$as_me:13512: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5
+	{ echo "$as_me:13667: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5
 echo "$as_me: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&2;}
 fi
 
 fi
 
 cf_slang_LIBS2="$LIBS"
-echo "$as_me:13519: checking for acos" >&5
+echo "$as_me:13674: checking for acos" >&5
 echo $ECHO_N "checking for acos... $ECHO_C" >&6
 if test "${ac_cv_func_acos+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 13525 "configure"
+#line 13680 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char acos (); below.  */
@@ -13553,16 +13708,16 @@ f = acos;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13556: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13711: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13559: \$? = $ac_status" >&5
+  echo "$as_me:13714: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13562: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13717: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13565: \$? = $ac_status" >&5
+  echo "$as_me:13720: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_acos=yes
 else
@@ -13572,13 +13727,13 @@ ac_cv_func_acos=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:13575: result: $ac_cv_func_acos" >&5
+echo "$as_me:13730: result: $ac_cv_func_acos" >&5
 echo "${ECHO_T}$ac_cv_func_acos" >&6
 if test $ac_cv_func_acos = yes; then
   :
 else
 
-echo "$as_me:13581: checking for acos in -lm" >&5
+echo "$as_me:13736: checking for acos in -lm" >&5
 echo $ECHO_N "checking for acos in -lm... $ECHO_C" >&6
 if test "${ac_cv_lib_m_acos+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -13586,7 +13741,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lm $LIBS $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 13589 "configure"
+#line 13744 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -13605,16 +13760,16 @@ acos ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13608: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13763: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13611: \$? = $ac_status" >&5
+  echo "$as_me:13766: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13614: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13769: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13617: \$? = $ac_status" >&5
+  echo "$as_me:13772: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_m_acos=yes
 else
@@ -13625,7 +13780,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:13628: result: $ac_cv_lib_m_acos" >&5
+echo "$as_me:13783: result: $ac_cv_lib_m_acos" >&5
 echo "${ECHO_T}$ac_cv_lib_m_acos" >&6
 if test $ac_cv_lib_m_acos = yes; then
 
@@ -13651,13 +13806,13 @@ os2*)
 
 	eval 'cf_cv_have_lib_'video'=no'
 	cf_libdir=""
-	echo "$as_me:13654: checking for v_init" >&5
+	echo "$as_me:13809: checking for v_init" >&5
 echo $ECHO_N "checking for v_init... $ECHO_C" >&6
 if test "${ac_cv_func_v_init+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 13660 "configure"
+#line 13815 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char v_init (); below.  */
@@ -13688,16 +13843,16 @@ f = v_init;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13691: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13846: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13694: \$? = $ac_status" >&5
+  echo "$as_me:13849: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13697: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13852: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13700: \$? = $ac_status" >&5
+  echo "$as_me:13855: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_v_init=yes
 else
@@ -13707,18 +13862,18 @@ ac_cv_func_v_init=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:13710: result: $ac_cv_func_v_init" >&5
+echo "$as_me:13865: result: $ac_cv_func_v_init" >&5
 echo "${ECHO_T}$ac_cv_func_v_init" >&6
 if test $ac_cv_func_v_init = yes; then
   eval 'cf_cv_have_lib_'video'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:13717: checking for v_init in -lvideo" >&5
+		echo "$as_me:13872: checking for v_init in -lvideo" >&5
 echo $ECHO_N "checking for v_init in -lvideo... $ECHO_C" >&6
 		LIBS="-lvideo $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 13721 "configure"
+#line 13876 "configure"
 #include "confdefs.h"
 #include <sys/video.h>
 int
@@ -13730,25 +13885,25 @@ v_init()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13733: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13888: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13736: \$? = $ac_status" >&5
+  echo "$as_me:13891: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13739: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13894: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13742: \$? = $ac_status" >&5
+  echo "$as_me:13897: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:13744: result: yes" >&5
+  echo "$as_me:13899: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'video'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:13751: result: no" >&5
+echo "$as_me:13906: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -13808,11 +13963,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:13811: checking for -lvideo in $cf_libdir" >&5
+				echo "$as_me:13966: checking for -lvideo in $cf_libdir" >&5
 echo $ECHO_N "checking for -lvideo in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -lvideo $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 13815 "configure"
+#line 13970 "configure"
 #include "confdefs.h"
 #include <sys/video.h>
 int
@@ -13824,25 +13979,25 @@ v_init()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13827: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13982: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13830: \$? = $ac_status" >&5
+  echo "$as_me:13985: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13833: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13988: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13836: \$? = $ac_status" >&5
+  echo "$as_me:13991: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:13838: result: yes" >&5
+  echo "$as_me:13993: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'video'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:13845: result: no" >&5
+echo "$as_me:14000: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -13857,7 +14012,7 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'video
 
 if test $cf_found_library = no ; then
-	{ { echo "$as_me:13860: error: Cannot link video library" >&5
+	{ { echo "$as_me:14015: error: Cannot link video library" >&5
 echo "$as_me: error: Cannot link video library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -13867,13 +14022,13 @@ esac
 
 	eval 'cf_cv_have_lib_'slang'=no'
 	cf_libdir=""
-	echo "$as_me:13870: checking for SLtt_get_screen_size" >&5
+	echo "$as_me:14025: checking for SLtt_get_screen_size" >&5
 echo $ECHO_N "checking for SLtt_get_screen_size... $ECHO_C" >&6
 if test "${ac_cv_func_SLtt_get_screen_size+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 13876 "configure"
+#line 14031 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char SLtt_get_screen_size (); below.  */
@@ -13904,16 +14059,16 @@ f = SLtt_get_screen_size;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13907: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14062: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13910: \$? = $ac_status" >&5
+  echo "$as_me:14065: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13913: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14068: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13916: \$? = $ac_status" >&5
+  echo "$as_me:14071: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_SLtt_get_screen_size=yes
 else
@@ -13923,18 +14078,18 @@ ac_cv_func_SLtt_get_screen_size=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:13926: result: $ac_cv_func_SLtt_get_screen_size" >&5
+echo "$as_me:14081: result: $ac_cv_func_SLtt_get_screen_size" >&5
 echo "${ECHO_T}$ac_cv_func_SLtt_get_screen_size" >&6
 if test $ac_cv_func_SLtt_get_screen_size = yes; then
   eval 'cf_cv_have_lib_'slang'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:13933: checking for SLtt_get_screen_size in -lslang" >&5
+		echo "$as_me:14088: checking for SLtt_get_screen_size in -lslang" >&5
 echo $ECHO_N "checking for SLtt_get_screen_size in -lslang... $ECHO_C" >&6
 		LIBS="-lslang $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 13937 "configure"
+#line 14092 "configure"
 #include "confdefs.h"
 #include <slang.h>
 int
@@ -13946,25 +14101,25 @@ SLtt_get_screen_size()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13949: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14104: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13952: \$? = $ac_status" >&5
+  echo "$as_me:14107: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13955: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14110: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13958: \$? = $ac_status" >&5
+  echo "$as_me:14113: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:13960: result: yes" >&5
+  echo "$as_me:14115: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'slang'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:13967: result: no" >&5
+echo "$as_me:14122: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -14024,11 +14179,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:14027: checking for -lslang in $cf_libdir" >&5
+				echo "$as_me:14182: checking for -lslang in $cf_libdir" >&5
 echo $ECHO_N "checking for -lslang in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -lslang $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 14031 "configure"
+#line 14186 "configure"
 #include "confdefs.h"
 #include <slang.h>
 int
@@ -14040,25 +14195,25 @@ SLtt_get_screen_size()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14043: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14198: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14046: \$? = $ac_status" >&5
+  echo "$as_me:14201: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14049: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14204: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14052: \$? = $ac_status" >&5
+  echo "$as_me:14207: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:14054: result: yes" >&5
+  echo "$as_me:14209: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'slang'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:14061: result: no" >&5
+echo "$as_me:14216: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -14073,13 +14228,13 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'slang
 
 if test $cf_found_library = no ; then
-	{ { echo "$as_me:14076: error: Cannot link slang library" >&5
+	{ { echo "$as_me:14231: error: Cannot link slang library" >&5
 echo "$as_me: error: Cannot link slang library" >&2;}
    { (exit 1); exit 1; }; }
 fi
 
 cf_slang_LIBS3="$LIBS"
-echo "$as_me:14082: checking if we can link slang without termcap" >&5
+echo "$as_me:14237: checking if we can link slang without termcap" >&5
 echo $ECHO_N "checking if we can link slang without termcap... $ECHO_C" >&6
 if test -n "`echo $cf_slang_LIBS1 | sed -e 's/ //g'`" ; then
 	cf_exclude=`echo ".$cf_slang_LIBS2" | sed -e "s%$cf_slang_LIBS1%%" -e 's%^.%%'`
@@ -14088,7 +14243,7 @@ else
 fi
 LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'`
 cat >conftest.$ac_ext <<_ACEOF
-#line 14091 "configure"
+#line 14246 "configure"
 #include "confdefs.h"
 #include <slang.h>
 int
@@ -14100,16 +14255,16 @@ SLtt_get_screen_size()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14103: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14258: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14106: \$? = $ac_status" >&5
+  echo "$as_me:14261: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14109: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14264: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14112: \$? = $ac_status" >&5
+  echo "$as_me:14267: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -14118,18 +14273,18 @@ cat conftest.$ac_ext >&5
 cf_result=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-echo "$as_me:14121: result: $cf_result" >&5
+echo "$as_me:14276: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 test $cf_result = no && LIBS="$cf_slang_LIBS3"
 
-echo "$as_me:14125: checking if we must tell slang this is UNIX" >&5
+echo "$as_me:14280: checking if we must tell slang this is UNIX" >&5
 echo $ECHO_N "checking if we must tell slang this is UNIX... $ECHO_C" >&6
 if test "${cf_cv_slang_unix+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 14132 "configure"
+#line 14287 "configure"
 #include "confdefs.h"
 #include <slang.h>
 int
@@ -14148,16 +14303,16 @@ SLang_TT_Baud_Rate = 1
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14151: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14306: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14154: \$? = $ac_status" >&5
+  echo "$as_me:14309: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14157: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14312: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14160: \$? = $ac_status" >&5
+  echo "$as_me:14315: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_slang_unix=yes
 else
@@ -14168,31 +14323,64 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:14171: result: $cf_cv_slang_unix" >&5
+echo "$as_me:14326: result: $cf_cv_slang_unix" >&5
 echo "${ECHO_T}$cf_cv_slang_unix" >&6
 test $cf_cv_slang_unix = yes && cat >>confdefs.h <<\EOF
 #define REAL_UNIX_SYSTEM 1
 EOF
 
+	dft_color_style=no
 	;;
 esac
 
-eval cf_libdir=$libdir
-cf_libdir=`echo $cf_libdir | sed -e s%'^NONE/'%$prefix/% -e s%'^NONE/'%$ac_default_prefix/%`
+echo "$as_me:14336: checking for the default configuration-file" >&5
+echo $ECHO_N "checking for the default configuration-file... $ECHO_C" >&6
+
+# Check whether --with-cfg-file or --without-cfg-file was given.
+if test "${with_cfg_file+set}" = set; then
+  withval="$with_cfg_file"
+
+else
+  withval="${LYNX_CFG_FILE-$libdir/lynx.cfg}"
+fi;
+case ".$withval" in #(vi
+.\$\(*\)*|.\'*\'*) #(vi
+  ;;
+..|./*|.\\*) #(vi
+  ;;
+.[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
+  ;;
+.\${*prefix}*) #(vi
+  eval withval="$withval"
+  case ".$withval" in #(vi
+  .NONE/*)
+    withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%`
+    ;;
+  esac
+  ;; #(vi
+.no|.NONE/*)
+  withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%`
+  ;;
+*)
+  { { echo "$as_me:14365: error: expected a pathname, not \"$withval\"" >&5
+echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
+   { (exit 1); exit 1; }; }
+  ;;
+esac
+
+LYNX_CFG_FILE="$withval"
 
-echo "$as_me:14183: checking for location of config-file" >&5
-echo $ECHO_N "checking for location of config-file... $ECHO_C" >&6
-LYNX_CFG_FILE=$cf_libdir/lynx.cfg
+echo "$as_me:14373: result: $LYNX_CFG_FILE" >&5
+echo "${ECHO_T}$LYNX_CFG_FILE" >&6
+
+test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE=
 cat >>confdefs.h <<EOF
 #define LYNX_CFG_FILE "$LYNX_CFG_FILE"
 EOF
 
-echo "$as_me:14190: result: $LYNX_CFG_FILE" >&5
-echo "${ECHO_T}$LYNX_CFG_FILE" >&6
-
 CHARSET_DEFS=
 
-echo "$as_me:14195: checking if you want only a few charsets" >&5
+echo "$as_me:14383: checking if you want only a few charsets" >&5
 echo $ECHO_N "checking if you want only a few charsets... $ECHO_C" >&6
 
 # Check whether --with-charsets or --without-charsets was given.
@@ -14204,7 +14392,7 @@ else
 fi;
 
 if test -n "$cf_charsets" ; then
-	echo "$as_me:14207: result: yes" >&5
+	echo "$as_me:14395: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 	cat >>confdefs.h <<\EOF
 #define ALL_CHARSETS 0
@@ -14249,17 +14437,17 @@ EOF
 		fi
 	done
 else
-	echo "$as_me:14252: result: no" >&5
+	echo "$as_me:14440: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-echo "$as_me:14256: checking for ANSI C header files" >&5
+echo "$as_me:14444: checking for ANSI C header files" >&5
 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
 if test "${ac_cv_header_stdc+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14262 "configure"
+#line 14450 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 #include <stdarg.h>
@@ -14267,13 +14455,13 @@ else
 #include <float.h>
 
 _ACEOF
-if { (eval echo "$as_me:14270: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:14458: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:14276: \$? = $ac_status" >&5
+  echo "$as_me:14464: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -14295,7 +14483,7 @@ rm -f conftest.err conftest.$ac_ext
 if test $ac_cv_header_stdc = yes; then
   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
   cat >conftest.$ac_ext <<_ACEOF
-#line 14298 "configure"
+#line 14486 "configure"
 #include "confdefs.h"
 #include <string.h>
 
@@ -14313,7 +14501,7 @@ fi
 if test $ac_cv_header_stdc = yes; then
   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
   cat >conftest.$ac_ext <<_ACEOF
-#line 14316 "configure"
+#line 14504 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 
@@ -14334,7 +14522,7 @@ if test $ac_cv_header_stdc = yes; then
   :
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14337 "configure"
+#line 14525 "configure"
 #include "confdefs.h"
 #include <ctype.h>
 #if ((' ' & 0x0FF) == 0x020)
@@ -14360,15 +14548,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:14363: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14551: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14366: \$? = $ac_status" >&5
+  echo "$as_me:14554: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:14368: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14556: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14371: \$? = $ac_status" >&5
+  echo "$as_me:14559: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -14381,7 +14569,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
 fi
-echo "$as_me:14384: result: $ac_cv_header_stdc" >&5
+echo "$as_me:14572: result: $ac_cv_header_stdc" >&5
 echo "${ECHO_T}$ac_cv_header_stdc" >&6
 if test $ac_cv_header_stdc = yes; then
 
@@ -14391,13 +14579,13 @@ EOF
 
 fi
 
-echo "$as_me:14394: checking whether time.h and sys/time.h may both be included" >&5
+echo "$as_me:14582: checking whether time.h and sys/time.h may both be included" >&5
 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
 if test "${ac_cv_header_time+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14400 "configure"
+#line 14588 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <sys/time.h>
@@ -14413,16 +14601,16 @@ return 0;
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:14416: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:14604: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:14419: \$? = $ac_status" >&5
+  echo "$as_me:14607: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:14422: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14610: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14425: \$? = $ac_status" >&5
+  echo "$as_me:14613: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_header_time=yes
 else
@@ -14432,7 +14620,7 @@ ac_cv_header_time=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:14435: result: $ac_cv_header_time" >&5
+echo "$as_me:14623: result: $ac_cv_header_time" >&5
 echo "${ECHO_T}$ac_cv_header_time" >&6
 if test $ac_cv_header_time = yes; then
 
@@ -14445,13 +14633,13 @@ fi
 ac_header_dirent=no
 for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
   as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
-echo "$as_me:14448: checking for $ac_hdr that defines DIR" >&5
+echo "$as_me:14636: checking for $ac_hdr that defines DIR" >&5
 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14454 "configure"
+#line 14642 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <$ac_hdr>
@@ -14466,16 +14654,16 @@ return 0;
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:14469: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:14657: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:14472: \$? = $ac_status" >&5
+  echo "$as_me:14660: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:14475: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14663: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14478: \$? = $ac_status" >&5
+  echo "$as_me:14666: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_Header=yes"
 else
@@ -14485,7 +14673,7 @@ eval "$as_ac_Header=no"
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:14488: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:14676: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -14498,7 +14686,7 @@ fi
 done
 # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
 if test $ac_header_dirent = dirent.h; then
-  echo "$as_me:14501: checking for opendir in -ldir" >&5
+  echo "$as_me:14689: checking for opendir in -ldir" >&5
 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6
 if test "${ac_cv_lib_dir_opendir+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -14506,7 +14694,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-ldir  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 14509 "configure"
+#line 14697 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -14525,16 +14713,16 @@ opendir ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14528: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14716: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14531: \$? = $ac_status" >&5
+  echo "$as_me:14719: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14534: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14722: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14537: \$? = $ac_status" >&5
+  echo "$as_me:14725: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_dir_opendir=yes
 else
@@ -14545,14 +14733,14 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:14548: result: $ac_cv_lib_dir_opendir" >&5
+echo "$as_me:14736: result: $ac_cv_lib_dir_opendir" >&5
 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6
 if test $ac_cv_lib_dir_opendir = yes; then
   LIBS="$LIBS -ldir"
 fi
 
 else
-  echo "$as_me:14555: checking for opendir in -lx" >&5
+  echo "$as_me:14743: checking for opendir in -lx" >&5
 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6
 if test "${ac_cv_lib_x_opendir+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -14560,7 +14748,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lx  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 14563 "configure"
+#line 14751 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -14579,16 +14767,16 @@ opendir ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14582: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14770: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14585: \$? = $ac_status" >&5
+  echo "$as_me:14773: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14588: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14776: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14591: \$? = $ac_status" >&5
+  echo "$as_me:14779: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_x_opendir=yes
 else
@@ -14599,7 +14787,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:14602: result: $ac_cv_lib_x_opendir" >&5
+echo "$as_me:14790: result: $ac_cv_lib_x_opendir" >&5
 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6
 if test $ac_cv_lib_x_opendir = yes; then
   LIBS="$LIBS -lx"
@@ -14627,23 +14815,23 @@ for ac_header in \
 
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:14630: checking for $ac_header" >&5
+echo "$as_me:14818: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14636 "configure"
+#line 14824 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:14640: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:14828: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:14646: \$? = $ac_status" >&5
+  echo "$as_me:14834: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -14662,7 +14850,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:14665: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:14853: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -14672,14 +14860,14 @@ EOF
 fi
 done
 
-echo "$as_me:14675: checking termio.h and termios.h" >&5
+echo "$as_me:14863: checking termio.h and termios.h" >&5
 echo $ECHO_N "checking termio.h and termios.h... $ECHO_C" >&6
 if test "${cf_cv_termio_and_termios+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
     cat >conftest.$ac_ext <<_ACEOF
-#line 14682 "configure"
+#line 14870 "configure"
 #include "confdefs.h"
 
 #if HAVE_TERMIO_H
@@ -14697,16 +14885,16 @@ putchar (0x0a)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:14700: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:14888: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:14703: \$? = $ac_status" >&5
+  echo "$as_me:14891: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:14706: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14894: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14709: \$? = $ac_status" >&5
+  echo "$as_me:14897: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_termio_and_termios=yes
 else
@@ -14717,20 +14905,20 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
 
-echo "$as_me:14720: result: $cf_cv_termio_and_termios" >&5
+echo "$as_me:14908: result: $cf_cv_termio_and_termios" >&5
 echo "${ECHO_T}$cf_cv_termio_and_termios" >&6
 test $cf_cv_termio_and_termios = no && cat >>confdefs.h <<\EOF
 #define TERMIO_AND_TERMIOS 1
 EOF
 
-echo "$as_me:14726: checking for sigaction and structs" >&5
+echo "$as_me:14914: checking for sigaction and structs" >&5
 echo $ECHO_N "checking for sigaction and structs... $ECHO_C" >&6
 if test "${cf_cv_func_sigaction+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 14733 "configure"
+#line 14921 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -14750,16 +14938,16 @@ struct sigaction act;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14753: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14941: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14756: \$? = $ac_status" >&5
+  echo "$as_me:14944: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14759: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14947: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14762: \$? = $ac_status" >&5
+  echo "$as_me:14950: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_func_sigaction=yes
 else
@@ -14770,7 +14958,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:14773: result: $cf_cv_func_sigaction" >&5
+echo "$as_me:14961: result: $cf_cv_func_sigaction" >&5
 echo "${ECHO_T}$cf_cv_func_sigaction" >&6
 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF
 #define HAVE_SIGACTION 1
@@ -14779,23 +14967,23 @@ EOF
 for ac_header in sys/wait.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:14782: checking for $ac_header" >&5
+echo "$as_me:14970: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14788 "configure"
+#line 14976 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:14792: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:14980: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:14798: \$? = $ac_status" >&5
+  echo "$as_me:14986: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -14814,7 +15002,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:14817: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:15005: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -14835,23 +15023,23 @@ else
 for ac_header in wait.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:14838: checking for $ac_header" >&5
+echo "$as_me:15026: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14844 "configure"
+#line 15032 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:14848: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:15036: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:14854: \$? = $ac_status" >&5
+  echo "$as_me:15042: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -14870,7 +15058,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:14873: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:15061: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -14883,23 +15071,23 @@ done
 for ac_header in waitstatus.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:14886: checking for $ac_header" >&5
+echo "$as_me:15074: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14892 "configure"
+#line 15080 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:14896: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:15084: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:14902: \$? = $ac_status" >&5
+  echo "$as_me:15090: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -14918,7 +15106,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:14921: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:15109: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -14940,14 +15128,14 @@ cf_wait_headers="$cf_wait_headers
 fi
 fi
 
-echo "$as_me:14943: checking for union wait" >&5
+echo "$as_me:15131: checking for union wait" >&5
 echo $ECHO_N "checking for union wait... $ECHO_C" >&6
 if test "${cf_cv_type_unionwait+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 14950 "configure"
+#line 15138 "configure"
 #include "confdefs.h"
 $cf_wait_headers
 int
@@ -14963,16 +15151,16 @@ int x;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14966: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15154: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14969: \$? = $ac_status" >&5
+  echo "$as_me:15157: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14972: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15160: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14975: \$? = $ac_status" >&5
+  echo "$as_me:15163: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_type_unionwait=no
 	 echo compiles ok w/o union wait 1>&5
@@ -14982,7 +15170,7 @@ else
 cat conftest.$ac_ext >&5
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 14985 "configure"
+#line 15173 "configure"
 #include "confdefs.h"
 $cf_wait_headers
 int
@@ -15002,16 +15190,16 @@ union wait x;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:15005: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15193: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15008: \$? = $ac_status" >&5
+  echo "$as_me:15196: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:15011: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15199: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15014: \$? = $ac_status" >&5
+  echo "$as_me:15202: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_type_unionwait=yes
 	 echo compiles ok with union wait and possibly macros too 1>&5
@@ -15026,7 +15214,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 
-echo "$as_me:15029: result: $cf_cv_type_unionwait" >&5
+echo "$as_me:15217: result: $cf_cv_type_unionwait" >&5
 echo "${ECHO_T}$cf_cv_type_unionwait" >&6
 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF
 #define HAVE_TYPE_UNIONWAIT 1
@@ -15034,14 +15222,14 @@ EOF
 
 if test $cf_cv_type_unionwait = yes; then
 
-	echo "$as_me:15037: checking if union wait can be used as wait-arg" >&5
+	echo "$as_me:15225: checking if union wait can be used as wait-arg" >&5
 echo $ECHO_N "checking if union wait can be used as wait-arg... $ECHO_C" >&6
 	if test "${cf_cv_arg_union_wait+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 		cat >conftest.$ac_ext <<_ACEOF
-#line 15044 "configure"
+#line 15232 "configure"
 #include "confdefs.h"
 $cf_wait_headers
 int
@@ -15053,16 +15241,16 @@ union wait x; wait(&x)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15056: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15244: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15059: \$? = $ac_status" >&5
+  echo "$as_me:15247: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15062: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15250: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15065: \$? = $ac_status" >&5
+  echo "$as_me:15253: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_arg_union_wait=yes
 else
@@ -15074,20 +15262,20 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 
-	echo "$as_me:15077: result: $cf_cv_arg_union_wait" >&5
+	echo "$as_me:15265: result: $cf_cv_arg_union_wait" >&5
 echo "${ECHO_T}$cf_cv_arg_union_wait" >&6
 	test $cf_cv_arg_union_wait = yes && cat >>confdefs.h <<\EOF
 #define WAIT_USES_UNION 1
 EOF
 
-	echo "$as_me:15083: checking if union wait can be used as waitpid-arg" >&5
+	echo "$as_me:15271: checking if union wait can be used as waitpid-arg" >&5
 echo $ECHO_N "checking if union wait can be used as waitpid-arg... $ECHO_C" >&6
 	if test "${cf_cv_arg_union_waitpid+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 		cat >conftest.$ac_ext <<_ACEOF
-#line 15090 "configure"
+#line 15278 "configure"
 #include "confdefs.h"
 $cf_wait_headers
 int
@@ -15099,16 +15287,16 @@ union wait x; waitpid(0, &x, 0)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15102: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15290: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15105: \$? = $ac_status" >&5
+  echo "$as_me:15293: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15108: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15296: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15111: \$? = $ac_status" >&5
+  echo "$as_me:15299: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_arg_union_waitpid=yes
 else
@@ -15120,7 +15308,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 
-	echo "$as_me:15123: result: $cf_cv_arg_union_waitpid" >&5
+	echo "$as_me:15311: result: $cf_cv_arg_union_waitpid" >&5
 echo "${ECHO_T}$cf_cv_arg_union_waitpid" >&6
 	test $cf_cv_arg_union_waitpid = yes && cat >>confdefs.h <<\EOF
 #define WAITPID_USES_UNION 1
@@ -15131,23 +15319,23 @@ fi
 for ac_header in stdarg.h varargs.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:15134: checking for $ac_header" >&5
+echo "$as_me:15322: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15140 "configure"
+#line 15328 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:15144: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:15332: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:15150: \$? = $ac_status" >&5
+  echo "$as_me:15338: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -15166,7 +15354,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:15169: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:15357: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -15176,14 +15364,14 @@ EOF
 fi
 done
 
-echo "$as_me:15179: checking for standard varargs" >&5
+echo "$as_me:15367: checking for standard varargs" >&5
 echo $ECHO_N "checking for standard varargs... $ECHO_C" >&6
 if test "${cf_cv_ansi_varargs+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 15186 "configure"
+#line 15374 "configure"
 #include "confdefs.h"
 
 #if HAVE_STDARG_H
@@ -15203,16 +15391,16 @@ return 0;} int foo(char *fmt,...){va_list args;va_start(args,fmt);va_end(args)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15206: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15394: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15209: \$? = $ac_status" >&5
+  echo "$as_me:15397: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15212: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15400: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15215: \$? = $ac_status" >&5
+  echo "$as_me:15403: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ansi_varargs=yes
 else
@@ -15224,19 +15412,19 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 
-echo "$as_me:15227: result: $cf_cv_ansi_varargs" >&5
+echo "$as_me:15415: result: $cf_cv_ansi_varargs" >&5
 echo "${ECHO_T}$cf_cv_ansi_varargs" >&6
 test $cf_cv_ansi_varargs = yes && cat >>confdefs.h <<\EOF
 #define ANSI_VARARGS 1
 EOF
 
-echo "$as_me:15233: checking for uid_t in sys/types.h" >&5
+echo "$as_me:15421: checking for uid_t in sys/types.h" >&5
 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6
 if test "${ac_cv_type_uid_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15239 "configure"
+#line 15427 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 
@@ -15250,7 +15438,7 @@ fi
 rm -f conftest*
 
 fi
-echo "$as_me:15253: result: $ac_cv_type_uid_t" >&5
+echo "$as_me:15441: result: $ac_cv_type_uid_t" >&5
 echo "${ECHO_T}$ac_cv_type_uid_t" >&6
 if test $ac_cv_type_uid_t = no; then
 
@@ -15264,7 +15452,7 @@ EOF
 
 fi
 
-echo "$as_me:15267: checking type of array argument to getgroups" >&5
+echo "$as_me:15455: checking type of array argument to getgroups" >&5
 echo $ECHO_N "checking type of array argument to getgroups... $ECHO_C" >&6
 if test "${ac_cv_type_getgroups+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -15273,7 +15461,7 @@ else
   ac_cv_type_getgroups=cross
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15276 "configure"
+#line 15464 "configure"
 #include "confdefs.h"
 /* Thanks to Mike Rendell for this test.  */
 #include <sys/types.h>
@@ -15299,15 +15487,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:15302: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15490: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15305: \$? = $ac_status" >&5
+  echo "$as_me:15493: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:15307: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15495: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15310: \$? = $ac_status" >&5
+  echo "$as_me:15498: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_type_getgroups=gid_t
 else
@@ -15320,7 +15508,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 if test $ac_cv_type_getgroups = cross; then
         cat >conftest.$ac_ext <<_ACEOF
-#line 15323 "configure"
+#line 15511 "configure"
 #include "confdefs.h"
 #include <unistd.h>
 
@@ -15335,20 +15523,20 @@ rm -f conftest*
 
 fi
 fi
-echo "$as_me:15338: result: $ac_cv_type_getgroups" >&5
+echo "$as_me:15526: result: $ac_cv_type_getgroups" >&5
 echo "${ECHO_T}$ac_cv_type_getgroups" >&6
 
 cat >>confdefs.h <<EOF
 #define GETGROUPS_T $ac_cv_type_getgroups
 EOF
 
-echo "$as_me:15345: checking for pid_t" >&5
+echo "$as_me:15533: checking for pid_t" >&5
 echo $ECHO_N "checking for pid_t... $ECHO_C" >&6
 if test "${ac_cv_type_pid_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15351 "configure"
+#line 15539 "configure"
 #include "confdefs.h"
 $ac_includes_default
 int
@@ -15363,16 +15551,16 @@ if (sizeof (pid_t))
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15366: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15554: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15369: \$? = $ac_status" >&5
+  echo "$as_me:15557: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15372: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15560: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15375: \$? = $ac_status" >&5
+  echo "$as_me:15563: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_type_pid_t=yes
 else
@@ -15382,7 +15570,7 @@ ac_cv_type_pid_t=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:15385: result: $ac_cv_type_pid_t" >&5
+echo "$as_me:15573: result: $ac_cv_type_pid_t" >&5
 echo "${ECHO_T}$ac_cv_type_pid_t" >&6
 if test $ac_cv_type_pid_t = yes; then
   :
@@ -15394,13 +15582,13 @@ EOF
 
 fi
 
-echo "$as_me:15397: checking for uid_t in sys/types.h" >&5
+echo "$as_me:15585: checking for uid_t in sys/types.h" >&5
 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6
 if test "${ac_cv_type_uid_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15403 "configure"
+#line 15591 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 
@@ -15414,7 +15602,7 @@ fi
 rm -f conftest*
 
 fi
-echo "$as_me:15417: result: $ac_cv_type_uid_t" >&5
+echo "$as_me:15605: result: $ac_cv_type_uid_t" >&5
 echo "${ECHO_T}$ac_cv_type_uid_t" >&6
 if test $ac_cv_type_uid_t = no; then
 
@@ -15428,13 +15616,13 @@ EOF
 
 fi
 
-echo "$as_me:15431: checking for mode_t" >&5
+echo "$as_me:15619: checking for mode_t" >&5
 echo $ECHO_N "checking for mode_t... $ECHO_C" >&6
 if test "${ac_cv_type_mode_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15437 "configure"
+#line 15625 "configure"
 #include "confdefs.h"
 $ac_includes_default
 int
@@ -15449,16 +15637,16 @@ if (sizeof (mode_t))
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15452: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15640: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15455: \$? = $ac_status" >&5
+  echo "$as_me:15643: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15458: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15646: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15461: \$? = $ac_status" >&5
+  echo "$as_me:15649: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_type_mode_t=yes
 else
@@ -15468,7 +15656,7 @@ ac_cv_type_mode_t=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:15471: result: $ac_cv_type_mode_t" >&5
+echo "$as_me:15659: result: $ac_cv_type_mode_t" >&5
 echo "${ECHO_T}$ac_cv_type_mode_t" >&6
 if test $ac_cv_type_mode_t = yes; then
   :
@@ -15480,13 +15668,13 @@ EOF
 
 fi
 
-	echo "$as_me:15483: checking for socklen_t" >&5
+	echo "$as_me:15671: checking for socklen_t" >&5
 echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6
 if test "${ac_cv_type_socklen_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15489 "configure"
+#line 15677 "configure"
 #include "confdefs.h"
 #include <sys/socket.h>
 
@@ -15502,16 +15690,16 @@ if (sizeof (socklen_t))
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15505: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15693: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15508: \$? = $ac_status" >&5
+  echo "$as_me:15696: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15511: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15699: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15514: \$? = $ac_status" >&5
+  echo "$as_me:15702: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_type_socklen_t=yes
 else
@@ -15521,7 +15709,7 @@ ac_cv_type_socklen_t=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:15524: result: $ac_cv_type_socklen_t" >&5
+echo "$as_me:15712: result: $ac_cv_type_socklen_t" >&5
 echo "${ECHO_T}$ac_cv_type_socklen_t" >&6
 if test $ac_cv_type_socklen_t = yes; then
   ac_cv_type_socklen_t=yes
@@ -15538,13 +15726,13 @@ fi
 
 # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
 # for constant arguments.  Useless!
-echo "$as_me:15541: checking for working alloca.h" >&5
+echo "$as_me:15729: checking for working alloca.h" >&5
 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6
 if test "${ac_cv_working_alloca_h+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15547 "configure"
+#line 15735 "configure"
 #include "confdefs.h"
 #include <alloca.h>
 int
@@ -15556,16 +15744,16 @@ char *p = (char *) alloca (2 * sizeof (int));
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:15559: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15747: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15562: \$? = $ac_status" >&5
+  echo "$as_me:15750: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:15565: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15753: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15568: \$? = $ac_status" >&5
+  echo "$as_me:15756: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_working_alloca_h=yes
 else
@@ -15575,7 +15763,7 @@ ac_cv_working_alloca_h=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:15578: result: $ac_cv_working_alloca_h" >&5
+echo "$as_me:15766: result: $ac_cv_working_alloca_h" >&5
 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
 if test $ac_cv_working_alloca_h = yes; then
 
@@ -15585,13 +15773,13 @@ EOF
 
 fi
 
-echo "$as_me:15588: checking for alloca" >&5
+echo "$as_me:15776: checking for alloca" >&5
 echo $ECHO_N "checking for alloca... $ECHO_C" >&6
 if test "${ac_cv_func_alloca_works+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15594 "configure"
+#line 15782 "configure"
 #include "confdefs.h"
 #ifdef __GNUC__
 # define alloca __builtin_alloca
@@ -15623,16 +15811,16 @@ char *p = (char *) alloca (1);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:15626: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15814: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15629: \$? = $ac_status" >&5
+  echo "$as_me:15817: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:15632: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15820: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15635: \$? = $ac_status" >&5
+  echo "$as_me:15823: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_alloca_works=yes
 else
@@ -15642,7 +15830,7 @@ ac_cv_func_alloca_works=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:15645: result: $ac_cv_func_alloca_works" >&5
+echo "$as_me:15833: result: $ac_cv_func_alloca_works" >&5
 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
 
 if test $ac_cv_func_alloca_works = yes; then
@@ -15663,13 +15851,13 @@ cat >>confdefs.h <<\EOF
 #define C_ALLOCA 1
 EOF
 
-echo "$as_me:15666: checking whether \`alloca.c' needs Cray hooks" >&5
+echo "$as_me:15854: checking whether \`alloca.c' needs Cray hooks" >&5
 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6
 if test "${ac_cv_os_cray+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15672 "configure"
+#line 15860 "configure"
 #include "confdefs.h"
 #if defined(CRAY) && ! defined(CRAY2)
 webecray
@@ -15687,18 +15875,18 @@ fi
 rm -f conftest*
 
 fi
-echo "$as_me:15690: result: $ac_cv_os_cray" >&5
+echo "$as_me:15878: result: $ac_cv_os_cray" >&5
 echo "${ECHO_T}$ac_cv_os_cray" >&6
 if test $ac_cv_os_cray = yes; then
   for ac_func in _getb67 GETB67 getb67; do
     as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:15695: checking for $ac_func" >&5
+echo "$as_me:15883: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15701 "configure"
+#line 15889 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -15729,16 +15917,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:15732: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15920: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15735: \$? = $ac_status" >&5
+  echo "$as_me:15923: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:15738: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15926: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15741: \$? = $ac_status" >&5
+  echo "$as_me:15929: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -15748,7 +15936,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:15751: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:15939: result: `eval echo '${'$as_ac_var'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 if test `eval echo '${'$as_ac_var'}'` = yes; then
 
@@ -15762,7 +15950,7 @@ fi
   done
 fi
 
-echo "$as_me:15765: checking stack direction for C alloca" >&5
+echo "$as_me:15953: checking stack direction for C alloca" >&5
 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6
 if test "${ac_cv_c_stack_direction+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -15771,7 +15959,7 @@ else
   ac_cv_c_stack_direction=0
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15774 "configure"
+#line 15962 "configure"
 #include "confdefs.h"
 int
 find_stack_direction ()
@@ -15794,15 +15982,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:15797: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15985: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15800: \$? = $ac_status" >&5
+  echo "$as_me:15988: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:15802: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15990: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15805: \$? = $ac_status" >&5
+  echo "$as_me:15993: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_c_stack_direction=1
 else
@@ -15814,7 +16002,7 @@ fi
 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
-echo "$as_me:15817: result: $ac_cv_c_stack_direction" >&5
+echo "$as_me:16005: result: $ac_cv_c_stack_direction" >&5
 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
 
 cat >>confdefs.h <<EOF
@@ -15826,23 +16014,23 @@ fi
 for ac_header in unistd.h vfork.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:15829: checking for $ac_header" >&5
+echo "$as_me:16017: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15835 "configure"
+#line 16023 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:15839: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:16027: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:15845: \$? = $ac_status" >&5
+  echo "$as_me:16033: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -15861,7 +16049,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:15864: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:16052: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -15874,13 +16062,13 @@ done
 for ac_func in fork vfork
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:15877: checking for $ac_func" >&5
+echo "$as_me:16065: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15883 "configure"
+#line 16071 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -15911,16 +16099,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:15914: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16102: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15917: \$? = $ac_status" >&5
+  echo "$as_me:16105: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:15920: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16108: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15923: \$? = $ac_status" >&5
+  echo "$as_me:16111: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -15930,7 +16118,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:15933: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:16121: result: `eval echo '${'$as_ac_var'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 if test `eval echo '${'$as_ac_var'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -15942,7 +16130,7 @@ done
 
 ac_cv_func_fork_works=$ac_cv_func_fork
 if test "x$ac_cv_func_fork" = xyes; then
-  echo "$as_me:15945: checking for working fork" >&5
+  echo "$as_me:16133: checking for working fork" >&5
 echo $ECHO_N "checking for working fork... $ECHO_C" >&6
 if test "${ac_cv_func_fork_works+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -15965,15 +16153,15 @@ else
       }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:15968: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16156: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15971: \$? = $ac_status" >&5
+  echo "$as_me:16159: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:15973: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16161: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15976: \$? = $ac_status" >&5
+  echo "$as_me:16164: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_fork_works=yes
 else
@@ -15985,7 +16173,7 @@ fi
 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
-echo "$as_me:15988: result: $ac_cv_func_fork_works" >&5
+echo "$as_me:16176: result: $ac_cv_func_fork_works" >&5
 echo "${ECHO_T}$ac_cv_func_fork_works" >&6
 
 fi
@@ -15999,12 +16187,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then
       ac_cv_func_fork_works=yes
       ;;
   esac
-  { echo "$as_me:16002: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
+  { echo "$as_me:16190: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&2;}
 fi
 ac_cv_func_vfork_works=$ac_cv_func_vfork
 if test "x$ac_cv_func_vfork" = xyes; then
-  echo "$as_me:16007: checking for working vfork" >&5
+  echo "$as_me:16195: checking for working vfork" >&5
 echo $ECHO_N "checking for working vfork... $ECHO_C" >&6
 if test "${ac_cv_func_vfork_works+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -16013,7 +16201,7 @@ else
   ac_cv_func_vfork_works=cross
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 16016 "configure"
+#line 16204 "configure"
 #include "confdefs.h"
 /* Thanks to Paul Eggert for this test.  */
 #include <stdio.h>
@@ -16110,15 +16298,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:16113: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16301: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16116: \$? = $ac_status" >&5
+  echo "$as_me:16304: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:16118: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16306: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16121: \$? = $ac_status" >&5
+  echo "$as_me:16309: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_vfork_works=yes
 else
@@ -16130,13 +16318,13 @@ fi
 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
-echo "$as_me:16133: result: $ac_cv_func_vfork_works" >&5
+echo "$as_me:16321: result: $ac_cv_func_vfork_works" >&5
 echo "${ECHO_T}$ac_cv_func_vfork_works" >&6
 
 fi;
 if test "x$ac_cv_func_fork_works" = xcross; then
   ac_cv_func_vfork_works=ac_cv_func_vfork
-  { echo "$as_me:16139: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
+  { echo "$as_me:16327: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&2;}
 fi
 
@@ -16161,14 +16349,14 @@ EOF
 
 fi
 
-echo "$as_me:16164: checking if we should use fcntl or ioctl" >&5
+echo "$as_me:16352: checking if we should use fcntl or ioctl" >&5
 echo $ECHO_N "checking if we should use fcntl or ioctl... $ECHO_C" >&6
 if test "${cf_cv_fionbio+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 16171 "configure"
+#line 16359 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -16185,16 +16373,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:16188: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16376: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16191: \$? = $ac_status" >&5
+  echo "$as_me:16379: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:16194: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16382: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16197: \$? = $ac_status" >&5
+  echo "$as_me:16385: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_fionbio=ioctl
 else
@@ -16202,7 +16390,7 @@ else
 cat conftest.$ac_ext >&5
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 16205 "configure"
+#line 16393 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -16224,16 +16412,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:16227: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16415: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16230: \$? = $ac_status" >&5
+  echo "$as_me:16418: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:16233: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16421: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16236: \$? = $ac_status" >&5
+  echo "$as_me:16424: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_fionbio=fcntl
 else
@@ -16246,20 +16434,20 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:16249: result: $cf_cv_fionbio" >&5
+echo "$as_me:16437: result: $cf_cv_fionbio" >&5
 echo "${ECHO_T}$cf_cv_fionbio" >&6
 test "$cf_cv_fionbio" = "fcntl" && cat >>confdefs.h <<\EOF
 #define USE_FCNTL 1
 EOF
 
-echo "$as_me:16255: checking for broken/missing definition of remove" >&5
+echo "$as_me:16443: checking for broken/missing definition of remove" >&5
 echo $ECHO_N "checking for broken/missing definition of remove... $ECHO_C" >&6
 if test "${cf_cv_baddef_remove+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 16262 "configure"
+#line 16450 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -16271,23 +16459,23 @@ remove("dummy")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:16274: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16462: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16277: \$? = $ac_status" >&5
+  echo "$as_me:16465: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:16280: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16468: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16283: \$? = $ac_status" >&5
+  echo "$as_me:16471: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_baddef_remove=no
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 cat >conftest.$ac_ext <<_ACEOF
-#line 16290 "configure"
+#line 16478 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 		int __unlink(name) { return unlink(name); }
@@ -16300,16 +16488,16 @@ remove("dummy")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:16303: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16491: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16306: \$? = $ac_status" >&5
+  echo "$as_me:16494: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:16309: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16497: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16312: \$? = $ac_status" >&5
+  echo "$as_me:16500: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_baddef_remove=yes
 else
@@ -16324,20 +16512,20 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 
-echo "$as_me:16327: result: $cf_cv_baddef_remove" >&5
+echo "$as_me:16515: result: $cf_cv_baddef_remove" >&5
 echo "${ECHO_T}$cf_cv_baddef_remove" >&6
 test "$cf_cv_baddef_remove" != no && cat >>confdefs.h <<\EOF
 #define NEED_REMOVE 1
 EOF
 
-echo "$as_me:16333: checking for lstat" >&5
+echo "$as_me:16521: checking for lstat" >&5
 echo $ECHO_N "checking for lstat... $ECHO_C" >&6
 if test "${ac_cv_func_lstat+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 16340 "configure"
+#line 16528 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -16351,16 +16539,16 @@ lstat(".", (struct stat *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:16354: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16542: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16357: \$? = $ac_status" >&5
+  echo "$as_me:16545: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:16360: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16548: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16363: \$? = $ac_status" >&5
+  echo "$as_me:16551: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_lstat=yes
 else
@@ -16372,7 +16560,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 
-echo "$as_me:16375: result: $ac_cv_func_lstat " >&5
+echo "$as_me:16563: result: $ac_cv_func_lstat " >&5
 echo "${ECHO_T}$ac_cv_func_lstat " >&6
 if test $ac_cv_func_lstat = yes; then
 	cat >>confdefs.h <<\EOF
@@ -16405,13 +16593,13 @@ for ac_func in \
 
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:16408: checking for $ac_func" >&5
+echo "$as_me:16596: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 16414 "configure"
+#line 16602 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -16442,16 +16630,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:16445: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16633: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16448: \$? = $ac_status" >&5
+  echo "$as_me:16636: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:16451: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16639: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16454: \$? = $ac_status" >&5
+  echo "$as_me:16642: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -16461,7 +16649,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:16464: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:16652: result: `eval echo '${'$as_ac_var'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 if test `eval echo '${'$as_ac_var'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -16477,13 +16665,13 @@ for ac_func in \
 
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:16480: checking for $ac_func" >&5
+echo "$as_me:16668: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 16486 "configure"
+#line 16674 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -16514,16 +16702,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:16517: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16705: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16520: \$? = $ac_status" >&5
+  echo "$as_me:16708: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:16523: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16711: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16526: \$? = $ac_status" >&5
+  echo "$as_me:16714: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -16533,7 +16721,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:16536: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:16724: result: `eval echo '${'$as_ac_var'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 if test `eval echo '${'$as_ac_var'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -16545,7 +16733,7 @@ else
 fi
 done
 
-echo "$as_me:16548: checking for random-integer functions" >&5
+echo "$as_me:16736: checking for random-integer functions" >&5
 echo $ECHO_N "checking for random-integer functions... $ECHO_C" >&6
 if test "${cf_cv_srand_func+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -16557,7 +16745,7 @@ do
 	cf_srand_func=`echo $cf_func | sed -e 's%/.*%%'`
 	cf_rand_func=`echo  $cf_func | sed -e 's%.*/%%'`
 cat >conftest.$ac_ext <<_ACEOF
-#line 16560 "configure"
+#line 16748 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_STDLIB_H
@@ -16576,16 +16764,16 @@ long seed = 1; $cf_srand_func(seed); seed = $cf_rand_func()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:16579: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16767: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16582: \$? = $ac_status" >&5
+  echo "$as_me:16770: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:16585: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16773: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16588: \$? = $ac_status" >&5
+  echo "$as_me:16776: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_srand_func=$cf_func
  break
@@ -16597,10 +16785,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:16600: result: $cf_cv_srand_func" >&5
+echo "$as_me:16788: result: $cf_cv_srand_func" >&5
 echo "${ECHO_T}$cf_cv_srand_func" >&6
 if test "$cf_cv_srand_func" != unknown ; then
-	echo "$as_me:16603: checking for range of random-integers" >&5
+	echo "$as_me:16791: checking for range of random-integers" >&5
 echo $ECHO_N "checking for range of random-integers... $ECHO_C" >&6
 if test "${cf_cv_rand_max+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -16621,7 +16809,7 @@ else
 			;;
 		esac
 		cat >conftest.$ac_ext <<_ACEOF
-#line 16624 "configure"
+#line 16812 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_STDLIB_H
@@ -16640,16 +16828,16 @@ long x = $cf_cv_rand_max
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16643: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16831: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16646: \$? = $ac_status" >&5
+  echo "$as_me:16834: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16649: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16837: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16652: \$? = $ac_status" >&5
+  echo "$as_me:16840: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -16660,7 +16848,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:16663: result: $cf_cv_rand_max" >&5
+echo "$as_me:16851: result: $cf_cv_rand_max" >&5
 echo "${ECHO_T}$cf_cv_rand_max" >&6
 	cf_srand_func=`echo $cf_func | sed -e 's%/.*%%'`
 	cf_rand_func=`echo  $cf_func | sed -e 's%.*/%%'`
@@ -16684,13 +16872,13 @@ fi
 for ac_func in strstr
 do
 
-echo "$as_me:16687: checking for $ac_func declaration" >&5
+echo "$as_me:16875: checking for $ac_func declaration" >&5
 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6
 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 16693 "configure"
+#line 16881 "configure"
 #include "confdefs.h"
 #include <string.h>
 int
@@ -16704,20 +16892,20 @@ extern	int	${ac_func}();
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16707: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16895: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16710: \$? = $ac_status" >&5
+  echo "$as_me:16898: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16713: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16901: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16716: \$? = $ac_status" >&5
+  echo "$as_me:16904: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 16720 "configure"
+#line 16908 "configure"
 #include "confdefs.h"
 #include <string.h>
 int
@@ -16731,16 +16919,16 @@ int	(*p)() = ${ac_func};
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16734: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16922: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16737: \$? = $ac_status" >&5
+  echo "$as_me:16925: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16740: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16928: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16743: \$? = $ac_status" >&5
+  echo "$as_me:16931: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 eval "ac_cv_func_decl_$ac_func=yes"
@@ -16761,11 +16949,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 fi
 
 if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then
-  echo "$as_me:16764: result: yes" >&5
+  echo "$as_me:16952: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   :
 else
-  echo "$as_me:16768: result: no" >&5
+  echo "$as_me:16956: result: no" >&5
 echo "${ECHO_T}no" >&6
 
 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
@@ -16780,13 +16968,13 @@ done
 for ac_func in getgrgid getgrnam
 do
 
-echo "$as_me:16783: checking for $ac_func declaration" >&5
+echo "$as_me:16971: checking for $ac_func declaration" >&5
 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6
 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 16789 "configure"
+#line 16977 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -16802,20 +16990,20 @@ extern	int	${ac_func}();
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16805: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16993: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16808: \$? = $ac_status" >&5
+  echo "$as_me:16996: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16811: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16999: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16814: \$? = $ac_status" >&5
+  echo "$as_me:17002: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 16818 "configure"
+#line 17006 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -16831,16 +17019,16 @@ int	(*p)() = ${ac_func};
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16834: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:17022: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16837: \$? = $ac_status" >&5
+  echo "$as_me:17025: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16840: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17028: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16843: \$? = $ac_status" >&5
+  echo "$as_me:17031: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 eval "ac_cv_func_decl_$ac_func=yes"
@@ -16861,11 +17049,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 fi
 
 if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then
-  echo "$as_me:16864: result: yes" >&5
+  echo "$as_me:17052: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   :
 else
-  echo "$as_me:16868: result: no" >&5
+  echo "$as_me:17056: result: no" >&5
 echo "${ECHO_T}no" >&6
 
 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
@@ -16877,14 +17065,14 @@ EOF
 fi
 done
 
-echo "$as_me:16880: checking if TRUE/FALSE are defined" >&5
+echo "$as_me:17068: checking if TRUE/FALSE are defined" >&5
 echo $ECHO_N "checking if TRUE/FALSE are defined... $ECHO_C" >&6
 if test "${cf_cv_bool_defs+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 16887 "configure"
+#line 17075 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -16898,16 +17086,16 @@ int x = TRUE, y = FALSE
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16901: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:17089: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16904: \$? = $ac_status" >&5
+  echo "$as_me:17092: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16907: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17095: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16910: \$? = $ac_status" >&5
+  echo "$as_me:17098: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_bool_defs=yes
 else
@@ -16918,7 +17106,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
 
-echo "$as_me:16921: result: $cf_cv_bool_defs" >&5
+echo "$as_me:17109: result: $cf_cv_bool_defs" >&5
 echo "${ECHO_T}$cf_cv_bool_defs" >&6
 if test "$cf_cv_bool_defs" = no ; then
 	cat >>confdefs.h <<\EOF
@@ -16931,14 +17119,14 @@ EOF
 
 fi
 
-echo "$as_me:16934: checking if external errno is declared" >&5
+echo "$as_me:17122: checking if external errno is declared" >&5
 echo $ECHO_N "checking if external errno is declared... $ECHO_C" >&6
 if test "${cf_cv_dcl_errno+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
     cat >conftest.$ac_ext <<_ACEOF
-#line 16941 "configure"
+#line 17129 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_STDLIB_H
@@ -16956,16 +17144,16 @@ long x = (long) errno
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16959: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:17147: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16962: \$? = $ac_status" >&5
+  echo "$as_me:17150: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16965: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17153: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16968: \$? = $ac_status" >&5
+  echo "$as_me:17156: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_dcl_errno=yes
 else
@@ -16976,7 +17164,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:16979: result: $cf_cv_dcl_errno" >&5
+echo "$as_me:17167: result: $cf_cv_dcl_errno" >&5
 echo "${ECHO_T}$cf_cv_dcl_errno" >&6
 
 if test "$cf_cv_dcl_errno" = no ; then
@@ -16991,14 +17179,14 @@ fi
 
 # It's possible (for near-UNIX clones) that the data doesn't exist
 
-echo "$as_me:16994: checking if external errno exists" >&5
+echo "$as_me:17182: checking if external errno exists" >&5
 echo $ECHO_N "checking if external errno exists... $ECHO_C" >&6
 if test "${cf_cv_have_errno+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
     cat >conftest.$ac_ext <<_ACEOF
-#line 17001 "configure"
+#line 17189 "configure"
 #include "confdefs.h"
 
 #undef errno
@@ -17013,16 +17201,16 @@ errno = 2
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:17016: \"$ac_link\"") >&5
+if { (eval echo "$as_me:17204: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:17019: \$? = $ac_status" >&5
+  echo "$as_me:17207: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:17022: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17210: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17025: \$? = $ac_status" >&5
+  echo "$as_me:17213: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_errno=yes
 else
@@ -17033,7 +17221,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:17036: result: $cf_cv_have_errno" >&5
+echo "$as_me:17224: result: $cf_cv_have_errno" >&5
 echo "${ECHO_T}$cf_cv_have_errno" >&6
 
 if test "$cf_cv_have_errno" = yes ; then
@@ -17046,7 +17234,7 @@ EOF
 
 fi
 
-echo "$as_me:17049: checking if we can set errno" >&5
+echo "$as_me:17237: checking if we can set errno" >&5
 echo $ECHO_N "checking if we can set errno... $ECHO_C" >&6
 if test "${cf_cv_set_errno+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -17054,7 +17242,7 @@ else
 
 if test "$cross_compiling" = yes; then
   cat >conftest.$ac_ext <<_ACEOF
-#line 17057 "configure"
+#line 17245 "configure"
 #include "confdefs.h"
 #include <errno.h>
 int
@@ -17066,16 +17254,16 @@ errno = 255
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:17069: \"$ac_link\"") >&5
+if { (eval echo "$as_me:17257: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:17072: \$? = $ac_status" >&5
+  echo "$as_me:17260: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:17075: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17263: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17078: \$? = $ac_status" >&5
+  echo "$as_me:17266: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_set_errno=maybe
 else
@@ -17086,7 +17274,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 17089 "configure"
+#line 17277 "configure"
 #include "confdefs.h"
 
 #include <errno.h>
@@ -17097,15 +17285,15 @@ int main()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:17100: \"$ac_link\"") >&5
+if { (eval echo "$as_me:17288: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:17103: \$? = $ac_status" >&5
+  echo "$as_me:17291: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:17105: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17293: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17108: \$? = $ac_status" >&5
+  echo "$as_me:17296: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_set_errno=yes
 else
@@ -17118,20 +17306,20 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 
 fi
-echo "$as_me:17121: result: $cf_cv_set_errno" >&5
+echo "$as_me:17309: result: $cf_cv_set_errno" >&5
 echo "${ECHO_T}$cf_cv_set_errno" >&6
 test "$cf_cv_set_errno" != no && cat >>confdefs.h <<\EOF
 #define CAN_SET_ERRNO 1
 EOF
 
-echo "$as_me:17127: checking for setlocale()" >&5
+echo "$as_me:17315: checking for setlocale()" >&5
 echo $ECHO_N "checking for setlocale()... $ECHO_C" >&6
 if test "${cf_cv_locale+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 17134 "configure"
+#line 17322 "configure"
 #include "confdefs.h"
 #include <locale.h>
 int
@@ -17143,16 +17331,16 @@ setlocale(LC_ALL, "")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:17146: \"$ac_link\"") >&5
+if { (eval echo "$as_me:17334: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:17149: \$? = $ac_status" >&5
+  echo "$as_me:17337: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:17152: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17340: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17155: \$? = $ac_status" >&5
+  echo "$as_me:17343: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_locale=yes
 else
@@ -17164,21 +17352,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 
-echo "$as_me:17167: result: $cf_cv_locale" >&5
+echo "$as_me:17355: result: $cf_cv_locale" >&5
 echo "${ECHO_T}$cf_cv_locale" >&6
 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF
 #define LOCALE 1
 EOF
  }
 
-echo "$as_me:17174: checking if NGROUPS is defined" >&5
+echo "$as_me:17362: checking if NGROUPS is defined" >&5
 echo $ECHO_N "checking if NGROUPS is defined... $ECHO_C" >&6
 if test "${cf_cv_ngroups+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 17181 "configure"
+#line 17369 "configure"
 #include "confdefs.h"
 
 #if HAVE_SYS_PARAM_H
@@ -17197,23 +17385,23 @@ int x = NGROUPS
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:17200: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:17388: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:17203: \$? = $ac_status" >&5
+  echo "$as_me:17391: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:17206: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17394: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17209: \$? = $ac_status" >&5
+  echo "$as_me:17397: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ngroups=yes
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 cat >conftest.$ac_ext <<_ACEOF
-#line 17216 "configure"
+#line 17404 "configure"
 #include "confdefs.h"
 
 #if HAVE_SYS_PARAM_H
@@ -17232,16 +17420,16 @@ int x = NGROUPS_MAX
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:17235: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:17423: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:17238: \$? = $ac_status" >&5
+  echo "$as_me:17426: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:17241: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17429: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17244: \$? = $ac_status" >&5
+  echo "$as_me:17432: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ngroups=NGROUPS_MAX
 else
@@ -17253,7 +17441,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
-echo "$as_me:17256: result: $cf_cv_ngroups" >&5
+echo "$as_me:17444: result: $cf_cv_ngroups" >&5
 echo "${ECHO_T}$cf_cv_ngroups" >&6
 
 fi
@@ -17270,14 +17458,14 @@ EOF
 
 fi
 
-echo "$as_me:17273: checking if external sys_nerr is declared" >&5
+echo "$as_me:17461: checking if external sys_nerr is declared" >&5
 echo $ECHO_N "checking if external sys_nerr is declared... $ECHO_C" >&6
 if test "${cf_cv_dcl_sys_nerr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
     cat >conftest.$ac_ext <<_ACEOF
-#line 17280 "configure"
+#line 17468 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_STDLIB_H
@@ -17295,16 +17483,16 @@ long x = (long) sys_nerr
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:17298: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:17486: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:17301: \$? = $ac_status" >&5
+  echo "$as_me:17489: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:17304: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17492: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17307: \$? = $ac_status" >&5
+  echo "$as_me:17495: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_dcl_sys_nerr=yes
 else
@@ -17315,7 +17503,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:17318: result: $cf_cv_dcl_sys_nerr" >&5
+echo "$as_me:17506: result: $cf_cv_dcl_sys_nerr" >&5
 echo "${ECHO_T}$cf_cv_dcl_sys_nerr" >&6
 
 if test "$cf_cv_dcl_sys_nerr" = no ; then
@@ -17330,14 +17518,14 @@ fi
 
 # It's possible (for near-UNIX clones) that the data doesn't exist
 
-echo "$as_me:17333: checking if external sys_nerr exists" >&5
+echo "$as_me:17521: checking if external sys_nerr exists" >&5
 echo $ECHO_N "checking if external sys_nerr exists... $ECHO_C" >&6
 if test "${cf_cv_have_sys_nerr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
     cat >conftest.$ac_ext <<_ACEOF
-#line 17340 "configure"
+#line 17528 "configure"
 #include "confdefs.h"
 
 #undef sys_nerr
@@ -17352,16 +17540,16 @@ sys_nerr = 2
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:17355: \"$ac_link\"") >&5
+if { (eval echo "$as_me:17543: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:17358: \$? = $ac_status" >&5
+  echo "$as_me:17546: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:17361: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17549: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17364: \$? = $ac_status" >&5
+  echo "$as_me:17552: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_sys_nerr=yes
 else
@@ -17372,7 +17560,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:17375: result: $cf_cv_have_sys_nerr" >&5
+echo "$as_me:17563: result: $cf_cv_have_sys_nerr" >&5
 echo "${ECHO_T}$cf_cv_have_sys_nerr" >&6
 
 if test "$cf_cv_have_sys_nerr" = yes ; then
@@ -17385,14 +17573,14 @@ EOF
 
 fi
 
-echo "$as_me:17388: checking if external sys_errlist is declared" >&5
+echo "$as_me:17576: checking if external sys_errlist is declared" >&5
 echo $ECHO_N "checking if external sys_errlist is declared... $ECHO_C" >&6
 if test "${cf_cv_dcl_sys_errlist+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
     cat >conftest.$ac_ext <<_ACEOF
-#line 17395 "configure"
+#line 17583 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_STDLIB_H
@@ -17410,16 +17598,16 @@ long x = (long) sys_errlist
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:17413: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:17601: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:17416: \$? = $ac_status" >&5
+  echo "$as_me:17604: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:17419: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17607: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17422: \$? = $ac_status" >&5
+  echo "$as_me:17610: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_dcl_sys_errlist=yes
 else
@@ -17430,7 +17618,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:17433: result: $cf_cv_dcl_sys_errlist" >&5
+echo "$as_me:17621: result: $cf_cv_dcl_sys_errlist" >&5
 echo "${ECHO_T}$cf_cv_dcl_sys_errlist" >&6
 
 if test "$cf_cv_dcl_sys_errlist" = no ; then
@@ -17445,14 +17633,14 @@ fi
 
 # It's possible (for near-UNIX clones) that the data doesn't exist
 
-echo "$as_me:17448: checking if external sys_errlist exists" >&5
+echo "$as_me:17636: checking if external sys_errlist exists" >&5
 echo $ECHO_N "checking if external sys_errlist exists... $ECHO_C" >&6
 if test "${cf_cv_have_sys_errlist+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
     cat >conftest.$ac_ext <<_ACEOF
-#line 17455 "configure"
+#line 17643 "configure"
 #include "confdefs.h"
 
 #undef sys_errlist
@@ -17467,16 +17655,16 @@ sys_errlist = 2
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:17470: \"$ac_link\"") >&5
+if { (eval echo "$as_me:17658: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:17473: \$? = $ac_status" >&5
+  echo "$as_me:17661: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:17476: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17664: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17479: \$? = $ac_status" >&5
+  echo "$as_me:17667: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_sys_errlist=yes
 else
@@ -17487,7 +17675,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:17490: result: $cf_cv_have_sys_errlist" >&5
+echo "$as_me:17678: result: $cf_cv_have_sys_errlist" >&5
 echo "${ECHO_T}$cf_cv_have_sys_errlist" >&6
 
 if test "$cf_cv_have_sys_errlist" = yes ; then
@@ -17503,23 +17691,23 @@ fi
 for ac_header in lastlog.h paths.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:17506: checking for $ac_header" >&5
+echo "$as_me:17694: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 17512 "configure"
+#line 17700 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:17516: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:17704: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:17522: \$? = $ac_status" >&5
+  echo "$as_me:17710: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -17538,7 +17726,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:17541: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:17729: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -17548,14 +17736,14 @@ EOF
 fi
 done
 
-echo "$as_me:17551: checking for lastlog path" >&5
+echo "$as_me:17739: checking for lastlog path" >&5
 echo $ECHO_N "checking for lastlog path... $ECHO_C" >&6
 if test "${cf_cv_path_lastlog+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 17558 "configure"
+#line 17746 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -17575,16 +17763,16 @@ char *path = _PATH_LASTLOG
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:17578: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:17766: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:17581: \$? = $ac_status" >&5
+  echo "$as_me:17769: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:17584: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17772: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17587: \$? = $ac_status" >&5
+  echo "$as_me:17775: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_path_lastlog="_PATH_LASTLOG"
 else
@@ -17599,13 +17787,13 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:17602: result: $cf_cv_path_lastlog" >&5
+echo "$as_me:17790: result: $cf_cv_path_lastlog" >&5
 echo "${ECHO_T}$cf_cv_path_lastlog" >&6
 test $cf_cv_path_lastlog != no && cat >>confdefs.h <<\EOF
 #define USE_LASTLOG 1
 EOF
 
-echo "$as_me:17608: checking for utmp implementation" >&5
+echo "$as_me:17796: checking for utmp implementation" >&5
 echo $ECHO_N "checking for utmp implementation... $ECHO_C" >&6
 if test "${cf_cv_have_utmp+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -17622,7 +17810,7 @@ cf_utmp_includes="
 #endif
 "
 	cat >conftest.$ac_ext <<_ACEOF
-#line 17625 "configure"
+#line 17813 "configure"
 #include "confdefs.h"
 $cf_utmp_includes
 int
@@ -17636,16 +17824,16 @@ struct $cf_header x;
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:17639: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:17827: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:17642: \$? = $ac_status" >&5
+  echo "$as_me:17830: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:17645: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17833: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17648: \$? = $ac_status" >&5
+  echo "$as_me:17836: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp=$cf_header
 	 break
@@ -17654,7 +17842,7 @@ else
 cat conftest.$ac_ext >&5
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 17657 "configure"
+#line 17845 "configure"
 #include "confdefs.h"
 $cf_utmp_includes
 int
@@ -17668,16 +17856,16 @@ struct $cf_header x;
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:17671: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:17859: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:17674: \$? = $ac_status" >&5
+  echo "$as_me:17862: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:17677: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17865: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17680: \$? = $ac_status" >&5
+  echo "$as_me:17868: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp=$cf_header
 	 break
@@ -17692,7 +17880,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:17695: result: $cf_cv_have_utmp" >&5
+echo "$as_me:17883: result: $cf_cv_have_utmp" >&5
 echo "${ECHO_T}$cf_cv_have_utmp" >&6
 
 if test $cf_cv_have_utmp != no ; then
@@ -17705,14 +17893,14 @@ EOF
 EOF
 
 if test $cf_cv_have_utmp != no ; then
-echo "$as_me:17708: checking if utmp.ut_host is declared" >&5
+echo "$as_me:17896: checking if utmp.ut_host is declared" >&5
 echo $ECHO_N "checking if utmp.ut_host is declared... $ECHO_C" >&6
 if test "${cf_cv_have_utmp_ut_host+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 17715 "configure"
+#line 17903 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -17726,16 +17914,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0]
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:17729: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:17917: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:17732: \$? = $ac_status" >&5
+  echo "$as_me:17920: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:17735: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17923: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17738: \$? = $ac_status" >&5
+  echo "$as_me:17926: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp_ut_host=yes
 else
@@ -17747,7 +17935,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 
-echo "$as_me:17750: result: $cf_cv_have_utmp_ut_host" >&5
+echo "$as_me:17938: result: $cf_cv_have_utmp_ut_host" >&5
 echo "${ECHO_T}$cf_cv_have_utmp_ut_host" >&6
 test $cf_cv_have_utmp_ut_host != no && cat >>confdefs.h <<\EOF
 #define HAVE_UTMP_UT_HOST 1
@@ -17756,7 +17944,7 @@ EOF
 fi
 
 if test $cf_cv_have_utmp != no ; then
-echo "$as_me:17759: checking if utmp.ut_name is declared" >&5
+echo "$as_me:17947: checking if utmp.ut_name is declared" >&5
 echo $ECHO_N "checking if utmp.ut_name is declared... $ECHO_C" >&6
 if test "${cf_cv_have_utmp_ut_name+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -17773,7 +17961,7 @@ cf_utmp_includes="
 "
 for cf_header in ut_name ut_user ; do
 	cat >conftest.$ac_ext <<_ACEOF
-#line 17776 "configure"
+#line 17964 "configure"
 #include "confdefs.h"
 $cf_utmp_includes
 int
@@ -17787,16 +17975,16 @@ struct $cf_cv_have_utmp x;
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:17790: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:17978: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:17793: \$? = $ac_status" >&5
+  echo "$as_me:17981: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:17796: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17984: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17799: \$? = $ac_status" >&5
+  echo "$as_me:17987: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp_ut_name=$cf_header
 	 break
@@ -17808,12 +17996,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:17811: result: $cf_cv_have_utmp_ut_name" >&5
+echo "$as_me:17999: result: $cf_cv_have_utmp_ut_name" >&5
 echo "${ECHO_T}$cf_cv_have_utmp_ut_name" >&6
 
 case $cf_cv_have_utmp_ut_name in #(vi
 no) #(vi
-	{ { echo "$as_me:17816: error: Cannot find declaration for ut.ut_name" >&5
+	{ { echo "$as_me:18004: error: Cannot find declaration for ut.ut_name" >&5
 echo "$as_me: error: Cannot find declaration for ut.ut_name" >&2;}
    { (exit 1); exit 1; }; }
 	;;
@@ -17827,7 +18015,7 @@ esac
 fi
 
 if test $cf_cv_have_utmp != no ; then
-echo "$as_me:17830: checking for exit-status in $cf_cv_have_utmp" >&5
+echo "$as_me:18018: checking for exit-status in $cf_cv_have_utmp" >&5
 echo $ECHO_N "checking for exit-status in $cf_cv_have_utmp... $ECHO_C" >&6
 if test "${cf_cv_have_utmp_ut_xstatus+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -17840,7 +18028,7 @@ for cf_result in \
 	ut_exit.ut_exit
 do
 cat >conftest.$ac_ext <<_ACEOF
-#line 17843 "configure"
+#line 18031 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -17854,16 +18042,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:17857: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:18045: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:17860: \$? = $ac_status" >&5
+  echo "$as_me:18048: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:17863: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18051: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17866: \$? = $ac_status" >&5
+  echo "$as_me:18054: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp_ut_xstatus=$cf_result
 	 break
@@ -17876,7 +18064,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:17879: result: $cf_cv_have_utmp_ut_xstatus" >&5
+echo "$as_me:18067: result: $cf_cv_have_utmp_ut_xstatus" >&5
 echo "${ECHO_T}$cf_cv_have_utmp_ut_xstatus" >&6
 if test $cf_cv_have_utmp_ut_xstatus != no ; then
 	cat >>confdefs.h <<\EOF
@@ -17891,14 +18079,14 @@ fi
 fi
 
 if test $cf_cv_have_utmp != no ; then
-echo "$as_me:17894: checking if utmp.ut_xtime is declared" >&5
+echo "$as_me:18082: checking if utmp.ut_xtime is declared" >&5
 echo $ECHO_N "checking if utmp.ut_xtime is declared... $ECHO_C" >&6
 if test "${cf_cv_have_utmp_ut_xtime+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 17901 "configure"
+#line 18089 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -17912,23 +18100,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:17915: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:18103: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:17918: \$? = $ac_status" >&5
+  echo "$as_me:18106: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:17921: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18109: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17924: \$? = $ac_status" >&5
+  echo "$as_me:18112: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp_ut_xtime=yes
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 cat >conftest.$ac_ext <<_ACEOF
-#line 17931 "configure"
+#line 18119 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -17942,16 +18130,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_tv.tv_sec
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:17945: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:18133: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:17948: \$? = $ac_status" >&5
+  echo "$as_me:18136: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:17951: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18139: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17954: \$? = $ac_status" >&5
+  echo "$as_me:18142: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp_ut_xtime=define
 else
@@ -17965,7 +18153,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:17968: result: $cf_cv_have_utmp_ut_xtime" >&5
+echo "$as_me:18156: result: $cf_cv_have_utmp_ut_xtime" >&5
 echo "${ECHO_T}$cf_cv_have_utmp_ut_xtime" >&6
 if test $cf_cv_have_utmp_ut_xtime != no ; then
 	cat >>confdefs.h <<\EOF
@@ -17982,14 +18170,14 @@ fi
 fi
 
 if test $cf_cv_have_utmp != no ; then
-echo "$as_me:17985: checking if utmp.ut_session is declared" >&5
+echo "$as_me:18173: checking if utmp.ut_session is declared" >&5
 echo $ECHO_N "checking if utmp.ut_session is declared... $ECHO_C" >&6
 if test "${cf_cv_have_utmp_ut_session+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 17992 "configure"
+#line 18180 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -18003,16 +18191,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:18006: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:18194: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:18009: \$? = $ac_status" >&5
+  echo "$as_me:18197: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:18012: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18200: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18015: \$? = $ac_status" >&5
+  echo "$as_me:18203: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp_ut_session=yes
 else
@@ -18023,7 +18211,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:18026: result: $cf_cv_have_utmp_ut_session" >&5
+echo "$as_me:18214: result: $cf_cv_have_utmp_ut_session" >&5
 echo "${ECHO_T}$cf_cv_have_utmp_ut_session" >&6
 if test $cf_cv_have_utmp_ut_session != no ; then
 	cat >>confdefs.h <<\EOF
@@ -18033,7 +18221,7 @@ EOF
 fi
 fi
 
-echo "$as_me:18036: checking if $cf_cv_have_utmp is SYSV flavor" >&5
+echo "$as_me:18224: checking if $cf_cv_have_utmp is SYSV flavor" >&5
 echo $ECHO_N "checking if $cf_cv_have_utmp is SYSV flavor... $ECHO_C" >&6
 if test "${cf_cv_sysv_utmp+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -18041,7 +18229,7 @@ else
 
 test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx"
 cat >conftest.$ac_ext <<_ACEOF
-#line 18044 "configure"
+#line 18232 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -18060,16 +18248,16 @@ struct $cf_cv_have_utmp x;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18063: \"$ac_link\"") >&5
+if { (eval echo "$as_me:18251: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:18066: \$? = $ac_status" >&5
+  echo "$as_me:18254: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:18069: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18257: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18072: \$? = $ac_status" >&5
+  echo "$as_me:18260: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_sysv_utmp=yes
 else
@@ -18080,7 +18268,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:18083: result: $cf_cv_sysv_utmp" >&5
+echo "$as_me:18271: result: $cf_cv_sysv_utmp" >&5
 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6
 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF
 #define USE_SYSV_UTMP 1
@@ -18088,14 +18276,14 @@ EOF
 
 fi
 
-echo "$as_me:18091: checking if external h_errno exists" >&5
+echo "$as_me:18279: checking if external h_errno exists" >&5
 echo $ECHO_N "checking if external h_errno exists... $ECHO_C" >&6
 if test "${cf_cv_have_h_errno+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
     cat >conftest.$ac_ext <<_ACEOF
-#line 18098 "configure"
+#line 18286 "configure"
 #include "confdefs.h"
 
 #undef h_errno
@@ -18110,16 +18298,16 @@ h_errno = 2
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18113: \"$ac_link\"") >&5
+if { (eval echo "$as_me:18301: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:18116: \$? = $ac_status" >&5
+  echo "$as_me:18304: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:18119: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18307: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18122: \$? = $ac_status" >&5
+  echo "$as_me:18310: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_h_errno=yes
 else
@@ -18130,7 +18318,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:18133: result: $cf_cv_have_h_errno" >&5
+echo "$as_me:18321: result: $cf_cv_have_h_errno" >&5
 echo "${ECHO_T}$cf_cv_have_h_errno" >&6
 
 if test "$cf_cv_have_h_errno" = yes ; then
@@ -18143,7 +18331,7 @@ EOF
 
 fi
 
-echo "$as_me:18146: checking if bibp: URLs should be supported" >&5
+echo "$as_me:18334: checking if bibp: URLs should be supported" >&5
 echo $ECHO_N "checking if bibp: URLs should be supported... $ECHO_C" >&6
 
 # Check whether --enable-bibp-urls or --disable-bibp-urls was given.
@@ -18160,13 +18348,13 @@ else
   use_bibp_urls=yes
 
 fi;
-echo "$as_me:18163: result: $use_bibp_urls" >&5
+echo "$as_me:18351: result: $use_bibp_urls" >&5
 echo "${ECHO_T}$use_bibp_urls" >&6
 test $use_bibp_urls = no && cat >>confdefs.h <<\EOF
 #define DISABLE_BIBP 1
 EOF
 
-echo "$as_me:18169: checking if configuration info should be browsable" >&5
+echo "$as_me:18357: checking if configuration info should be browsable" >&5
 echo $ECHO_N "checking if configuration info should be browsable... $ECHO_C" >&6
 
 # Check whether --enable-config-info or --disable-config-info was given.
@@ -18183,13 +18371,13 @@ else
   use_config_info=yes
 
 fi;
-echo "$as_me:18186: result: $use_config_info" >&5
+echo "$as_me:18374: result: $use_config_info" >&5
 echo "${ECHO_T}$use_config_info" >&6
 test $use_config_info = no && cat >>confdefs.h <<\EOF
 #define NO_CONFIG_INFO 1
 EOF
 
-echo "$as_me:18192: checking if new-style forms-based options screen should be used" >&5
+echo "$as_me:18380: checking if new-style forms-based options screen should be used" >&5
 echo $ECHO_N "checking if new-style forms-based options screen should be used... $ECHO_C" >&6
 
 # Check whether --enable-forms-options or --disable-forms-options was given.
@@ -18206,13 +18394,13 @@ else
   use_forms_options=yes
 
 fi;
-echo "$as_me:18209: result: $use_forms_options" >&5
+echo "$as_me:18397: result: $use_forms_options" >&5
 echo "${ECHO_T}$use_forms_options" >&6
 test $use_forms_options = no && cat >>confdefs.h <<\EOF
 #define NO_OPTION_FORMS 1
 EOF
 
-echo "$as_me:18215: checking if old-style options menu should be used" >&5
+echo "$as_me:18403: checking if old-style options menu should be used" >&5
 echo $ECHO_N "checking if old-style options menu should be used... $ECHO_C" >&6
 
 # Check whether --enable-menu-options or --disable-menu-options was given.
@@ -18229,13 +18417,13 @@ else
   use_menu_options=yes
 
 fi;
-echo "$as_me:18232: result: $use_menu_options" >&5
+echo "$as_me:18420: result: $use_menu_options" >&5
 echo "${ECHO_T}$use_menu_options" >&6
 test $use_menu_options = no && cat >>confdefs.h <<\EOF
 #define NO_OPTION_MENU 1
 EOF
 
-echo "$as_me:18238: checking if experimental address-list page should be used" >&5
+echo "$as_me:18426: checking if experimental address-list page should be used" >&5
 echo $ECHO_N "checking if experimental address-list page should be used... $ECHO_C" >&6
 
 # Check whether --enable-addrlist-page or --disable-addrlist-page was given.
@@ -18252,13 +18440,13 @@ else
   use_addrlist_page=no
 
 fi;
-echo "$as_me:18255: result: $use_addrlist_page" >&5
+echo "$as_me:18443: result: $use_addrlist_page" >&5
 echo "${ECHO_T}$use_addrlist_page" >&6
 test $use_addrlist_page != no && cat >>confdefs.h <<\EOF
 #define EXP_ADDRLIST_PAGE 1
 EOF
 
-echo "$as_me:18261: checking if experimental charset-selection logic should be used" >&5
+echo "$as_me:18449: checking if experimental charset-selection logic should be used" >&5
 echo $ECHO_N "checking if experimental charset-selection logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-charset-choice or --disable-charset-choice was given.
@@ -18275,13 +18463,13 @@ else
   use_charset_choice=no
 
 fi;
-echo "$as_me:18278: result: $use_charset_choice" >&5
+echo "$as_me:18466: result: $use_charset_choice" >&5
 echo "${ECHO_T}$use_charset_choice" >&6
 test $use_charset_choice != no && cat >>confdefs.h <<\EOF
 #define EXP_CHARSET_CHOICE 1
 EOF
 
-echo "$as_me:18284: checking if experimental CJK logic should be used" >&5
+echo "$as_me:18472: checking if experimental CJK logic should be used" >&5
 echo $ECHO_N "checking if experimental CJK logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-cjk or --disable-cjk was given.
@@ -18298,13 +18486,13 @@ else
   use_cjk=no
 
 fi;
-echo "$as_me:18301: result: $use_cjk" >&5
+echo "$as_me:18489: result: $use_cjk" >&5
 echo "${ECHO_T}$use_cjk" >&6
 test $use_cjk != no && cat >>confdefs.h <<\EOF
 #define CJK_EX 1
 EOF
 
-echo "$as_me:18307: checking if experimental Japanese UTF-8 logic should be used" >&5
+echo "$as_me:18495: checking if experimental Japanese UTF-8 logic should be used" >&5
 echo $ECHO_N "checking if experimental Japanese UTF-8 logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-japanese-utf8 or --disable-japanese-utf8 was given.
@@ -18321,14 +18509,14 @@ else
   use_ja_utf8=no
 
 fi;
-echo "$as_me:18324: result: $use_ja_utf8" >&5
+echo "$as_me:18512: result: $use_ja_utf8" >&5
 echo "${ECHO_T}$use_ja_utf8" >&6
 if test $use_ja_utf8 != no ; then
 	cat >>confdefs.h <<\EOF
 #define EXP_JAPANESEUTF8_SUPPORT 1
 EOF
 
-echo "$as_me:18331: checking for libiconv_open in -liconv" >&5
+echo "$as_me:18519: checking for libiconv_open in -liconv" >&5
 echo $ECHO_N "checking for libiconv_open in -liconv... $ECHO_C" >&6
 if test "${ac_cv_lib_iconv_libiconv_open+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -18336,7 +18524,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-liconv  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 18339 "configure"
+#line 18527 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -18355,16 +18543,16 @@ libiconv_open ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18358: \"$ac_link\"") >&5
+if { (eval echo "$as_me:18546: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:18361: \$? = $ac_status" >&5
+  echo "$as_me:18549: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:18364: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18552: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18367: \$? = $ac_status" >&5
+  echo "$as_me:18555: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_iconv_libiconv_open=yes
 else
@@ -18375,7 +18563,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:18378: result: $ac_cv_lib_iconv_libiconv_open" >&5
+echo "$as_me:18566: result: $ac_cv_lib_iconv_libiconv_open" >&5
 echo "${ECHO_T}$ac_cv_lib_iconv_libiconv_open" >&6
 if test $ac_cv_lib_iconv_libiconv_open = yes; then
   cat >>confdefs.h <<EOF
@@ -18388,27 +18576,27 @@ fi
 
 fi
 
-echo "$as_me:18391: checking if color-style code should be used" >&5
+echo "$as_me:18579: checking if color-style code should be used" >&5
 echo $ECHO_N "checking if color-style code should be used... $ECHO_C" >&6
 
 # Check whether --enable-color-style or --disable-color-style was given.
 if test "${enable_color_style+set}" = set; then
   enableval="$enable_color_style"
-  test "$enableval" != yes && enableval=no
-  if test "$enableval" != "no" ; then
+  test "$enableval" != no && enableval=yes
+  if test "$enableval" != "yes" ; then
     use_color_style=$enableval
   else
-    use_color_style=no
+    use_color_style=$dft_color_style
   fi
 else
-  enableval=no
-  use_color_style=no
+  enableval=yes
+  use_color_style=$dft_color_style
 
 fi;
 
 case $use_color_style in
 no)
-	echo "$as_me:18411: result: no" >&5
+	echo "$as_me:18599: result: no" >&5
 echo "${ECHO_T}no" >&6
 	INSTALL_LSS=
 	;;
@@ -18417,18 +18605,54 @@ echo "${ECHO_T}no" >&6
 #define USE_COLOR_STYLE 1
 EOF
 
-	echo "$as_me:18420: result: yes" >&5
+	echo "$as_me:18608: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 
-	echo "$as_me:18423: checking for location of style-sheet file" >&5
+	echo "$as_me:18611: checking for location of style-sheet file" >&5
 echo $ECHO_N "checking for location of style-sheet file... $ECHO_C" >&6
-	LYNX_LSS_FILE=$cf_libdir/lynx.lss
+
+# Check whether --with-lss-file or --without-lss-file was given.
+if test "${with_lss_file+set}" = set; then
+  withval="$with_lss_file"
+
+else
+  withval="${LYNX_LSS_FILE-$libdir/lynx.lss}"
+fi;
+case ".$withval" in #(vi
+.\$\(*\)*|.\'*\'*) #(vi
+  ;;
+..|./*|.\\*) #(vi
+  ;;
+.[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
+  ;;
+.\${*prefix}*) #(vi
+  eval withval="$withval"
+  case ".$withval" in #(vi
+  .NONE/*)
+    withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%`
+    ;;
+  esac
+  ;; #(vi
+.no|.NONE/*)
+  withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%`
+  ;;
+*)
+  { { echo "$as_me:18640: error: expected a pathname, not \"$withval\"" >&5
+echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
+   { (exit 1); exit 1; }; }
+  ;;
+esac
+
+LYNX_LSS_FILE="$withval"
+
+	echo "$as_me:18648: result: $LYNX_LSS_FILE" >&5
+echo "${ECHO_T}$LYNX_LSS_FILE" >&6
+
+	test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE=
 	cat >>confdefs.h <<EOF
 #define LYNX_LSS_FILE "$LYNX_LSS_FILE"
 EOF
 
-	echo "$as_me:18430: result: $LYNX_LSS_FILE" >&5
-echo "${ECHO_T}$LYNX_LSS_FILE" >&6
 	INSTALL_LSS=install-lss
 	;;
 esac
@@ -18441,7 +18665,7 @@ curses|slang|ncurses*)
 esac
 
 if test "$use_dft_colors" != no ; then
-echo "$as_me:18444: checking if you want to use default-colors" >&5
+echo "$as_me:18668: checking if you want to use default-colors" >&5
 echo $ECHO_N "checking if you want to use default-colors... $ECHO_C" >&6
 
 # Check whether --enable-default-colors or --disable-default-colors was given.
@@ -18458,7 +18682,7 @@ else
   use_dft_colors=no
 
 fi;
-echo "$as_me:18461: result: $use_dft_colors" >&5
+echo "$as_me:18685: result: $use_dft_colors" >&5
 echo "${ECHO_T}$use_dft_colors" >&6
 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF
 #define USE_DEFAULT_COLORS 1
@@ -18466,7 +18690,7 @@ EOF
 
 fi
 
-echo "$as_me:18469: checking if experimental htmlized lynx.cfg should be built" >&5
+echo "$as_me:18693: checking if experimental htmlized lynx.cfg should be built" >&5
 echo $ECHO_N "checking if experimental htmlized lynx.cfg should be built... $ECHO_C" >&6
 
 # Check whether --enable-htmlized-cfg or --disable-htmlized-cfg was given.
@@ -18483,7 +18707,7 @@ else
   use_exp_htmlized_cfg=no
 
 fi;
-echo "$as_me:18486: result: $use_exp_htmlized_cfg" >&5
+echo "$as_me:18710: result: $use_exp_htmlized_cfg" >&5
 echo "${ECHO_T}$use_exp_htmlized_cfg" >&6
 
 LYNXCFG_MAKE=''
@@ -18494,7 +18718,7 @@ if test $use_exp_htmlized_cfg = no ; then
 fi
 
 ### check for ipv6 support
-echo "$as_me:18497: checking whether to enable ipv6" >&5
+echo "$as_me:18721: checking whether to enable ipv6" >&5
 echo $ECHO_N "checking whether to enable ipv6... $ECHO_C" >&6
 
 # Check whether --enable-ipv6 or --disable-ipv6 was given.
@@ -18510,11 +18734,11 @@ EOF
 else
   enableval=no
 fi;
-echo "$as_me:18513: result: $enableval" >&5
+echo "$as_me:18737: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 if test "$enableval" = "yes"; then
 
-echo "$as_me:18517: checking ipv6 stack type" >&5
+echo "$as_me:18741: checking ipv6 stack type" >&5
 echo $ECHO_N "checking ipv6 stack type... $ECHO_C" >&6
 if test "${cf_cv_ipv6type+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -18535,7 +18759,7 @@ do
 		;;
 	inria) #(vi
 				cat >conftest.$ac_ext <<_ACEOF
-#line 18538 "configure"
+#line 18762 "configure"
 #include "confdefs.h"
 
 #include <netinet/in.h>
@@ -18552,7 +18776,7 @@ rm -f conftest*
 		;;
 	kame) #(vi
 				cat >conftest.$ac_ext <<_ACEOF
-#line 18555 "configure"
+#line 18779 "configure"
 #include "confdefs.h"
 
 #include <netinet/in.h>
@@ -18569,7 +18793,7 @@ rm -f conftest*
 		;;
 	linux-glibc) #(vi
 				cat >conftest.$ac_ext <<_ACEOF
-#line 18572 "configure"
+#line 18796 "configure"
 #include "confdefs.h"
 
 #include <features.h>
@@ -18595,7 +18819,7 @@ rm -f conftest*
 		;;
 	toshiba) #(vi
 		cat >conftest.$ac_ext <<_ACEOF
-#line 18598 "configure"
+#line 18822 "configure"
 #include "confdefs.h"
 
 #include <sys/param.h>
@@ -18612,7 +18836,7 @@ rm -f conftest*
 		;;
 	v6d) #(vi
 		cat >conftest.$ac_ext <<_ACEOF
-#line 18615 "configure"
+#line 18839 "configure"
 #include "confdefs.h"
 
 #include </usr/local/v6/include/sys/v6config.h>
@@ -18629,7 +18853,7 @@ rm -f conftest*
 		;;
 	zeta)
 		cat >conftest.$ac_ext <<_ACEOF
-#line 18632 "configure"
+#line 18856 "configure"
 #include "confdefs.h"
 
 #include <sys/param.h>
@@ -18651,13 +18875,13 @@ rm -f conftest*
 done
 
 fi
-echo "$as_me:18654: result: $cf_cv_ipv6type" >&5
+echo "$as_me:18878: result: $cf_cv_ipv6type" >&5
 echo "${ECHO_T}$cf_cv_ipv6type" >&6
 
 cf_ipv6lib=none
 cf_ipv6dir=none
 
-echo "$as_me:18660: checking for IPv6 library if required" >&5
+echo "$as_me:18884: checking for IPv6 library if required" >&5
 echo $ECHO_N "checking for IPv6 library if required... $ECHO_C" >&6
 case $cf_cv_ipv6type in #(vi
 solaris) #(vi
@@ -18687,13 +18911,13 @@ zeta)
 	cf_ipv6dir=v6
 	;;
 esac
-echo "$as_me:18690: result: $cf_ipv6lib" >&5
+echo "$as_me:18914: result: $cf_ipv6lib" >&5
 echo "${ECHO_T}$cf_ipv6lib" >&6
 
 if test "$cf_ipv6lib" != "none"; then
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 18696 "configure"
+#line 18920 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -18709,16 +18933,16 @@ getaddrinfo(0, 0, 0, 0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18712: \"$ac_link\"") >&5
+if { (eval echo "$as_me:18936: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:18715: \$? = $ac_status" >&5
+  echo "$as_me:18939: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:18718: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18942: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18721: \$? = $ac_status" >&5
+  echo "$as_me:18945: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -18812,13 +19036,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 	eval 'cf_cv_have_lib_'$cf_ipv6lib'=no'
 	cf_libdir=""
-	echo "$as_me:18815: checking for getaddrinfo" >&5
+	echo "$as_me:19039: checking for getaddrinfo" >&5
 echo $ECHO_N "checking for getaddrinfo... $ECHO_C" >&6
 if test "${ac_cv_func_getaddrinfo+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 18821 "configure"
+#line 19045 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char getaddrinfo (); below.  */
@@ -18849,16 +19073,16 @@ f = getaddrinfo;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18852: \"$ac_link\"") >&5
+if { (eval echo "$as_me:19076: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:18855: \$? = $ac_status" >&5
+  echo "$as_me:19079: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:18858: \"$ac_try\"") >&5
+  { (eval echo "$as_me:19082: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18861: \$? = $ac_status" >&5
+  echo "$as_me:19085: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_getaddrinfo=yes
 else
@@ -18868,18 +19092,18 @@ ac_cv_func_getaddrinfo=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:18871: result: $ac_cv_func_getaddrinfo" >&5
+echo "$as_me:19095: result: $ac_cv_func_getaddrinfo" >&5
 echo "${ECHO_T}$ac_cv_func_getaddrinfo" >&6
 if test $ac_cv_func_getaddrinfo = yes; then
   eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:18878: checking for getaddrinfo in -l$cf_ipv6lib" >&5
+		echo "$as_me:19102: checking for getaddrinfo in -l$cf_ipv6lib" >&5
 echo $ECHO_N "checking for getaddrinfo in -l$cf_ipv6lib... $ECHO_C" >&6
 		LIBS="-l$cf_ipv6lib $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 18882 "configure"
+#line 19106 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -18895,25 +19119,25 @@ getaddrinfo(0, 0, 0, 0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18898: \"$ac_link\"") >&5
+if { (eval echo "$as_me:19122: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:18901: \$? = $ac_status" >&5
+  echo "$as_me:19125: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:18904: \"$ac_try\"") >&5
+  { (eval echo "$as_me:19128: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18907: \$? = $ac_status" >&5
+  echo "$as_me:19131: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:18909: result: yes" >&5
+  echo "$as_me:19133: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:18916: result: no" >&5
+echo "$as_me:19140: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -18973,11 +19197,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:18976: checking for -l$cf_ipv6lib in $cf_libdir" >&5
+				echo "$as_me:19200: checking for -l$cf_ipv6lib in $cf_libdir" >&5
 echo $ECHO_N "checking for -l$cf_ipv6lib in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -l$cf_ipv6lib $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 18980 "configure"
+#line 19204 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -18993,25 +19217,25 @@ getaddrinfo(0, 0, 0, 0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18996: \"$ac_link\"") >&5
+if { (eval echo "$as_me:19220: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:18999: \$? = $ac_status" >&5
+  echo "$as_me:19223: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:19002: \"$ac_try\"") >&5
+  { (eval echo "$as_me:19226: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:19005: \$? = $ac_status" >&5
+  echo "$as_me:19229: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:19007: result: yes" >&5
+  echo "$as_me:19231: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:19014: result: no" >&5
+echo "$as_me:19238: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -19026,7 +19250,7 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib
 
 	if test $cf_found_library = no ; then
-		{ { echo "$as_me:19029: error: No $cf_ipv6lib library found, cannot continue.  You must fetch lib$cf_ipv6lib.a
+		{ { echo "$as_me:19253: error: No $cf_ipv6lib library found, cannot continue.  You must fetch lib$cf_ipv6lib.a
 from an appropriate IPv6 kit and compile beforehand." >&5
 echo "$as_me: error: No $cf_ipv6lib library found, cannot continue.  You must fetch lib$cf_ipv6lib.a
 from an appropriate IPv6 kit and compile beforehand." >&2;}
@@ -19034,7 +19258,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;}
 	fi
 fi
 
-echo "$as_me:19037: checking working getaddrinfo" >&5
+echo "$as_me:19261: checking working getaddrinfo" >&5
 echo $ECHO_N "checking working getaddrinfo... $ECHO_C" >&6
 if test "${cf_cv_getaddrinfo+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -19044,7 +19268,7 @@ if test "$cross_compiling" = yes; then
   cf_cv_getaddrinfo=unknown
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 19047 "configure"
+#line 19271 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -19124,15 +19348,15 @@ int main()
 
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:19127: \"$ac_link\"") >&5
+if { (eval echo "$as_me:19351: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:19130: \$? = $ac_status" >&5
+  echo "$as_me:19354: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:19132: \"$ac_try\"") >&5
+  { (eval echo "$as_me:19356: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:19135: \$? = $ac_status" >&5
+  echo "$as_me:19359: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_getaddrinfo=yes
 else
@@ -19145,7 +19369,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 
 fi
-echo "$as_me:19148: result: $cf_cv_getaddrinfo" >&5
+echo "$as_me:19372: result: $cf_cv_getaddrinfo" >&5
 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6
 if test "$cf_cv_getaddrinfo" = yes ; then
 	cat >>confdefs.h <<\EOF
@@ -19160,12 +19384,12 @@ fi
 
 if test "$cf_cv_getaddrinfo" != "yes"; then
 	if test "$cf_cv_ipv6type" != "linux"; then
-		{ echo "$as_me:19163: WARNING: You must get working getaddrinfo() function,
+		{ echo "$as_me:19387: WARNING: You must get working getaddrinfo() function,
 or you can specify \"--disable-ipv6\"" >&5
 echo "$as_me: WARNING: You must get working getaddrinfo() function,
 or you can specify \"--disable-ipv6\"" >&2;}
 	else
-		{ echo "$as_me:19168: WARNING: The getaddrinfo() implementation on your system seems be buggy.
+		{ echo "$as_me:19392: WARNING: The getaddrinfo() implementation on your system seems be buggy.
 You should upgrade your system library to the newest version
 of GNU C library (aka glibc)." >&5
 echo "$as_me: WARNING: The getaddrinfo() implementation on your system seems be buggy.
@@ -19176,7 +19400,7 @@ fi
 
 fi
 
-echo "$as_me:19179: checking if experimental keyboard-layout logic should be used" >&5
+echo "$as_me:19403: checking if experimental keyboard-layout logic should be used" >&5
 echo $ECHO_N "checking if experimental keyboard-layout logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-kbd-layout or --disable-kbd-layout was given.
@@ -19193,13 +19417,13 @@ else
   use_kbd_layout=no
 
 fi;
-echo "$as_me:19196: result: $use_kbd_layout" >&5
+echo "$as_me:19420: result: $use_kbd_layout" >&5
 echo "${ECHO_T}$use_kbd_layout" >&6
 test $use_kbd_layout != no && cat >>confdefs.h <<\EOF
 #define EXP_KEYBOARD_LAYOUT 1
 EOF
 
-echo "$as_me:19202: checking if experimental locale-charset selection logic should be used" >&5
+echo "$as_me:19426: checking if experimental locale-charset selection logic should be used" >&5
 echo $ECHO_N "checking if experimental locale-charset selection logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-locale-charset or --disable-locale-charset was given.
@@ -19216,13 +19440,13 @@ else
   use_locale_charset=yes
 
 fi;
-echo "$as_me:19219: result: $use_locale_charset" >&5
+echo "$as_me:19443: result: $use_locale_charset" >&5
 echo "${ECHO_T}$use_locale_charset" >&6
 test $use_locale_charset != no && cat >>confdefs.h <<\EOF
 #define EXP_LOCALE_CHARSET 1
 EOF
 
-echo "$as_me:19225: checking if experimental nested-table logic should be used" >&5
+echo "$as_me:19449: checking if experimental nested-table logic should be used" >&5
 echo $ECHO_N "checking if experimental nested-table logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-nested-tables or --disable-nested-tables was given.
@@ -19239,13 +19463,13 @@ else
   use_nested_tables=no
 
 fi;
-echo "$as_me:19242: result: $use_nested_tables" >&5
+echo "$as_me:19466: result: $use_nested_tables" >&5
 echo "${ECHO_T}$use_nested_tables" >&6
 test $use_nested_tables != no && cat >>confdefs.h <<\EOF
 #define EXP_NESTED_TABLES 1
 EOF
 
-echo "$as_me:19248: checking if scrollbar code should be used" >&5
+echo "$as_me:19472: checking if scrollbar code should be used" >&5
 echo $ECHO_N "checking if scrollbar code should be used... $ECHO_C" >&6
 
 # Check whether --enable-scrollbar or --disable-scrollbar was given.
@@ -19262,10 +19486,10 @@ else
   use_scrollbar=no
 
 fi;
-echo "$as_me:19265: result: $use_scrollbar" >&5
+echo "$as_me:19489: result: $use_scrollbar" >&5
 echo "${ECHO_T}$use_scrollbar" >&6
 
-echo "$as_me:19268: checking if alternative line-edit bindings should be used" >&5
+echo "$as_me:19492: checking if alternative line-edit bindings should be used" >&5
 echo $ECHO_N "checking if alternative line-edit bindings should be used... $ECHO_C" >&6
 
 # Check whether --enable-alt-bindings or --disable-alt-bindings was given.
@@ -19282,13 +19506,13 @@ else
   use_alt_bindings=yes
 
 fi;
-echo "$as_me:19285: result: $use_alt_bindings" >&5
+echo "$as_me:19509: result: $use_alt_bindings" >&5
 echo "${ECHO_T}$use_alt_bindings" >&6
 test $use_alt_bindings != no && cat >>confdefs.h <<\EOF
 #define EXP_ALT_BINDINGS 1
 EOF
 
-echo "$as_me:19291: checking if you want to use extended HTML DTD logic" >&5
+echo "$as_me:19515: checking if you want to use extended HTML DTD logic" >&5
 echo $ECHO_N "checking if you want to use extended HTML DTD logic... $ECHO_C" >&6
 
 # Check whether --enable-extended-dtd or --disable-extended-dtd was given.
@@ -19305,13 +19529,13 @@ else
   use_ext_htmldtd=yes
 
 fi;
-echo "$as_me:19308: result: $use_ext_htmldtd" >&5
+echo "$as_me:19532: result: $use_ext_htmldtd" >&5
 echo "${ECHO_T}$use_ext_htmldtd" >&6
 test $use_ext_htmldtd = "no" && cat >>confdefs.h <<\EOF
 #define NO_EXTENDED_HTMLDTD 1
 EOF
 
-echo "$as_me:19314: checking if file-upload logic should be used" >&5
+echo "$as_me:19538: checking if file-upload logic should be used" >&5
 echo $ECHO_N "checking if file-upload logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-file-upload or --disable-file-upload was given.
@@ -19328,13 +19552,13 @@ else
   use_file_upload=yes
 
 fi;
-echo "$as_me:19331: result: $use_file_upload" >&5
+echo "$as_me:19555: result: $use_file_upload" >&5
 echo "${ECHO_T}$use_file_upload" >&6
 test $use_file_upload != no && cat >>confdefs.h <<\EOF
 #define USE_FILE_UPLOAD 1
 EOF
 
-echo "$as_me:19337: checking if element-justification logic should be used" >&5
+echo "$as_me:19561: checking if element-justification logic should be used" >&5
 echo $ECHO_N "checking if element-justification logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-justify-elts or --disable-justify-elts was given.
@@ -19351,13 +19575,13 @@ else
   use_justify_elts=yes
 
 fi;
-echo "$as_me:19354: result: $use_justify_elts" >&5
+echo "$as_me:19578: result: $use_justify_elts" >&5
 echo "${ECHO_T}$use_justify_elts" >&6
 test $use_justify_elts != no && cat >>confdefs.h <<\EOF
 #define EXP_JUSTIFY_ELTS 1
 EOF
 
-echo "$as_me:19360: checking if partial-display should be used" >&5
+echo "$as_me:19584: checking if partial-display should be used" >&5
 echo $ECHO_N "checking if partial-display should be used... $ECHO_C" >&6
 
 # Check whether --enable-partial or --disable-partial was given.
@@ -19374,13 +19598,13 @@ else
   use_partial_display=yes
 
 fi;
-echo "$as_me:19377: result: $use_partial_display" >&5
+echo "$as_me:19601: result: $use_partial_display" >&5
 echo "${ECHO_T}$use_partial_display" >&6
 test $use_partial_display != no && cat >>confdefs.h <<\EOF
 #define DISP_PARTIAL 1
 EOF
 
-echo "$as_me:19383: checking if persistent-cookie logic should be used" >&5
+echo "$as_me:19607: checking if persistent-cookie logic should be used" >&5
 echo $ECHO_N "checking if persistent-cookie logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-persistent-cookies or --disable-persistent-cookies was given.
@@ -19397,13 +19621,13 @@ else
   use_filed_cookies=yes
 
 fi;
-echo "$as_me:19400: result: $use_filed_cookies" >&5
+echo "$as_me:19624: result: $use_filed_cookies" >&5
 echo "${ECHO_T}$use_filed_cookies" >&6
 test $use_filed_cookies != no && cat >>confdefs.h <<\EOF
 #define USE_PERSISTENT_COOKIES 1
 EOF
 
-echo "$as_me:19406: checking if html source should be colorized" >&5
+echo "$as_me:19630: checking if html source should be colorized" >&5
 echo $ECHO_N "checking if html source should be colorized... $ECHO_C" >&6
 
 # Check whether --enable-prettysrc or --disable-prettysrc was given.
@@ -19420,13 +19644,13 @@ else
   use_prettysrc=yes
 
 fi;
-echo "$as_me:19423: result: $use_prettysrc" >&5
+echo "$as_me:19647: result: $use_prettysrc" >&5
 echo "${ECHO_T}$use_prettysrc" >&6
 test $use_prettysrc != no && cat >>confdefs.h <<\EOF
 #define USE_PRETTYSRC 1
 EOF
 
-echo "$as_me:19429: checking if read-progress message should show ETA" >&5
+echo "$as_me:19653: checking if read-progress message should show ETA" >&5
 echo $ECHO_N "checking if read-progress message should show ETA... $ECHO_C" >&6
 
 # Check whether --enable-read-eta or --disable-read-eta was given.
@@ -19443,13 +19667,13 @@ else
   use_read_eta=yes
 
 fi;
-echo "$as_me:19446: result: $use_read_eta" >&5
+echo "$as_me:19670: result: $use_read_eta" >&5
 echo "${ECHO_T}$use_read_eta" >&6
 test $use_read_eta != no && cat >>confdefs.h <<\EOF
 #define USE_READPROGRESS 1
 EOF
 
-echo "$as_me:19452: checking if source caching should be used" >&5
+echo "$as_me:19676: checking if source caching should be used" >&5
 echo $ECHO_N "checking if source caching should be used... $ECHO_C" >&6
 
 # Check whether --enable-source-cache or --disable-source-cache was given.
@@ -19466,13 +19690,13 @@ else
   use_source_cache=yes
 
 fi;
-echo "$as_me:19469: result: $use_source_cache" >&5
+echo "$as_me:19693: result: $use_source_cache" >&5
 echo "${ECHO_T}$use_source_cache" >&6
 test $use_source_cache != no && cat >>confdefs.h <<\EOF
 #define USE_SOURCE_CACHE 1
 EOF
 
-echo "$as_me:19475: checking if you want to use external commands" >&5
+echo "$as_me:19699: checking if you want to use external commands" >&5
 echo $ECHO_N "checking if you want to use external commands... $ECHO_C" >&6
 
 # Check whether --enable-externs or --disable-externs was given.
@@ -19489,17 +19713,17 @@ else
   use_externs=no
 
 fi;
-echo "$as_me:19492: result: $use_externs" >&5
+echo "$as_me:19716: result: $use_externs" >&5
 echo "${ECHO_T}$use_externs" >&6
 if test $use_externs != "no" ; then
 	cat >>confdefs.h <<\EOF
 #define USE_EXTERNALS 1
 EOF
 
-	LIBOBJS="$LIBOBJS LYExtern\$o"
+	EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o"
 fi
 
-echo "$as_me:19502: checking if you want to use setfont support" >&5
+echo "$as_me:19726: checking if you want to use setfont support" >&5
 echo $ECHO_N "checking if you want to use setfont support... $ECHO_C" >&6
 
 # Check whether --enable-font-switch or --disable-font-switch was given.
@@ -19516,7 +19740,7 @@ else
   use_setfont=no
 
 fi;
-echo "$as_me:19519: result: $use_setfont" >&5
+echo "$as_me:19743: result: $use_setfont" >&5
 echo "${ECHO_T}$use_setfont" >&6
 if test $use_setfont = yes ; then
 	case $host_os in
@@ -19527,7 +19751,7 @@ for ac_prog in $SETFONT consolechars setfont
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:19530: checking for $ac_word" >&5
+echo "$as_me:19754: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_SETFONT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -19544,7 +19768,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_SETFONT="$ac_dir/$ac_word"
-   echo "$as_me:19547: found $ac_dir/$ac_word" >&5
+   echo "$as_me:19771: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -19555,10 +19779,10 @@ fi
 SETFONT=$ac_cv_path_SETFONT
 
 if test -n "$SETFONT"; then
-  echo "$as_me:19558: result: $SETFONT" >&5
+  echo "$as_me:19782: result: $SETFONT" >&5
 echo "${ECHO_T}$SETFONT" >&6
 else
-  echo "$as_me:19561: result: no" >&5
+  echo "$as_me:19785: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -19620,7 +19844,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 19623) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 19847) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define SETFONT_PATH "$cf_path_prog"
@@ -19645,12 +19869,12 @@ fi
 EOF
 
 	else
-		{ echo "$as_me:19648: WARNING: Cannot find a font-setting program" >&5
+		{ echo "$as_me:19872: WARNING: Cannot find a font-setting program" >&5
 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;}
 	fi
 fi
 
-echo "$as_me:19653: checking if you want cgi-link support" >&5
+echo "$as_me:19877: checking if you want cgi-link support" >&5
 echo $ECHO_N "checking if you want cgi-link support... $ECHO_C" >&6
 
 # Check whether --enable-cgi-links or --disable-cgi-links was given.
@@ -19666,10 +19890,10 @@ EOF
 else
   enableval=no
 fi;
-echo "$as_me:19669: result: $enableval" >&5
+echo "$as_me:19893: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-echo "$as_me:19672: checking if you want change-exec support" >&5
+echo "$as_me:19896: checking if you want change-exec support" >&5
 echo $ECHO_N "checking if you want change-exec support... $ECHO_C" >&6
 
 # Check whether --enable-change-exec or --disable-change-exec was given.
@@ -19686,13 +19910,13 @@ else
   use_change_exec=no
 
 fi;
-echo "$as_me:19689: result: $use_change_exec" >&5
+echo "$as_me:19913: result: $use_change_exec" >&5
 echo "${ECHO_T}$use_change_exec" >&6
 test $use_change_exec = yes && cat >>confdefs.h <<\EOF
 #define ENABLE_OPTS_CHANGE_EXEC 1
 EOF
 
-echo "$as_me:19695: checking if you want exec-links support" >&5
+echo "$as_me:19919: checking if you want exec-links support" >&5
 echo $ECHO_N "checking if you want exec-links support... $ECHO_C" >&6
 
 # Check whether --enable-exec-links or --disable-exec-links was given.
@@ -19709,13 +19933,13 @@ else
   use_exec_links=$enableval
 
 fi;
-echo "$as_me:19712: result: $use_exec_links" >&5
+echo "$as_me:19936: result: $use_exec_links" >&5
 echo "${ECHO_T}$use_exec_links" >&6
 test $use_exec_links = yes && cat >>confdefs.h <<\EOF
 #define EXEC_LINKS 1
 EOF
 
-echo "$as_me:19718: checking if you want exec-scripts support" >&5
+echo "$as_me:19942: checking if you want exec-scripts support" >&5
 echo $ECHO_N "checking if you want exec-scripts support... $ECHO_C" >&6
 
 # Check whether --enable-exec-scripts or --disable-exec-scripts was given.
@@ -19732,13 +19956,13 @@ else
   use_exec_scripts=$enableval
 
 fi;
-echo "$as_me:19735: result: $use_exec_scripts" >&5
+echo "$as_me:19959: result: $use_exec_scripts" >&5
 echo "${ECHO_T}$use_exec_scripts" >&6
 test $use_exec_scripts = yes && cat >>confdefs.h <<\EOF
 #define EXEC_SCRIPTS 1
 EOF
 
-echo "$as_me:19741: checking if you want internal-links feature" >&5
+echo "$as_me:19965: checking if you want internal-links feature" >&5
 echo $ECHO_N "checking if you want internal-links feature... $ECHO_C" >&6
 
 # Check whether --enable-internal-links or --disable-internal-links was given.
@@ -19755,13 +19979,13 @@ else
   use_internal_links=no
 
 fi;
-echo "$as_me:19758: result: $use_internal_links" >&5
+echo "$as_me:19982: result: $use_internal_links" >&5
 echo "${ECHO_T}$use_internal_links" >&6
 test $use_internal_links = no && cat >>confdefs.h <<\EOF
 #define DONT_TRACK_INTERNAL_LINKS 1
 EOF
 
-echo "$as_me:19764: checking if you want to fork NSL requests" >&5
+echo "$as_me:19988: checking if you want to fork NSL requests" >&5
 echo $ECHO_N "checking if you want to fork NSL requests... $ECHO_C" >&6
 
 # Check whether --enable-nsl-fork or --disable-nsl-fork was given.
@@ -19778,13 +20002,13 @@ else
   use_nsl_fork=no
 
 fi;
-echo "$as_me:19781: result: $use_nsl_fork" >&5
+echo "$as_me:20005: result: $use_nsl_fork" >&5
 echo "${ECHO_T}$use_nsl_fork" >&6
 test $use_nsl_fork = yes && cat >>confdefs.h <<\EOF
 #define NSL_FORK 1
 EOF
 
-echo "$as_me:19787: checking if you want to log URL requests via syslog" >&5
+echo "$as_me:20011: checking if you want to log URL requests via syslog" >&5
 echo $ECHO_N "checking if you want to log URL requests via syslog... $ECHO_C" >&6
 
 # Check whether --enable-syslog or --disable-syslog was given.
@@ -19801,13 +20025,13 @@ else
   use_syslog=no
 
 fi;
-echo "$as_me:19804: result: $use_syslog" >&5
+echo "$as_me:20028: result: $use_syslog" >&5
 echo "${ECHO_T}$use_syslog" >&6
 test $use_syslog = yes && cat >>confdefs.h <<\EOF
 #define SYSLOG_REQUESTED_URLS 1
 EOF
 
-echo "$as_me:19810: checking if you want to underline links" >&5
+echo "$as_me:20034: checking if you want to underline links" >&5
 echo $ECHO_N "checking if you want to underline links... $ECHO_C" >&6
 
 # Check whether --enable-underlines or --disable-underlines was given.
@@ -19824,7 +20048,7 @@ else
   use_underline=no
 
 fi;
-echo "$as_me:19827: result: $use_underline" >&5
+echo "$as_me:20051: result: $use_underline" >&5
 echo "${ECHO_T}$use_underline" >&6
 test $use_underline = yes && cat >>confdefs.h <<\EOF
 #define UNDERLINE_LINKS 1
@@ -19834,7 +20058,7 @@ test $use_underline = no  && cat >>confdefs.h <<\EOF
 #define UNDERLINE_LINKS 0
 EOF
 
-echo "$as_me:19837: checking if help files should be gzip'ed" >&5
+echo "$as_me:20061: checking if help files should be gzip'ed" >&5
 echo $ECHO_N "checking if help files should be gzip'ed... $ECHO_C" >&6
 
 # Check whether --enable-gzip-help or --disable-gzip-help was given.
@@ -19851,10 +20075,10 @@ else
   use_gzip_help=no
 
 fi;
-echo "$as_me:19854: result: $use_gzip_help" >&5
+echo "$as_me:20078: result: $use_gzip_help" >&5
 echo "${ECHO_T}$use_gzip_help" >&6
 
-echo "$as_me:19857: checking if you want to use libbz2 for decompression of some bzip2 files" >&5
+echo "$as_me:20081: checking if you want to use libbz2 for decompression of some bzip2 files" >&5
 echo $ECHO_N "checking if you want to use libbz2 for decompression of some bzip2 files... $ECHO_C" >&6
 
 # Check whether --with-bzlib or --without-bzlib was given.
@@ -19864,15 +20088,15 @@ if test "${with_bzlib+set}" = set; then
 else
   use_bzlib=no
 fi;
-echo "$as_me:19867: result: $use_bzlib" >&5
+echo "$as_me:20091: result: $use_bzlib" >&5
 echo "${ECHO_T}$use_bzlib" >&6
 
 if test ".$use_bzlib" != ".no" ; then
 
-echo "$as_me:19872: checking if we need to add -I option to get bzlib.h" >&5
+echo "$as_me:20096: checking if we need to add -I option to get bzlib.h" >&5
 echo $ECHO_N "checking if we need to add -I option to get bzlib.h... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 19875 "configure"
+#line 20099 "configure"
 #include "confdefs.h"
 #include <zlib.h>
 int
@@ -19884,24 +20108,24 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:19887: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:20111: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:19890: \$? = $ac_status" >&5
+  echo "$as_me:20114: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:19893: \"$ac_try\"") >&5
+  { (eval echo "$as_me:20117: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:19896: \$? = $ac_status" >&5
+  echo "$as_me:20120: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:19898: result: no" >&5
+  echo "$as_me:20122: result: no" >&5
 echo "${ECHO_T}no" >&6
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 
-echo "$as_me:19904: result: yes" >&5
+echo "$as_me:20128: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 cf_search=""
 
@@ -20058,13 +20282,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 	eval 'cf_cv_have_lib_'bz2'=no'
 	cf_libdir=""
-	echo "$as_me:20061: checking for BZ2_bzopen" >&5
+	echo "$as_me:20285: checking for BZ2_bzopen" >&5
 echo $ECHO_N "checking for BZ2_bzopen... $ECHO_C" >&6
 if test "${ac_cv_func_BZ2_bzopen+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 20067 "configure"
+#line 20291 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char BZ2_bzopen (); below.  */
@@ -20095,16 +20319,16 @@ f = BZ2_bzopen;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:20098: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20322: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:20101: \$? = $ac_status" >&5
+  echo "$as_me:20325: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:20104: \"$ac_try\"") >&5
+  { (eval echo "$as_me:20328: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:20107: \$? = $ac_status" >&5
+  echo "$as_me:20331: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_BZ2_bzopen=yes
 else
@@ -20114,18 +20338,18 @@ ac_cv_func_BZ2_bzopen=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:20117: result: $ac_cv_func_BZ2_bzopen" >&5
+echo "$as_me:20341: result: $ac_cv_func_BZ2_bzopen" >&5
 echo "${ECHO_T}$ac_cv_func_BZ2_bzopen" >&6
 if test $ac_cv_func_BZ2_bzopen = yes; then
   eval 'cf_cv_have_lib_'bz2'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:20124: checking for BZ2_bzopen in -lbz2" >&5
+		echo "$as_me:20348: checking for BZ2_bzopen in -lbz2" >&5
 echo $ECHO_N "checking for BZ2_bzopen in -lbz2... $ECHO_C" >&6
 		LIBS="-lbz2 $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 20128 "configure"
+#line 20352 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -20139,25 +20363,25 @@ BZ2_bzopen("name","mode")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:20142: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20366: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:20145: \$? = $ac_status" >&5
+  echo "$as_me:20369: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:20148: \"$ac_try\"") >&5
+  { (eval echo "$as_me:20372: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:20151: \$? = $ac_status" >&5
+  echo "$as_me:20375: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:20153: result: yes" >&5
+  echo "$as_me:20377: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'bz2'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:20160: result: no" >&5
+echo "$as_me:20384: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -20217,11 +20441,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:20220: checking for -lbz2 in $cf_libdir" >&5
+				echo "$as_me:20444: checking for -lbz2 in $cf_libdir" >&5
 echo $ECHO_N "checking for -lbz2 in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -lbz2 $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 20224 "configure"
+#line 20448 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -20235,25 +20459,25 @@ BZ2_bzopen("name","mode")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:20238: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20462: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:20241: \$? = $ac_status" >&5
+  echo "$as_me:20465: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:20244: \"$ac_try\"") >&5
+  { (eval echo "$as_me:20468: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:20247: \$? = $ac_status" >&5
+  echo "$as_me:20471: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:20249: result: yes" >&5
+  echo "$as_me:20473: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'bz2'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:20256: result: no" >&5
+echo "$as_me:20480: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -20268,7 +20492,7 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'bz2
 
 if test $cf_found_library = no ; then
-	{ { echo "$as_me:20271: error: Cannot link bz2 library" >&5
+	{ { echo "$as_me:20495: error: Cannot link bz2 library" >&5
 echo "$as_me: error: Cannot link bz2 library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -20279,7 +20503,7 @@ EOF
 
 fi
 
-echo "$as_me:20282: checking if you want to use zlib for decompression of some gzip files" >&5
+echo "$as_me:20506: checking if you want to use zlib for decompression of some gzip files" >&5
 echo $ECHO_N "checking if you want to use zlib for decompression of some gzip files... $ECHO_C" >&6
 
 # Check whether --with-zlib or --without-zlib was given.
@@ -20289,15 +20513,15 @@ if test "${with_zlib+set}" = set; then
 else
   use_zlib=no
 fi;
-echo "$as_me:20292: result: $use_zlib" >&5
+echo "$as_me:20516: result: $use_zlib" >&5
 echo "${ECHO_T}$use_zlib" >&6
 
 if test ".$use_zlib" != ".no" ; then
 
-echo "$as_me:20297: checking if we need to add -I option to get zlib.h" >&5
+echo "$as_me:20521: checking if we need to add -I option to get zlib.h" >&5
 echo $ECHO_N "checking if we need to add -I option to get zlib.h... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 20300 "configure"
+#line 20524 "configure"
 #include "confdefs.h"
 #include <zlib.h>
 int
@@ -20309,24 +20533,24 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:20312: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:20536: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:20315: \$? = $ac_status" >&5
+  echo "$as_me:20539: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:20318: \"$ac_try\"") >&5
+  { (eval echo "$as_me:20542: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:20321: \$? = $ac_status" >&5
+  echo "$as_me:20545: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:20323: result: no" >&5
+  echo "$as_me:20547: result: no" >&5
 echo "${ECHO_T}no" >&6
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 
-echo "$as_me:20329: result: yes" >&5
+echo "$as_me:20553: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 cf_search=""
 
@@ -20483,13 +20707,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 	eval 'cf_cv_have_lib_'z'=no'
 	cf_libdir=""
-	echo "$as_me:20486: checking for gzopen" >&5
+	echo "$as_me:20710: checking for gzopen" >&5
 echo $ECHO_N "checking for gzopen... $ECHO_C" >&6
 if test "${ac_cv_func_gzopen+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 20492 "configure"
+#line 20716 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char gzopen (); below.  */
@@ -20520,16 +20744,16 @@ f = gzopen;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:20523: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20747: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:20526: \$? = $ac_status" >&5
+  echo "$as_me:20750: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:20529: \"$ac_try\"") >&5
+  { (eval echo "$as_me:20753: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:20532: \$? = $ac_status" >&5
+  echo "$as_me:20756: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_gzopen=yes
 else
@@ -20539,18 +20763,18 @@ ac_cv_func_gzopen=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:20542: result: $ac_cv_func_gzopen" >&5
+echo "$as_me:20766: result: $ac_cv_func_gzopen" >&5
 echo "${ECHO_T}$ac_cv_func_gzopen" >&6
 if test $ac_cv_func_gzopen = yes; then
   eval 'cf_cv_have_lib_'z'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:20549: checking for gzopen in -lz" >&5
+		echo "$as_me:20773: checking for gzopen in -lz" >&5
 echo $ECHO_N "checking for gzopen in -lz... $ECHO_C" >&6
 		LIBS="-lz $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 20553 "configure"
+#line 20777 "configure"
 #include "confdefs.h"
 #include <zlib.h>
 int
@@ -20562,25 +20786,25 @@ gzopen("name","mode")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:20565: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20789: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:20568: \$? = $ac_status" >&5
+  echo "$as_me:20792: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:20571: \"$ac_try\"") >&5
+  { (eval echo "$as_me:20795: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:20574: \$? = $ac_status" >&5
+  echo "$as_me:20798: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:20576: result: yes" >&5
+  echo "$as_me:20800: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'z'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:20583: result: no" >&5
+echo "$as_me:20807: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -20640,11 +20864,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:20643: checking for -lz in $cf_libdir" >&5
+				echo "$as_me:20867: checking for -lz in $cf_libdir" >&5
 echo $ECHO_N "checking for -lz in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -lz $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 20647 "configure"
+#line 20871 "configure"
 #include "confdefs.h"
 #include <zlib.h>
 int
@@ -20656,25 +20880,25 @@ gzopen("name","mode")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:20659: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20883: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:20662: \$? = $ac_status" >&5
+  echo "$as_me:20886: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:20665: \"$ac_try\"") >&5
+  { (eval echo "$as_me:20889: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:20668: \$? = $ac_status" >&5
+  echo "$as_me:20892: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:20670: result: yes" >&5
+  echo "$as_me:20894: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'z'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:20677: result: no" >&5
+echo "$as_me:20901: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -20689,7 +20913,7 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'z
 
 if test $cf_found_library = no ; then
-	{ { echo "$as_me:20692: error: Cannot link z library" >&5
+	{ { echo "$as_me:20916: error: Cannot link z library" >&5
 echo "$as_me: error: Cannot link z library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -20700,7 +20924,7 @@ EOF
 
 fi
 
-echo "$as_me:20703: checking if you want to exclude FINGER code" >&5
+echo "$as_me:20927: checking if you want to exclude FINGER code" >&5
 echo $ECHO_N "checking if you want to exclude FINGER code... $ECHO_C" >&6
 
 # Check whether --enable-finger or --disable-finger was given.
@@ -20717,13 +20941,13 @@ else
   use_finger=no
 
 fi;
-echo "$as_me:20720: result: $use_finger" >&5
+echo "$as_me:20944: result: $use_finger" >&5
 echo "${ECHO_T}$use_finger" >&6
 test $use_finger != "no" && cat >>confdefs.h <<\EOF
 #define DISABLE_FINGER 1
 EOF
 
-echo "$as_me:20726: checking if you want to exclude GOPHER code" >&5
+echo "$as_me:20950: checking if you want to exclude GOPHER code" >&5
 echo $ECHO_N "checking if you want to exclude GOPHER code... $ECHO_C" >&6
 
 # Check whether --enable-gopher or --disable-gopher was given.
@@ -20740,13 +20964,13 @@ else
   use_gopher=no
 
 fi;
-echo "$as_me:20743: result: $use_gopher" >&5
+echo "$as_me:20967: result: $use_gopher" >&5
 echo "${ECHO_T}$use_gopher" >&6
 test $use_gopher != "no" && cat >>confdefs.h <<\EOF
 #define DISABLE_GOPHER 1
 EOF
 
-echo "$as_me:20749: checking if you want to exclude NEWS code" >&5
+echo "$as_me:20973: checking if you want to exclude NEWS code" >&5
 echo $ECHO_N "checking if you want to exclude NEWS code... $ECHO_C" >&6
 
 # Check whether --enable-news or --disable-news was given.
@@ -20763,13 +20987,13 @@ else
   use_news=no
 
 fi;
-echo "$as_me:20766: result: $use_news" >&5
+echo "$as_me:20990: result: $use_news" >&5
 echo "${ECHO_T}$use_news" >&6
 test $use_news != "no" && cat >>confdefs.h <<\EOF
 #define DISABLE_NEWS 1
 EOF
 
-echo "$as_me:20772: checking if you want to exclude FTP code" >&5
+echo "$as_me:20996: checking if you want to exclude FTP code" >&5
 echo $ECHO_N "checking if you want to exclude FTP code... $ECHO_C" >&6
 
 # Check whether --enable-ftp or --disable-ftp was given.
@@ -20786,7 +21010,7 @@ else
   use_ftp=no
 
 fi;
-echo "$as_me:20789: result: $use_ftp" >&5
+echo "$as_me:21013: result: $use_ftp" >&5
 echo "${ECHO_T}$use_ftp" >&6
 test $use_ftp != "no" && cat >>confdefs.h <<\EOF
 #define DISABLE_FTP 1
@@ -20794,7 +21018,7 @@ EOF
 
 # All DirEd functions that were enabled on compilation can be disabled
 # or modified at run time via DIRED_MENU symbols in lynx.cfg.
-echo "$as_me:20797: checking if directory-editor code should be used" >&5
+echo "$as_me:21021: checking if directory-editor code should be used" >&5
 echo $ECHO_N "checking if directory-editor code should be used... $ECHO_C" >&6
 
 # Check whether --enable-dired or --disable-dired was given.
@@ -20811,16 +21035,16 @@ else
   use_dired=yes
 
 fi;
-echo "$as_me:20814: result: $use_dired" >&5
+echo "$as_me:21038: result: $use_dired" >&5
 echo "${ECHO_T}$use_dired" >&6
 
 if test ".$use_dired" != ".no" ; then
-	LIBOBJS="$LIBOBJS LYLocal\$o"
+	EXTRA_OBJS="$EXTRA_OBJS LYLocal\$o"
 	cat >>confdefs.h <<\EOF
 #define DIRED_SUPPORT 1
 EOF
 
-	echo "$as_me:20823: checking if you wish to allow extracting from archives via DirEd" >&5
+	echo "$as_me:21047: checking if you wish to allow extracting from archives via DirEd" >&5
 echo $ECHO_N "checking if you wish to allow extracting from archives via DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-dearchive or --disable-dired-dearchive was given.
@@ -20836,10 +21060,10 @@ EOF
 else
   enableval=yes
 fi;
-	echo "$as_me:20839: result: $enableval" >&5
+	echo "$as_me:21063: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:20842: checking if DirEd mode should override keys" >&5
+	echo "$as_me:21066: checking if DirEd mode should override keys" >&5
 echo $ECHO_N "checking if DirEd mode should override keys... $ECHO_C" >&6
 
 # Check whether --enable-dired-override or --disable-dired-override was given.
@@ -20861,10 +21085,10 @@ else
 EOF
 
 fi;
-	echo "$as_me:20864: result: $enableval" >&5
+	echo "$as_me:21088: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:20867: checking if you wish to allow permissions commands via DirEd" >&5
+	echo "$as_me:21091: checking if you wish to allow permissions commands via DirEd" >&5
 echo $ECHO_N "checking if you wish to allow permissions commands via DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-permit or --disable-dired-permit was given.
@@ -20886,10 +21110,10 @@ else
 EOF
 
 fi;
-	echo "$as_me:20889: result: $enableval" >&5
+	echo "$as_me:21113: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:20892: checking if you wish to allow executable-permission commands via DirEd" >&5
+	echo "$as_me:21116: checking if you wish to allow executable-permission commands via DirEd" >&5
 echo $ECHO_N "checking if you wish to allow executable-permission commands via DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-xpermit or --disable-dired-xpermit was given.
@@ -20905,10 +21129,10 @@ EOF
 else
   enableval=yes
 fi;
-	echo "$as_me:20908: result: $enableval" >&5
+	echo "$as_me:21132: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:20911: checking if you wish to allow \"tar\" commands from DirEd" >&5
+	echo "$as_me:21135: checking if you wish to allow \"tar\" commands from DirEd" >&5
 echo $ECHO_N "checking if you wish to allow \"tar\" commands from DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-tar or --disable-dired-tar was given.
@@ -20930,10 +21154,10 @@ else
 EOF
 
 fi;
-	echo "$as_me:20933: result: $enableval" >&5
+	echo "$as_me:21157: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:20936: checking if you wish to allow \"uudecode\" commands from DirEd" >&5
+	echo "$as_me:21160: checking if you wish to allow \"uudecode\" commands from DirEd" >&5
 echo $ECHO_N "checking if you wish to allow \"uudecode\" commands from DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-uudecode or --disable-dired-uudecode was given.
@@ -20955,10 +21179,10 @@ else
 EOF
 
 fi;
-	echo "$as_me:20958: result: $enableval" >&5
+	echo "$as_me:21182: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:20961: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5
+	echo "$as_me:21185: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5
 echo $ECHO_N "checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-zip or --disable-dired-zip was given.
@@ -20980,10 +21204,10 @@ else
 EOF
 
 fi;
-	echo "$as_me:20983: result: $enableval" >&5
+	echo "$as_me:21207: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:20986: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5
+	echo "$as_me:21210: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5
 echo $ECHO_N "checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-gzip or --disable-dired-gzip was given.
@@ -21005,11 +21229,11 @@ else
 EOF
 
 fi;
-	echo "$as_me:21008: result: $enableval" >&5
+	echo "$as_me:21232: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 fi
 
-echo "$as_me:21012: checking if you want long-directory listings" >&5
+echo "$as_me:21236: checking if you want long-directory listings" >&5
 echo $ECHO_N "checking if you want long-directory listings... $ECHO_C" >&6
 
 # Check whether --enable-long-list or --disable-long-list was given.
@@ -21031,10 +21255,10 @@ else
 EOF
 
 fi;
-echo "$as_me:21034: result: $enableval" >&5
+echo "$as_me:21258: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-echo "$as_me:21037: checking if parent-directory references are permitted" >&5
+echo "$as_me:21261: checking if parent-directory references are permitted" >&5
 echo $ECHO_N "checking if parent-directory references are permitted... $ECHO_C" >&6
 
 # Check whether --enable-parent-dir-refs or --disable-parent-dir-refs was given.
@@ -21050,7 +21274,7 @@ EOF
 else
   enableval=yes
 fi;
-echo "$as_me:21053: result: $enableval" >&5
+echo "$as_me:21277: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
 test -z "$TELNET" && TELNET=telnet
@@ -21058,7 +21282,7 @@ for ac_prog in $TELNET telnet
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:21061: checking for $ac_word" >&5
+echo "$as_me:21285: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_TELNET+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21075,7 +21299,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_TELNET="$ac_dir/$ac_word"
-   echo "$as_me:21078: found $ac_dir/$ac_word" >&5
+   echo "$as_me:21302: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -21086,10 +21310,10 @@ fi
 TELNET=$ac_cv_path_TELNET
 
 if test -n "$TELNET"; then
-  echo "$as_me:21089: result: $TELNET" >&5
+  echo "$as_me:21313: result: $TELNET" >&5
 echo "${ECHO_T}$TELNET" >&6
 else
-  echo "$as_me:21092: result: no" >&5
+  echo "$as_me:21316: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -21151,7 +21375,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 21154) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 21378) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define TELNET_PATH "$cf_path_prog"
@@ -21168,7 +21392,7 @@ for ac_prog in $TN3270 tn3270
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:21171: checking for $ac_word" >&5
+echo "$as_me:21395: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_TN3270+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21185,7 +21409,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_TN3270="$ac_dir/$ac_word"
-   echo "$as_me:21188: found $ac_dir/$ac_word" >&5
+   echo "$as_me:21412: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -21196,10 +21420,10 @@ fi
 TN3270=$ac_cv_path_TN3270
 
 if test -n "$TN3270"; then
-  echo "$as_me:21199: result: $TN3270" >&5
+  echo "$as_me:21423: result: $TN3270" >&5
 echo "${ECHO_T}$TN3270" >&6
 else
-  echo "$as_me:21202: result: no" >&5
+  echo "$as_me:21426: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -21261,7 +21485,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 21264) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 21488) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define TN3270_PATH "$cf_path_prog"
@@ -21278,7 +21502,7 @@ for ac_prog in $RLOGIN rlogin
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:21281: checking for $ac_word" >&5
+echo "$as_me:21505: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_RLOGIN+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21295,7 +21519,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_RLOGIN="$ac_dir/$ac_word"
-   echo "$as_me:21298: found $ac_dir/$ac_word" >&5
+   echo "$as_me:21522: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -21306,10 +21530,10 @@ fi
 RLOGIN=$ac_cv_path_RLOGIN
 
 if test -n "$RLOGIN"; then
-  echo "$as_me:21309: result: $RLOGIN" >&5
+  echo "$as_me:21533: result: $RLOGIN" >&5
 echo "${ECHO_T}$RLOGIN" >&6
 else
-  echo "$as_me:21312: result: no" >&5
+  echo "$as_me:21536: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -21371,7 +21595,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 21374) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 21598) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define RLOGIN_PATH "$cf_path_prog"
@@ -21388,7 +21612,7 @@ for ac_prog in $MV mv
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:21391: checking for $ac_word" >&5
+echo "$as_me:21615: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_MV+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21405,7 +21629,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_MV="$ac_dir/$ac_word"
-   echo "$as_me:21408: found $ac_dir/$ac_word" >&5
+   echo "$as_me:21632: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -21416,10 +21640,10 @@ fi
 MV=$ac_cv_path_MV
 
 if test -n "$MV"; then
-  echo "$as_me:21419: result: $MV" >&5
+  echo "$as_me:21643: result: $MV" >&5
 echo "${ECHO_T}$MV" >&6
 else
-  echo "$as_me:21422: result: no" >&5
+  echo "$as_me:21646: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -21481,7 +21705,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 21484) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 21708) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define MV_PATH "$cf_path_prog"
@@ -21498,7 +21722,7 @@ for ac_prog in $GZIP gzip
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:21501: checking for $ac_word" >&5
+echo "$as_me:21725: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_GZIP+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21515,7 +21739,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_GZIP="$ac_dir/$ac_word"
-   echo "$as_me:21518: found $ac_dir/$ac_word" >&5
+   echo "$as_me:21742: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -21526,10 +21750,10 @@ fi
 GZIP=$ac_cv_path_GZIP
 
 if test -n "$GZIP"; then
-  echo "$as_me:21529: result: $GZIP" >&5
+  echo "$as_me:21753: result: $GZIP" >&5
 echo "${ECHO_T}$GZIP" >&6
 else
-  echo "$as_me:21532: result: no" >&5
+  echo "$as_me:21756: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -21591,7 +21815,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 21594) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 21818) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define GZIP_PATH "$cf_path_prog"
@@ -21608,7 +21832,7 @@ for ac_prog in $UNCOMPRESS gunzip
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:21611: checking for $ac_word" >&5
+echo "$as_me:21835: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_UNCOMPRESS+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21625,7 +21849,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_UNCOMPRESS="$ac_dir/$ac_word"
-   echo "$as_me:21628: found $ac_dir/$ac_word" >&5
+   echo "$as_me:21852: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -21636,10 +21860,10 @@ fi
 UNCOMPRESS=$ac_cv_path_UNCOMPRESS
 
 if test -n "$UNCOMPRESS"; then
-  echo "$as_me:21639: result: $UNCOMPRESS" >&5
+  echo "$as_me:21863: result: $UNCOMPRESS" >&5
 echo "${ECHO_T}$UNCOMPRESS" >&6
 else
-  echo "$as_me:21642: result: no" >&5
+  echo "$as_me:21866: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -21701,7 +21925,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 21704) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 21928) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define UNCOMPRESS_PATH "$cf_path_prog"
@@ -21718,7 +21942,7 @@ for ac_prog in $UNZIP unzip
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:21721: checking for $ac_word" >&5
+echo "$as_me:21945: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_UNZIP+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21735,7 +21959,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_UNZIP="$ac_dir/$ac_word"
-   echo "$as_me:21738: found $ac_dir/$ac_word" >&5
+   echo "$as_me:21962: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -21746,10 +21970,10 @@ fi
 UNZIP=$ac_cv_path_UNZIP
 
 if test -n "$UNZIP"; then
-  echo "$as_me:21749: result: $UNZIP" >&5
+  echo "$as_me:21973: result: $UNZIP" >&5
 echo "${ECHO_T}$UNZIP" >&6
 else
-  echo "$as_me:21752: result: no" >&5
+  echo "$as_me:21976: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -21811,7 +22035,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 21814) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 22038) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define UNZIP_PATH "$cf_path_prog"
@@ -21828,7 +22052,7 @@ for ac_prog in $BZIP2 bzip2
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:21831: checking for $ac_word" >&5
+echo "$as_me:22055: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_BZIP2+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21845,7 +22069,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_BZIP2="$ac_dir/$ac_word"
-   echo "$as_me:21848: found $ac_dir/$ac_word" >&5
+   echo "$as_me:22072: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -21856,10 +22080,10 @@ fi
 BZIP2=$ac_cv_path_BZIP2
 
 if test -n "$BZIP2"; then
-  echo "$as_me:21859: result: $BZIP2" >&5
+  echo "$as_me:22083: result: $BZIP2" >&5
 echo "${ECHO_T}$BZIP2" >&6
 else
-  echo "$as_me:21862: result: no" >&5
+  echo "$as_me:22086: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -21921,7 +22145,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 21924) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 22148) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define BZIP2_PATH "$cf_path_prog"
@@ -21938,7 +22162,7 @@ for ac_prog in $TAR tar pax gtar gnutar bsdtar star
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:21941: checking for $ac_word" >&5
+echo "$as_me:22165: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_TAR+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21955,7 +22179,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_TAR="$ac_dir/$ac_word"
-   echo "$as_me:21958: found $ac_dir/$ac_word" >&5
+   echo "$as_me:22182: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -21966,10 +22190,10 @@ fi
 TAR=$ac_cv_path_TAR
 
 if test -n "$TAR"; then
-  echo "$as_me:21969: result: $TAR" >&5
+  echo "$as_me:22193: result: $TAR" >&5
 echo "${ECHO_T}$TAR" >&6
 else
-  echo "$as_me:21972: result: no" >&5
+  echo "$as_me:22196: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -22031,7 +22255,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 22034) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 22258) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define TAR_PATH "$cf_path_prog"
@@ -22088,7 +22312,7 @@ for ac_prog in $COMPRESS compress
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:22091: checking for $ac_word" >&5
+echo "$as_me:22315: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_COMPRESS+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -22105,7 +22329,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_COMPRESS="$ac_dir/$ac_word"
-   echo "$as_me:22108: found $ac_dir/$ac_word" >&5
+   echo "$as_me:22332: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -22116,10 +22340,10 @@ fi
 COMPRESS=$ac_cv_path_COMPRESS
 
 if test -n "$COMPRESS"; then
-  echo "$as_me:22119: result: $COMPRESS" >&5
+  echo "$as_me:22343: result: $COMPRESS" >&5
 echo "${ECHO_T}$COMPRESS" >&6
 else
-  echo "$as_me:22122: result: no" >&5
+  echo "$as_me:22346: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -22181,7 +22405,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 22184) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 22408) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define COMPRESS_PATH "$cf_path_prog"
@@ -22198,7 +22422,7 @@ for ac_prog in $RM rm
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:22201: checking for $ac_word" >&5
+echo "$as_me:22425: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_RM+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -22215,7 +22439,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_RM="$ac_dir/$ac_word"
-   echo "$as_me:22218: found $ac_dir/$ac_word" >&5
+   echo "$as_me:22442: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -22226,10 +22450,10 @@ fi
 RM=$ac_cv_path_RM
 
 if test -n "$RM"; then
-  echo "$as_me:22229: result: $RM" >&5
+  echo "$as_me:22453: result: $RM" >&5
 echo "${ECHO_T}$RM" >&6
 else
-  echo "$as_me:22232: result: no" >&5
+  echo "$as_me:22456: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -22291,7 +22515,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 22294) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 22518) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define RM_PATH "$cf_path_prog"
@@ -22308,7 +22532,7 @@ for ac_prog in $UUDECODE uudecode
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:22311: checking for $ac_word" >&5
+echo "$as_me:22535: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_UUDECODE+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -22325,7 +22549,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_UUDECODE="$ac_dir/$ac_word"
-   echo "$as_me:22328: found $ac_dir/$ac_word" >&5
+   echo "$as_me:22552: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -22336,10 +22560,10 @@ fi
 UUDECODE=$ac_cv_path_UUDECODE
 
 if test -n "$UUDECODE"; then
-  echo "$as_me:22339: result: $UUDECODE" >&5
+  echo "$as_me:22563: result: $UUDECODE" >&5
 echo "${ECHO_T}$UUDECODE" >&6
 else
-  echo "$as_me:22342: result: no" >&5
+  echo "$as_me:22566: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -22401,7 +22625,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 22404) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 22628) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define UUDECODE_PATH "$cf_path_prog"
@@ -22418,7 +22642,7 @@ for ac_prog in $ZCAT zcat
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:22421: checking for $ac_word" >&5
+echo "$as_me:22645: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_ZCAT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -22435,7 +22659,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_ZCAT="$ac_dir/$ac_word"
-   echo "$as_me:22438: found $ac_dir/$ac_word" >&5
+   echo "$as_me:22662: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -22446,10 +22670,10 @@ fi
 ZCAT=$ac_cv_path_ZCAT
 
 if test -n "$ZCAT"; then
-  echo "$as_me:22449: result: $ZCAT" >&5
+  echo "$as_me:22673: result: $ZCAT" >&5
 echo "${ECHO_T}$ZCAT" >&6
 else
-  echo "$as_me:22452: result: no" >&5
+  echo "$as_me:22676: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -22511,7 +22735,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 22514) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 22738) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define ZCAT_PATH "$cf_path_prog"
@@ -22528,7 +22752,7 @@ for ac_prog in $ZIP zip
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:22531: checking for $ac_word" >&5
+echo "$as_me:22755: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_ZIP+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -22545,7 +22769,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_ZIP="$ac_dir/$ac_word"
-   echo "$as_me:22548: found $ac_dir/$ac_word" >&5
+   echo "$as_me:22772: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -22556,10 +22780,10 @@ fi
 ZIP=$ac_cv_path_ZIP
 
 if test -n "$ZIP"; then
-  echo "$as_me:22559: result: $ZIP" >&5
+  echo "$as_me:22783: result: $ZIP" >&5
 echo "${ECHO_T}$ZIP" >&6
 else
-  echo "$as_me:22562: result: no" >&5
+  echo "$as_me:22786: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -22621,7 +22845,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 22624) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 22848) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define ZIP_PATH "$cf_path_prog"
@@ -22648,7 +22872,7 @@ for ac_prog in $INSTALL install
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:22651: checking for $ac_word" >&5
+echo "$as_me:22875: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_INSTALL+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -22665,7 +22889,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_INSTALL="$ac_dir/$ac_word"
-   echo "$as_me:22668: found $ac_dir/$ac_word" >&5
+   echo "$as_me:22892: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -22676,10 +22900,10 @@ fi
 INSTALL=$ac_cv_path_INSTALL
 
 if test -n "$INSTALL"; then
-  echo "$as_me:22679: result: $INSTALL" >&5
+  echo "$as_me:22903: result: $INSTALL" >&5
 echo "${ECHO_T}$INSTALL" >&6
 else
-  echo "$as_me:22682: result: no" >&5
+  echo "$as_me:22906: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -22741,7 +22965,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 22744) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 22968) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define INSTALL_PATH "$cf_path_prog"
@@ -22767,7 +22991,7 @@ fi
 
 if test $cf_cv_screen = pdcurses ; then
 
-	echo "$as_me:22770: checking for X" >&5
+	echo "$as_me:22994: checking for X" >&5
 echo $ECHO_N "checking for X... $ECHO_C" >&6
 
 # Check whether --with-x or --without-x was given.
@@ -22864,17 +23088,17 @@ if test "$ac_x_includes" = no; then
   # Guess where to find include files, by looking for Intrinsic.h.
   # First, try using that file with no special directory specified.
   cat >conftest.$ac_ext <<_ACEOF
-#line 22867 "configure"
+#line 23091 "configure"
 #include "confdefs.h"
 #include <X11/Intrinsic.h>
 _ACEOF
-if { (eval echo "$as_me:22871: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:23095: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:22877: \$? = $ac_status" >&5
+  echo "$as_me:23101: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -22907,7 +23131,7 @@ if test "$ac_x_libraries" = no; then
   ac_save_LIBS=$LIBS
   LIBS="-lXt $LIBS"
   cat >conftest.$ac_ext <<_ACEOF
-#line 22910 "configure"
+#line 23134 "configure"
 #include "confdefs.h"
 #include <X11/Intrinsic.h>
 int
@@ -22919,16 +23143,16 @@ XtMalloc (0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22922: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23146: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22925: \$? = $ac_status" >&5
+  echo "$as_me:23149: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22928: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23152: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22931: \$? = $ac_status" >&5
+  echo "$as_me:23155: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   LIBS=$ac_save_LIBS
 # We can link X programs with no special library path.
@@ -22966,7 +23190,7 @@ fi
 fi # $with_x != no
 
 if test "$have_x" != yes; then
-  echo "$as_me:22969: result: $have_x" >&5
+  echo "$as_me:23193: result: $have_x" >&5
 echo "${ECHO_T}$have_x" >&6
   no_x=yes
 else
@@ -22976,7 +23200,7 @@ else
   # Update the cache value to reflect the command line values.
   ac_cv_have_x="have_x=yes \
 		ac_x_includes=$x_includes ac_x_libraries=$x_libraries"
-  echo "$as_me:22979: result: libraries $x_libraries, headers $x_includes" >&5
+  echo "$as_me:23203: result: libraries $x_libraries, headers $x_includes" >&5
 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6
 fi
 
@@ -23000,11 +23224,11 @@ else
     # others require no space.  Words are not sufficient . . . .
     case `(uname -sr) 2>/dev/null` in
     "SunOS 5"*)
-      echo "$as_me:23003: checking whether -R must be followed by a space" >&5
+      echo "$as_me:23227: checking whether -R must be followed by a space" >&5
 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6
       ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
       cat >conftest.$ac_ext <<_ACEOF
-#line 23007 "configure"
+#line 23231 "configure"
 #include "confdefs.h"
 
 int
@@ -23016,16 +23240,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23019: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23243: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23022: \$? = $ac_status" >&5
+  echo "$as_me:23246: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23025: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23249: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23028: \$? = $ac_status" >&5
+  echo "$as_me:23252: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_R_nospace=yes
 else
@@ -23035,13 +23259,13 @@ ac_R_nospace=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
       if test $ac_R_nospace = yes; then
-	echo "$as_me:23038: result: no" >&5
+	echo "$as_me:23262: result: no" >&5
 echo "${ECHO_T}no" >&6
 	X_LIBS="$X_LIBS -R$x_libraries"
       else
 	LIBS="$ac_xsave_LIBS -R $x_libraries"
 	cat >conftest.$ac_ext <<_ACEOF
-#line 23044 "configure"
+#line 23268 "configure"
 #include "confdefs.h"
 
 int
@@ -23053,16 +23277,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23056: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23280: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23059: \$? = $ac_status" >&5
+  echo "$as_me:23283: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23062: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23286: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23065: \$? = $ac_status" >&5
+  echo "$as_me:23289: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_R_space=yes
 else
@@ -23072,11 +23296,11 @@ ac_R_space=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 	if test $ac_R_space = yes; then
-	  echo "$as_me:23075: result: yes" >&5
+	  echo "$as_me:23299: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 	  X_LIBS="$X_LIBS -R $x_libraries"
 	else
-	  echo "$as_me:23079: result: neither works" >&5
+	  echo "$as_me:23303: result: neither works" >&5
 echo "${ECHO_T}neither works" >&6
 	fi
       fi
@@ -23096,7 +23320,7 @@ echo "${ECHO_T}neither works" >&6
     # the Alpha needs dnet_stub (dnet does not exist).
     ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11"
     cat >conftest.$ac_ext <<_ACEOF
-#line 23099 "configure"
+#line 23323 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -23115,22 +23339,22 @@ XOpenDisplay ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23118: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23342: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23121: \$? = $ac_status" >&5
+  echo "$as_me:23345: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23124: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23348: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23127: \$? = $ac_status" >&5
+  echo "$as_me:23351: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:23133: checking for dnet_ntoa in -ldnet" >&5
+echo "$as_me:23357: checking for dnet_ntoa in -ldnet" >&5
 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6
 if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -23138,7 +23362,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-ldnet  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 23141 "configure"
+#line 23365 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -23157,16 +23381,16 @@ dnet_ntoa ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23160: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23384: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23163: \$? = $ac_status" >&5
+  echo "$as_me:23387: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23166: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23390: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23169: \$? = $ac_status" >&5
+  echo "$as_me:23393: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_dnet_dnet_ntoa=yes
 else
@@ -23177,14 +23401,14 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:23180: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
+echo "$as_me:23404: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6
 if test $ac_cv_lib_dnet_dnet_ntoa = yes; then
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
 fi
 
     if test $ac_cv_lib_dnet_dnet_ntoa = no; then
-      echo "$as_me:23187: checking for dnet_ntoa in -ldnet_stub" >&5
+      echo "$as_me:23411: checking for dnet_ntoa in -ldnet_stub" >&5
 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6
 if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -23192,7 +23416,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-ldnet_stub  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 23195 "configure"
+#line 23419 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -23211,16 +23435,16 @@ dnet_ntoa ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23214: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23438: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23217: \$? = $ac_status" >&5
+  echo "$as_me:23441: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23220: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23444: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23223: \$? = $ac_status" >&5
+  echo "$as_me:23447: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_dnet_stub_dnet_ntoa=yes
 else
@@ -23231,7 +23455,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:23234: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
+echo "$as_me:23458: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6
 if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
@@ -23250,13 +23474,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
     # on Irix 5.2, according to T.E. Dickey.
     # The functions gethostbyname, getservbyname, and inet_addr are
     # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
-    echo "$as_me:23253: checking for gethostbyname" >&5
+    echo "$as_me:23477: checking for gethostbyname" >&5
 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6
 if test "${ac_cv_func_gethostbyname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 23259 "configure"
+#line 23483 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char gethostbyname (); below.  */
@@ -23287,16 +23511,16 @@ f = gethostbyname;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23290: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23514: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23293: \$? = $ac_status" >&5
+  echo "$as_me:23517: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23296: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23520: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23299: \$? = $ac_status" >&5
+  echo "$as_me:23523: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_gethostbyname=yes
 else
@@ -23306,11 +23530,11 @@ ac_cv_func_gethostbyname=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:23309: result: $ac_cv_func_gethostbyname" >&5
+echo "$as_me:23533: result: $ac_cv_func_gethostbyname" >&5
 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6
 
     if test $ac_cv_func_gethostbyname = no; then
-      echo "$as_me:23313: checking for gethostbyname in -lnsl" >&5
+      echo "$as_me:23537: checking for gethostbyname in -lnsl" >&5
 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6
 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -23318,7 +23542,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lnsl  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 23321 "configure"
+#line 23545 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -23337,16 +23561,16 @@ gethostbyname ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23340: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23564: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23343: \$? = $ac_status" >&5
+  echo "$as_me:23567: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23346: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23570: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23349: \$? = $ac_status" >&5
+  echo "$as_me:23573: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_nsl_gethostbyname=yes
 else
@@ -23357,14 +23581,14 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:23360: result: $ac_cv_lib_nsl_gethostbyname" >&5
+echo "$as_me:23584: result: $ac_cv_lib_nsl_gethostbyname" >&5
 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6
 if test $ac_cv_lib_nsl_gethostbyname = yes; then
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
 fi
 
       if test $ac_cv_lib_nsl_gethostbyname = no; then
-        echo "$as_me:23367: checking for gethostbyname in -lbsd" >&5
+        echo "$as_me:23591: checking for gethostbyname in -lbsd" >&5
 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6
 if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -23372,7 +23596,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lbsd  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 23375 "configure"
+#line 23599 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -23391,16 +23615,16 @@ gethostbyname ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23394: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23618: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23397: \$? = $ac_status" >&5
+  echo "$as_me:23621: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23400: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23624: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23403: \$? = $ac_status" >&5
+  echo "$as_me:23627: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_bsd_gethostbyname=yes
 else
@@ -23411,7 +23635,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:23414: result: $ac_cv_lib_bsd_gethostbyname" >&5
+echo "$as_me:23638: result: $ac_cv_lib_bsd_gethostbyname" >&5
 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6
 if test $ac_cv_lib_bsd_gethostbyname = yes; then
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
@@ -23427,13 +23651,13 @@ fi
     # variants that don't use the nameserver (or something).  -lsocket
     # must be given before -lnsl if both are needed.  We assume that
     # if connect needs -lnsl, so does gethostbyname.
-    echo "$as_me:23430: checking for connect" >&5
+    echo "$as_me:23654: checking for connect" >&5
 echo $ECHO_N "checking for connect... $ECHO_C" >&6
 if test "${ac_cv_func_connect+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 23436 "configure"
+#line 23660 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char connect (); below.  */
@@ -23464,16 +23688,16 @@ f = connect;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23467: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23691: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23470: \$? = $ac_status" >&5
+  echo "$as_me:23694: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23473: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23697: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23476: \$? = $ac_status" >&5
+  echo "$as_me:23700: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_connect=yes
 else
@@ -23483,11 +23707,11 @@ ac_cv_func_connect=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:23486: result: $ac_cv_func_connect" >&5
+echo "$as_me:23710: result: $ac_cv_func_connect" >&5
 echo "${ECHO_T}$ac_cv_func_connect" >&6
 
     if test $ac_cv_func_connect = no; then
-      echo "$as_me:23490: checking for connect in -lsocket" >&5
+      echo "$as_me:23714: checking for connect in -lsocket" >&5
 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6
 if test "${ac_cv_lib_socket_connect+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -23495,7 +23719,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 23498 "configure"
+#line 23722 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -23514,16 +23738,16 @@ connect ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23517: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23741: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23520: \$? = $ac_status" >&5
+  echo "$as_me:23744: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23523: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23747: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23526: \$? = $ac_status" >&5
+  echo "$as_me:23750: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_socket_connect=yes
 else
@@ -23534,7 +23758,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:23537: result: $ac_cv_lib_socket_connect" >&5
+echo "$as_me:23761: result: $ac_cv_lib_socket_connect" >&5
 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6
 if test $ac_cv_lib_socket_connect = yes; then
   X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
@@ -23543,13 +23767,13 @@ fi
     fi
 
     # Guillermo Gomez says -lposix is necessary on A/UX.
-    echo "$as_me:23546: checking for remove" >&5
+    echo "$as_me:23770: checking for remove" >&5
 echo $ECHO_N "checking for remove... $ECHO_C" >&6
 if test "${ac_cv_func_remove+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 23552 "configure"
+#line 23776 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char remove (); below.  */
@@ -23580,16 +23804,16 @@ f = remove;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23583: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23807: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23586: \$? = $ac_status" >&5
+  echo "$as_me:23810: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23589: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23813: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23592: \$? = $ac_status" >&5
+  echo "$as_me:23816: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_remove=yes
 else
@@ -23599,11 +23823,11 @@ ac_cv_func_remove=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:23602: result: $ac_cv_func_remove" >&5
+echo "$as_me:23826: result: $ac_cv_func_remove" >&5
 echo "${ECHO_T}$ac_cv_func_remove" >&6
 
     if test $ac_cv_func_remove = no; then
-      echo "$as_me:23606: checking for remove in -lposix" >&5
+      echo "$as_me:23830: checking for remove in -lposix" >&5
 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6
 if test "${ac_cv_lib_posix_remove+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -23611,7 +23835,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lposix  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 23614 "configure"
+#line 23838 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -23630,16 +23854,16 @@ remove ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23633: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23857: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23636: \$? = $ac_status" >&5
+  echo "$as_me:23860: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23639: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23863: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23642: \$? = $ac_status" >&5
+  echo "$as_me:23866: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_posix_remove=yes
 else
@@ -23650,7 +23874,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:23653: result: $ac_cv_lib_posix_remove" >&5
+echo "$as_me:23877: result: $ac_cv_lib_posix_remove" >&5
 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6
 if test $ac_cv_lib_posix_remove = yes; then
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
@@ -23659,13 +23883,13 @@ fi
     fi
 
     # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
-    echo "$as_me:23662: checking for shmat" >&5
+    echo "$as_me:23886: checking for shmat" >&5
 echo $ECHO_N "checking for shmat... $ECHO_C" >&6
 if test "${ac_cv_func_shmat+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 23668 "configure"
+#line 23892 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char shmat (); below.  */
@@ -23696,16 +23920,16 @@ f = shmat;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23699: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23923: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23702: \$? = $ac_status" >&5
+  echo "$as_me:23926: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23705: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23929: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23708: \$? = $ac_status" >&5
+  echo "$as_me:23932: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_shmat=yes
 else
@@ -23715,11 +23939,11 @@ ac_cv_func_shmat=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:23718: result: $ac_cv_func_shmat" >&5
+echo "$as_me:23942: result: $ac_cv_func_shmat" >&5
 echo "${ECHO_T}$ac_cv_func_shmat" >&6
 
     if test $ac_cv_func_shmat = no; then
-      echo "$as_me:23722: checking for shmat in -lipc" >&5
+      echo "$as_me:23946: checking for shmat in -lipc" >&5
 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6
 if test "${ac_cv_lib_ipc_shmat+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -23727,7 +23951,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lipc  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 23730 "configure"
+#line 23954 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -23746,16 +23970,16 @@ shmat ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23749: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23973: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23752: \$? = $ac_status" >&5
+  echo "$as_me:23976: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23755: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23979: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23758: \$? = $ac_status" >&5
+  echo "$as_me:23982: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_ipc_shmat=yes
 else
@@ -23766,7 +23990,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:23769: result: $ac_cv_lib_ipc_shmat" >&5
+echo "$as_me:23993: result: $ac_cv_lib_ipc_shmat" >&5
 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6
 if test $ac_cv_lib_ipc_shmat = yes; then
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
@@ -23784,7 +24008,7 @@ fi
   # These have to be linked with before -lX11, unlike the other
   # libraries we check for below, so use a different variable.
   # John Interrante, Karl Berry
-  echo "$as_me:23787: checking for IceConnectionNumber in -lICE" >&5
+  echo "$as_me:24011: checking for IceConnectionNumber in -lICE" >&5
 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6
 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -23792,7 +24016,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lICE $X_EXTRA_LIBS $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 23795 "configure"
+#line 24019 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -23811,16 +24035,16 @@ IceConnectionNumber ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23814: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24038: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23817: \$? = $ac_status" >&5
+  echo "$as_me:24041: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23820: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24044: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23823: \$? = $ac_status" >&5
+  echo "$as_me:24047: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_ICE_IceConnectionNumber=yes
 else
@@ -23831,7 +24055,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:23834: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
+echo "$as_me:24058: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6
 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then
   X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
@@ -23925,7 +24149,7 @@ fi
 
 if test "$cf_check_cflags" != "$CFLAGS" ; then
 cat >conftest.$ac_ext <<_ACEOF
-#line 23928 "configure"
+#line 24152 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -23937,16 +24161,16 @@ printf("Hello world");
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23940: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24164: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23943: \$? = $ac_status" >&5
+  echo "$as_me:24167: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23946: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24170: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23949: \$? = $ac_status" >&5
+  echo "$as_me:24173: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -23963,13 +24187,13 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 
-echo "$as_me:23966: checking for XOpenDisplay" >&5
+echo "$as_me:24190: checking for XOpenDisplay" >&5
 echo $ECHO_N "checking for XOpenDisplay... $ECHO_C" >&6
 if test "${ac_cv_func_XOpenDisplay+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 23972 "configure"
+#line 24196 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char XOpenDisplay (); below.  */
@@ -24000,16 +24224,16 @@ f = XOpenDisplay;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24003: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24227: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24006: \$? = $ac_status" >&5
+  echo "$as_me:24230: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24009: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24233: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24012: \$? = $ac_status" >&5
+  echo "$as_me:24236: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_XOpenDisplay=yes
 else
@@ -24019,13 +24243,13 @@ ac_cv_func_XOpenDisplay=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:24022: result: $ac_cv_func_XOpenDisplay" >&5
+echo "$as_me:24246: result: $ac_cv_func_XOpenDisplay" >&5
 echo "${ECHO_T}$ac_cv_func_XOpenDisplay" >&6
 if test $ac_cv_func_XOpenDisplay = yes; then
   :
 else
 
-echo "$as_me:24028: checking for XOpenDisplay in -lX11" >&5
+echo "$as_me:24252: checking for XOpenDisplay in -lX11" >&5
 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6
 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -24033,7 +24257,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 24036 "configure"
+#line 24260 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -24052,16 +24276,16 @@ XOpenDisplay ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24055: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24279: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24058: \$? = $ac_status" >&5
+  echo "$as_me:24282: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24061: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24285: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24064: \$? = $ac_status" >&5
+  echo "$as_me:24288: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_X11_XOpenDisplay=yes
 else
@@ -24072,7 +24296,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:24075: result: $ac_cv_lib_X11_XOpenDisplay" >&5
+echo "$as_me:24299: result: $ac_cv_lib_X11_XOpenDisplay" >&5
 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6
 if test $ac_cv_lib_X11_XOpenDisplay = yes; then
   LIBS="-lX11 $LIBS"
@@ -24080,13 +24304,13 @@ fi
 
 fi
 
-echo "$as_me:24083: checking for XtAppInitialize" >&5
+echo "$as_me:24307: checking for XtAppInitialize" >&5
 echo $ECHO_N "checking for XtAppInitialize... $ECHO_C" >&6
 if test "${ac_cv_func_XtAppInitialize+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 24089 "configure"
+#line 24313 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char XtAppInitialize (); below.  */
@@ -24117,16 +24341,16 @@ f = XtAppInitialize;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24120: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24344: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24123: \$? = $ac_status" >&5
+  echo "$as_me:24347: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24126: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24350: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24129: \$? = $ac_status" >&5
+  echo "$as_me:24353: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_XtAppInitialize=yes
 else
@@ -24136,13 +24360,13 @@ ac_cv_func_XtAppInitialize=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:24139: result: $ac_cv_func_XtAppInitialize" >&5
+echo "$as_me:24363: result: $ac_cv_func_XtAppInitialize" >&5
 echo "${ECHO_T}$ac_cv_func_XtAppInitialize" >&6
 if test $ac_cv_func_XtAppInitialize = yes; then
   :
 else
 
-echo "$as_me:24145: checking for XtAppInitialize in -lXt" >&5
+echo "$as_me:24369: checking for XtAppInitialize in -lXt" >&5
 echo $ECHO_N "checking for XtAppInitialize in -lXt... $ECHO_C" >&6
 if test "${ac_cv_lib_Xt_XtAppInitialize+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -24150,7 +24374,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 24153 "configure"
+#line 24377 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -24169,16 +24393,16 @@ XtAppInitialize ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24172: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24396: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24175: \$? = $ac_status" >&5
+  echo "$as_me:24399: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24178: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24402: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24181: \$? = $ac_status" >&5
+  echo "$as_me:24405: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_Xt_XtAppInitialize=yes
 else
@@ -24189,7 +24413,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:24192: result: $ac_cv_lib_Xt_XtAppInitialize" >&5
+echo "$as_me:24416: result: $ac_cv_lib_Xt_XtAppInitialize" >&5
 echo "${ECHO_T}$ac_cv_lib_Xt_XtAppInitialize" >&6
 if test $ac_cv_lib_Xt_XtAppInitialize = yes; then
   cat >>confdefs.h <<\EOF
@@ -24203,7 +24427,7 @@ fi
 fi
 
 if test $cf_have_X_LIBS = no ; then
-	{ echo "$as_me:24206: WARNING: Unable to successfully link X Toolkit library (-lXt) with
+	{ echo "$as_me:24430: WARNING: Unable to successfully link X Toolkit library (-lXt) with
 test program.  You will have to check and add the proper libraries by hand
 to makefile." >&5
 echo "$as_me: WARNING: Unable to successfully link X Toolkit library (-lXt) with
@@ -24213,7 +24437,7 @@ fi
 
 cf_x_athena=${cf_x_athena-Xaw}
 
-echo "$as_me:24216: checking if you want to link with Xaw 3d library" >&5
+echo "$as_me:24440: checking if you want to link with Xaw 3d library" >&5
 echo $ECHO_N "checking if you want to link with Xaw 3d library... $ECHO_C" >&6
 withval=
 
@@ -24224,14 +24448,14 @@ if test "${with_Xaw3d+set}" = set; then
 fi;
 if test "$withval" = yes ; then
 	cf_x_athena=Xaw3d
-	echo "$as_me:24227: result: yes" >&5
+	echo "$as_me:24451: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
-	echo "$as_me:24230: result: no" >&5
+	echo "$as_me:24454: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-echo "$as_me:24234: checking if you want to link with neXT Athena library" >&5
+echo "$as_me:24458: checking if you want to link with neXT Athena library" >&5
 echo $ECHO_N "checking if you want to link with neXT Athena library... $ECHO_C" >&6
 withval=
 
@@ -24242,14 +24466,14 @@ if test "${with_neXtaw+set}" = set; then
 fi;
 if test "$withval" = yes ; then
 	cf_x_athena=neXtaw
-	echo "$as_me:24245: result: yes" >&5
+	echo "$as_me:24469: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
-	echo "$as_me:24248: result: no" >&5
+	echo "$as_me:24472: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-echo "$as_me:24252: checking if you want to link with Athena-Plus library" >&5
+echo "$as_me:24476: checking if you want to link with Athena-Plus library" >&5
 echo $ECHO_N "checking if you want to link with Athena-Plus library... $ECHO_C" >&6
 withval=
 
@@ -24260,14 +24484,14 @@ if test "${with_XawPlus+set}" = set; then
 fi;
 if test "$withval" = yes ; then
 	cf_x_athena=XawPlus
-	echo "$as_me:24263: result: yes" >&5
+	echo "$as_me:24487: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
-	echo "$as_me:24266: result: no" >&5
+	echo "$as_me:24490: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-echo "$as_me:24270: checking for XextCreateExtension in -lXext" >&5
+echo "$as_me:24494: checking for XextCreateExtension in -lXext" >&5
 echo $ECHO_N "checking for XextCreateExtension in -lXext... $ECHO_C" >&6
 if test "${ac_cv_lib_Xext_XextCreateExtension+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -24275,7 +24499,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lXext  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 24278 "configure"
+#line 24502 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -24294,16 +24518,16 @@ XextCreateExtension ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24297: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24521: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24300: \$? = $ac_status" >&5
+  echo "$as_me:24524: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24303: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24527: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24306: \$? = $ac_status" >&5
+  echo "$as_me:24530: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_Xext_XextCreateExtension=yes
 else
@@ -24314,7 +24538,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:24317: result: $ac_cv_lib_Xext_XextCreateExtension" >&5
+echo "$as_me:24541: result: $ac_cv_lib_Xext_XextCreateExtension" >&5
 echo "${ECHO_T}$ac_cv_lib_Xext_XextCreateExtension" >&6
 if test $ac_cv_lib_Xext_XextCreateExtension = yes; then
   LIBS="-lXext $LIBS"
@@ -24336,14 +24560,14 @@ do
 		cf_test=X11/$cf_x_athena_root/SimpleMenu.h
 		if test $cf_path != default ; then
 			CPPFLAGS="-I$cf_path/include $cf_save"
-			echo "$as_me:24339: checking for $cf_test in $cf_path" >&5
+			echo "$as_me:24563: checking for $cf_test in $cf_path" >&5
 echo $ECHO_N "checking for $cf_test in $cf_path... $ECHO_C" >&6
 		else
-			echo "$as_me:24342: checking for $cf_test" >&5
+			echo "$as_me:24566: checking for $cf_test" >&5
 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6
 		fi
 		cat >conftest.$ac_ext <<_ACEOF
-#line 24346 "configure"
+#line 24570 "configure"
 #include "confdefs.h"
 
 #include <X11/Intrinsic.h>
@@ -24357,16 +24581,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:24360: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:24584: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:24363: \$? = $ac_status" >&5
+  echo "$as_me:24587: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:24366: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24590: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24369: \$? = $ac_status" >&5
+  echo "$as_me:24593: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -24375,7 +24599,7 @@ cat conftest.$ac_ext >&5
 cf_result=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
-		echo "$as_me:24378: result: $cf_result" >&5
+		echo "$as_me:24602: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 		if test "$cf_result" = yes ; then
 			cf_x_athena_include=$cf_path
@@ -24387,7 +24611,7 @@ echo "${ECHO_T}$cf_result" >&6
 done
 
 if test -z "$cf_x_athena_include" ; then
-	{ echo "$as_me:24390: WARNING: Unable to successfully find Athena header files with test program" >&5
+	{ echo "$as_me:24614: WARNING: Unable to successfully find Athena header files with test program" >&5
 echo "$as_me: WARNING: Unable to successfully find Athena header files with test program" >&2;}
 elif test "$cf_x_athena_include" != default ; then
 	CPPFLAGS="$CPPFLAGS -I$cf_x_athena_include"
@@ -24412,17 +24636,17 @@ do
 			cf_test=XawSimpleMenuAddGlobalActions
 			if test $cf_path != default ; then
 				LIBS="-L$cf_path/lib $cf_lib $LIBS"
-				echo "$as_me:24415: checking for $cf_lib in $cf_path" >&5
+				echo "$as_me:24639: checking for $cf_lib in $cf_path" >&5
 echo $ECHO_N "checking for $cf_lib in $cf_path... $ECHO_C" >&6
 			else
 				LIBS="$cf_lib $LIBS"
-				echo "$as_me:24419: checking for $cf_test in $cf_lib" >&5
+				echo "$as_me:24643: checking for $cf_test in $cf_lib" >&5
 echo $ECHO_N "checking for $cf_test in $cf_lib... $ECHO_C" >&6
 			fi
 			cf_SAVE="$LIBS"
 			LIBS="$X_PRE_LIBS $LIBS $X_EXTRA_LIBS"
 			cat >conftest.$ac_ext <<_ACEOF
-#line 24425 "configure"
+#line 24649 "configure"
 #include "confdefs.h"
 
 int
@@ -24434,16 +24658,16 @@ $cf_test()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24437: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24661: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24440: \$? = $ac_status" >&5
+  echo "$as_me:24664: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24443: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24667: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24446: \$? = $ac_status" >&5
+  echo "$as_me:24670: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -24452,7 +24676,7 @@ cat conftest.$ac_ext >&5
 cf_result=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-			echo "$as_me:24455: result: $cf_result" >&5
+			echo "$as_me:24679: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 			if test "$cf_result" = yes ; then
 				cf_x_athena_lib="$cf_lib"
@@ -24466,7 +24690,7 @@ echo "${ECHO_T}$cf_result" >&6
 done
 
 if test -z "$cf_x_athena_lib" ; then
-	{ { echo "$as_me:24469: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5
+	{ { echo "$as_me:24693: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5
 echo "$as_me: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -24557,7 +24781,7 @@ fi
 
 if test "$cf_check_cflags" != "$CFLAGS" ; then
 cat >conftest.$ac_ext <<_ACEOF
-#line 24560 "configure"
+#line 24784 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -24569,16 +24793,16 @@ printf("Hello world");
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24572: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24796: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24575: \$? = $ac_status" >&5
+  echo "$as_me:24799: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24578: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24802: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24581: \$? = $ac_status" >&5
+  echo "$as_me:24805: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -24595,7 +24819,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 
-echo "$as_me:24598: checking for XOpenDisplay in -lX11" >&5
+echo "$as_me:24822: checking for XOpenDisplay in -lX11" >&5
 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6
 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -24603,7 +24827,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 24606 "configure"
+#line 24830 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -24622,16 +24846,16 @@ XOpenDisplay ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24625: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24849: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24628: \$? = $ac_status" >&5
+  echo "$as_me:24852: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24631: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24855: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24634: \$? = $ac_status" >&5
+  echo "$as_me:24858: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_X11_XOpenDisplay=yes
 else
@@ -24642,13 +24866,13 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:24645: result: $ac_cv_lib_X11_XOpenDisplay" >&5
+echo "$as_me:24869: result: $ac_cv_lib_X11_XOpenDisplay" >&5
 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6
 if test $ac_cv_lib_X11_XOpenDisplay = yes; then
   LIBS="-lX11 $LIBS"
 fi
 
-echo "$as_me:24651: checking for XCurses library" >&5
+echo "$as_me:24875: checking for XCurses library" >&5
 echo $ECHO_N "checking for XCurses library... $ECHO_C" >&6
 if test "${cf_cv_lib_XCurses+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -24656,7 +24880,7 @@ else
 
 LIBS="-lXCurses $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 24659 "configure"
+#line 24883 "configure"
 #include "confdefs.h"
 
 #include <xcurses.h>
@@ -24671,16 +24895,16 @@ XCursesExit();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24674: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24898: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24677: \$? = $ac_status" >&5
+  echo "$as_me:24901: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24680: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24904: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24683: \$? = $ac_status" >&5
+  echo "$as_me:24907: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_lib_XCurses=yes
 else
@@ -24691,7 +24915,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:24694: result: $cf_cv_lib_XCurses" >&5
+echo "$as_me:24918: result: $cf_cv_lib_XCurses" >&5
 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6
 if test $cf_cv_lib_XCurses = yes ; then
 	cat >>confdefs.h <<\EOF
@@ -24707,14 +24931,14 @@ EOF
 EOF
 
 else
-	{ { echo "$as_me:24710: error: Cannot link with XCurses" >&5
+	{ { echo "$as_me:24934: error: Cannot link with XCurses" >&5
 echo "$as_me: error: Cannot link with XCurses" >&2;}
    { (exit 1); exit 1; }; }
 fi
 
 else
 
-echo "$as_me:24717: checking if we can include termio.h with curses" >&5
+echo "$as_me:24941: checking if we can include termio.h with curses" >&5
 echo $ECHO_N "checking if we can include termio.h with curses... $ECHO_C" >&6
 if test "${cf_cv_termio_and_curses+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -24724,7 +24948,7 @@ else
     CPPFLAGS="$CPPFLAGS -DHAVE_CONFIG_H -I. -I${srcdir-.} -I${srcdir-.}/src -I${srcdir-.}/WWW/Library/Implementation"
     touch lynx_cfg.h
     cat >conftest.$ac_ext <<_ACEOF
-#line 24727 "configure"
+#line 24951 "configure"
 #include "confdefs.h"
 
 #include <LYCurses.h>
@@ -24738,16 +24962,16 @@ putchar(0x0a)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:24741: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:24965: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:24744: \$? = $ac_status" >&5
+  echo "$as_me:24968: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:24747: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24971: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24750: \$? = $ac_status" >&5
+  echo "$as_me:24974: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_termio_and_curses=yes
 else
@@ -24760,7 +24984,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
     rm -f lynx_cfg.h
 
 fi
-echo "$as_me:24763: result: $cf_cv_termio_and_curses" >&5
+echo "$as_me:24987: result: $cf_cv_termio_and_curses" >&5
 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6
 
 test $cf_cv_termio_and_curses = yes && cat >>confdefs.h <<\EOF
@@ -24775,23 +24999,23 @@ if test $cf_cv_screen != slang ; then
 for ac_header in $cf_cv_screen/term.h term.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:24778: checking for $ac_header" >&5
+echo "$as_me:25002: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 24784 "configure"
+#line 25008 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:24788: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:25012: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:24794: \$? = $ac_status" >&5
+  echo "$as_me:25018: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -24810,7 +25034,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:24813: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:25037: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -24820,7 +25044,7 @@ EOF
 fi
 done
 
-echo "$as_me:24823: checking if curses supports alternate-character set" >&5
+echo "$as_me:25047: checking if curses supports alternate-character set" >&5
 echo $ECHO_N "checking if curses supports alternate-character set... $ECHO_C" >&6
 if test "${cf_cv_alt_char_set+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -24829,7 +25053,7 @@ else
 for mapname in acs_map _acs_map
 do
 	cat >conftest.$ac_ext <<_ACEOF
-#line 24832 "configure"
+#line 25056 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -24843,16 +25067,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24846: \"$ac_link\"") >&5
+if { (eval echo "$as_me:25070: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24849: \$? = $ac_status" >&5
+  echo "$as_me:25073: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24852: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25076: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24855: \$? = $ac_status" >&5
+  echo "$as_me:25079: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_alt_char_set=$mapname
 	 break
@@ -24866,20 +25090,20 @@ done
 
 fi
 
-echo "$as_me:24869: result: $cf_cv_alt_char_set" >&5
+echo "$as_me:25093: result: $cf_cv_alt_char_set" >&5
 echo "${ECHO_T}$cf_cv_alt_char_set" >&6
 test $cf_cv_alt_char_set != no && cat >>confdefs.h <<EOF
 #define ALT_CHAR_SET $cf_cv_alt_char_set
 EOF
 
-echo "$as_me:24875: checking if curses supports fancy attributes" >&5
+echo "$as_me:25099: checking if curses supports fancy attributes" >&5
 echo $ECHO_N "checking if curses supports fancy attributes... $ECHO_C" >&6
 if test "${cf_cv_fancy_curses+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 24882 "configure"
+#line 25106 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -24897,16 +25121,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24900: \"$ac_link\"") >&5
+if { (eval echo "$as_me:25124: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24903: \$? = $ac_status" >&5
+  echo "$as_me:25127: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24906: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25130: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24909: \$? = $ac_status" >&5
+  echo "$as_me:25133: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_fancy_curses=yes
 else
@@ -24918,13 +25142,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 
-echo "$as_me:24921: result: $cf_cv_fancy_curses" >&5
+echo "$as_me:25145: result: $cf_cv_fancy_curses" >&5
 echo "${ECHO_T}$cf_cv_fancy_curses" >&6
 test $cf_cv_fancy_curses = yes && cat >>confdefs.h <<\EOF
 #define FANCY_CURSES 1
 EOF
 
-echo "$as_me:24927: checking for function curses_version" >&5
+echo "$as_me:25151: checking for function curses_version" >&5
 echo $ECHO_N "checking for function curses_version... $ECHO_C" >&6
 if test "${cf_cv_func_curses_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -24934,7 +25158,7 @@ if test "$cross_compiling" = yes; then
   cf_cv_func_curses_version=unknown
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 24937 "configure"
+#line 25161 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -24947,15 +25171,15 @@ int main()
 
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:24950: \"$ac_link\"") >&5
+if { (eval echo "$as_me:25174: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24953: \$? = $ac_status" >&5
+  echo "$as_me:25177: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:24955: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25179: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24958: \$? = $ac_status" >&5
+  echo "$as_me:25182: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_func_curses_version=yes
 
@@ -24970,21 +25194,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 rm -f core
 fi
-echo "$as_me:24973: result: $cf_cv_func_curses_version" >&5
+echo "$as_me:25197: result: $cf_cv_func_curses_version" >&5
 echo "${ECHO_T}$cf_cv_func_curses_version" >&6
 test "$cf_cv_func_curses_version" = yes && cat >>confdefs.h <<\EOF
 #define HAVE_CURSES_VERSION 1
 EOF
 
 if test "$cf_cv_ncurses_version" != no ; then
-echo "$as_me:24980: checking for obsolete/broken version of ncurses" >&5
+echo "$as_me:25204: checking for obsolete/broken version of ncurses" >&5
 echo $ECHO_N "checking for obsolete/broken version of ncurses... $ECHO_C" >&6
 if test "${cf_cv_ncurses_broken+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 24987 "configure"
+#line 25211 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -25003,16 +25227,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:25006: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:25230: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:25009: \$? = $ac_status" >&5
+  echo "$as_me:25233: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:25012: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25236: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25015: \$? = $ac_status" >&5
+  echo "$as_me:25239: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ncurses_broken=no
 else
@@ -25024,10 +25248,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 
-echo "$as_me:25027: result: $cf_cv_ncurses_broken" >&5
+echo "$as_me:25251: result: $cf_cv_ncurses_broken" >&5
 echo "${ECHO_T}$cf_cv_ncurses_broken" >&6
 if test "$cf_cv_ncurses_broken" = yes ; then
-	{ echo "$as_me:25030: WARNING: hmm... you should get an up-to-date version of ncurses" >&5
+	{ echo "$as_me:25254: WARNING: hmm... you should get an up-to-date version of ncurses" >&5
 echo "$as_me: WARNING: hmm... you should get an up-to-date version of ncurses" >&2;}
 	cat >>confdefs.h <<\EOF
 #define NCURSES_BROKEN 1
@@ -25036,14 +25260,14 @@ EOF
 fi
 fi
 
-echo "$as_me:25039: checking if curses supports color attributes" >&5
+echo "$as_me:25263: checking if curses supports color attributes" >&5
 echo $ECHO_N "checking if curses supports color attributes... $ECHO_C" >&6
 if test "${cf_cv_color_curses+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 25046 "configure"
+#line 25270 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -25063,16 +25287,16 @@ chtype x = COLOR_BLUE;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:25066: \"$ac_link\"") >&5
+if { (eval echo "$as_me:25290: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:25069: \$? = $ac_status" >&5
+  echo "$as_me:25293: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:25072: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25296: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25075: \$? = $ac_status" >&5
+  echo "$as_me:25299: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_color_curses=yes
 else
@@ -25084,7 +25308,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 
-echo "$as_me:25087: result: $cf_cv_color_curses" >&5
+echo "$as_me:25311: result: $cf_cv_color_curses" >&5
 echo "${ECHO_T}$cf_cv_color_curses" >&6
 if test $cf_cv_color_curses = yes ; then
 	cat >>confdefs.h <<\EOF
@@ -25104,23 +25328,23 @@ unistd.h \
 
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:25107: checking for $ac_header" >&5
+echo "$as_me:25331: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 25113 "configure"
+#line 25337 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:25117: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:25341: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:25123: \$? = $ac_status" >&5
+  echo "$as_me:25347: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -25139,7 +25363,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:25142: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:25366: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -25154,23 +25378,23 @@ if test "$ISC" = yes ; then
 for ac_header in sys/termio.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:25157: checking for $ac_header" >&5
+echo "$as_me:25381: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 25163 "configure"
+#line 25387 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:25167: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:25391: \"$ac_cpp conftest.$ac_ext\"") >&5
   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
   ac_status=$?
   egrep -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:25173: \$? = $ac_status" >&5
+  echo "$as_me:25397: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -25189,7 +25413,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:25192: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:25416: result: `eval echo '${'$as_ac_Header'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
   cat >>confdefs.h <<EOF
@@ -25207,10 +25431,10 @@ if test "$ac_cv_header_termios_h" = yes ; then
 	*)	termios_bad=maybe ;;
 	esac
 	if test "$termios_bad" = maybe ; then
-	echo "$as_me:25210: checking whether termios.h needs _POSIX_SOURCE" >&5
+	echo "$as_me:25434: checking whether termios.h needs _POSIX_SOURCE" >&5
 echo $ECHO_N "checking whether termios.h needs _POSIX_SOURCE... $ECHO_C" >&6
 	cat >conftest.$ac_ext <<_ACEOF
-#line 25213 "configure"
+#line 25437 "configure"
 #include "confdefs.h"
 #include <termios.h>
 int
@@ -25222,16 +25446,16 @@ struct termios foo; int x = foo.c_iflag
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:25225: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:25449: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:25228: \$? = $ac_status" >&5
+  echo "$as_me:25452: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:25231: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25455: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25234: \$? = $ac_status" >&5
+  echo "$as_me:25458: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   termios_bad=no
 else
@@ -25239,7 +25463,7 @@ else
 cat conftest.$ac_ext >&5
 
 		cat >conftest.$ac_ext <<_ACEOF
-#line 25242 "configure"
+#line 25466 "configure"
 #include "confdefs.h"
 
 #define _POSIX_SOURCE
@@ -25253,16 +25477,16 @@ struct termios foo; int x = foo.c_iflag
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:25256: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:25480: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:25259: \$? = $ac_status" >&5
+  echo "$as_me:25483: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:25262: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25486: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25265: \$? = $ac_status" >&5
+  echo "$as_me:25489: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   termios_bad=unknown
 else
@@ -25277,12 +25501,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
-	echo "$as_me:25280: result: $termios_bad" >&5
+	echo "$as_me:25504: result: $termios_bad" >&5
 echo "${ECHO_T}$termios_bad" >&6
 	fi
 fi
 
-echo "$as_me:25285: checking declaration of size-change" >&5
+echo "$as_me:25509: checking declaration of size-change" >&5
 echo $ECHO_N "checking declaration of size-change... $ECHO_C" >&6
 if test "${cf_cv_sizechange+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -25297,7 +25521,7 @@ do
     CPPFLAGS="$cf_save_CPPFLAGS"
     test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts"
     cat >conftest.$ac_ext <<_ACEOF
-#line 25300 "configure"
+#line 25524 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #ifdef HAVE_TERMIOS_H
@@ -25341,16 +25565,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:25344: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:25568: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:25347: \$? = $ac_status" >&5
+  echo "$as_me:25571: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:25350: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25574: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25353: \$? = $ac_status" >&5
+  echo "$as_me:25577: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_sizechange=yes
 else
@@ -25369,7 +25593,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:25372: result: $cf_cv_sizechange" >&5
+echo "$as_me:25596: result: $cf_cv_sizechange" >&5
 echo "${ECHO_T}$cf_cv_sizechange" >&6
 if test "$cf_cv_sizechange" != no ; then
 	cat >>confdefs.h <<\EOF
@@ -25386,14 +25610,14 @@ EOF
 	esac
 fi
 
-echo "$as_me:25389: checking if ttytype is declared in curses library" >&5
+echo "$as_me:25613: checking if ttytype is declared in curses library" >&5
 echo $ECHO_N "checking if ttytype is declared in curses library... $ECHO_C" >&6
 if test "${cf_cv_have_ttytype+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 25396 "configure"
+#line 25620 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -25405,16 +25629,16 @@ char *x = &ttytype[1]; *x = 1
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:25408: \"$ac_link\"") >&5
+if { (eval echo "$as_me:25632: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:25411: \$? = $ac_status" >&5
+  echo "$as_me:25635: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:25414: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25638: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25417: \$? = $ac_status" >&5
+  echo "$as_me:25641: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_ttytype=yes
 else
@@ -25426,20 +25650,20 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 
-echo "$as_me:25429: result: $cf_cv_have_ttytype" >&5
+echo "$as_me:25653: result: $cf_cv_have_ttytype" >&5
 echo "${ECHO_T}$cf_cv_have_ttytype" >&6
 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF
 #define HAVE_TTYTYPE 1
 EOF
 
-echo "$as_me:25435: checking if curses supports wide characters" >&5
+echo "$as_me:25659: checking if curses supports wide characters" >&5
 echo $ECHO_N "checking if curses supports wide characters... $ECHO_C" >&6
 if test "${cf_cv_widec_curses+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 25442 "configure"
+#line 25666 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -25458,16 +25682,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:25461: \"$ac_link\"") >&5
+if { (eval echo "$as_me:25685: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:25464: \$? = $ac_status" >&5
+  echo "$as_me:25688: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:25467: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25691: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25470: \$? = $ac_status" >&5
+  echo "$as_me:25694: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_widec_curses=yes
 else
@@ -25478,7 +25702,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:25481: result: $cf_cv_widec_curses" >&5
+echo "$as_me:25705: result: $cf_cv_widec_curses" >&5
 echo "${ECHO_T}$cf_cv_widec_curses" >&6
 
 if test "$cf_cv_widec_curses" = yes ; then
@@ -25487,14 +25711,14 @@ if test "$cf_cv_widec_curses" = yes ; then
 EOF
 
 	# This is needed on Tru64 5.0 to declare mbstate_t
-	echo "$as_me:25490: checking if we must include wchar.h to declare mbstate_t" >&5
+	echo "$as_me:25714: checking if we must include wchar.h to declare mbstate_t" >&5
 echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6
 if test "${cf_cv_widec_mbstate+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 25497 "configure"
+#line 25721 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -25508,23 +25732,23 @@ mbstate_t state
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:25511: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:25735: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:25514: \$? = $ac_status" >&5
+  echo "$as_me:25738: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:25517: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25741: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25520: \$? = $ac_status" >&5
+  echo "$as_me:25744: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_widec_mbstate=no
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 cat >conftest.$ac_ext <<_ACEOF
-#line 25527 "configure"
+#line 25751 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -25539,16 +25763,16 @@ mbstate_t state
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:25542: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:25766: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:25545: \$? = $ac_status" >&5
+  echo "$as_me:25769: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:25548: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25772: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25551: \$? = $ac_status" >&5
+  echo "$as_me:25775: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_widec_mbstate=yes
 else
@@ -25560,7 +25784,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:25563: result: $cf_cv_widec_mbstate" >&5
+echo "$as_me:25787: result: $cf_cv_widec_mbstate" >&5
 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6
 
 if test "$cf_cv_widec_mbstate" = yes ; then
@@ -25579,14 +25803,14 @@ fi
 
 fi
 
-echo "$as_me:25582: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
+echo "$as_me:25806: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6
 if test "${cf_cv_need_xopen_extension+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 25589 "configure"
+#line 25813 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -25603,23 +25827,23 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:25606: \"$ac_link\"") >&5
+if { (eval echo "$as_me:25830: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:25609: \$? = $ac_status" >&5
+  echo "$as_me:25833: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:25612: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25836: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25615: \$? = $ac_status" >&5
+  echo "$as_me:25839: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_need_xopen_extension=no
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 cat >conftest.$ac_ext <<_ACEOF
-#line 25622 "configure"
+#line 25846 "configure"
 #include "confdefs.h"
 
 #define _XOPEN_SOURCE_EXTENDED
@@ -25637,16 +25861,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:25640: \"$ac_link\"") >&5
+if { (eval echo "$as_me:25864: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:25643: \$? = $ac_status" >&5
+  echo "$as_me:25867: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:25646: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25870: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25649: \$? = $ac_status" >&5
+  echo "$as_me:25873: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_need_xopen_extension=yes
 else
@@ -25658,11 +25882,11 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:25661: result: $cf_cv_need_xopen_extension" >&5
+echo "$as_me:25885: result: $cf_cv_need_xopen_extension" >&5
 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6
 test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
 
-echo "$as_me:25665: checking for term.h" >&5
+echo "$as_me:25889: checking for term.h" >&5
 echo $ECHO_N "checking for term.h... $ECHO_C" >&6
 if test "${cf_cv_term_header+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -25675,7 +25899,7 @@ for cf_header in \
 	term.h
 do
 	cat >conftest.$ac_ext <<_ACEOF
-#line 25678 "configure"
+#line 25902 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -25689,16 +25913,16 @@ WINDOW *x
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:25692: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:25916: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:25695: \$? = $ac_status" >&5
+  echo "$as_me:25919: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:25698: \"$ac_try\"") >&5
+  { (eval echo "$as_me:25922: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25701: \$? = $ac_status" >&5
+  echo "$as_me:25925: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_term_header=$cf_header
 	 break
@@ -25711,7 +25935,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:25714: result: $cf_cv_term_header" >&5
+echo "$as_me:25938: result: $cf_cv_term_header" >&5
 echo "${ECHO_T}$cf_cv_term_header" >&6
 
 case $cf_cv_term_header in #(vi
@@ -25762,10 +25986,10 @@ do
 
 cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
 
-	echo "$as_me:25765: checking for ${cf_func}" >&5
+	echo "$as_me:25989: checking for ${cf_func}" >&5
 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6
 
-echo "(line 25768) testing ${cf_func} ..." 1>&5
+echo "(line 25992) testing ${cf_func} ..." 1>&5
 
 	if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -25774,7 +25998,7 @@ else
 		eval cf_result='$ac_cv_func_'$cf_func
 		if test ".$cf_result" != ".no"; then
 			cat >conftest.$ac_ext <<_ACEOF
-#line 25777 "configure"
+#line 26001 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_XCURSES
@@ -25808,16 +26032,16 @@ exit(foo == 0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:25811: \"$ac_link\"") >&5
+if { (eval echo "$as_me:26035: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:25814: \$? = $ac_status" >&5
+  echo "$as_me:26038: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:25817: \"$ac_try\"") >&5
+  { (eval echo "$as_me:26041: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:25820: \$? = $ac_status" >&5
+  echo "$as_me:26044: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -25833,7 +26057,7 @@ fi
 
 	# use the computed/retrieved cache-value:
 	eval 'cf_result=$cf_cv_func_'$cf_func
-	echo "$as_me:25836: result: $cf_result" >&5
+	echo "$as_me:26060: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 	if test $cf_result != no; then
 		cat >>confdefs.h <<EOF
@@ -25847,12 +26071,12 @@ fi
 
 if test $use_color_style != no ; then
 	if test .$cf_cv_color_curses != .yes ; then
-		{ { echo "$as_me:25850: error: Configuration does not support color-styles" >&5
+		{ { echo "$as_me:26074: error: Configuration does not support color-styles" >&5
 echo "$as_me: error: Configuration does not support color-styles" >&2;}
    { (exit 1); exit 1; }; }
 	fi
 	if test $cf_cv_screen = slang ; then
-		{ { echo "$as_me:25855: error: Configuration does not support color-styles" >&5
+		{ { echo "$as_me:26079: error: Configuration does not support color-styles" >&5
 echo "$as_me: error: Configuration does not support color-styles" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -25860,7 +26084,7 @@ fi
 
 if test $use_scrollbar != no ; then
 	if test .$cf_cv_fancy_curses != .yes ; then
-		{ echo "$as_me:25863: WARNING: Configuration does not support ACS_xxx definitions" >&5
+		{ echo "$as_me:26087: WARNING: Configuration does not support ACS_xxx definitions" >&5
 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;}
 	else
 		cat >>confdefs.h <<\EOF
@@ -25965,7 +26189,7 @@ DEFS=-DHAVE_CONFIG_H
 : ${CONFIG_STATUS=./config.status}
 ac_clean_files_save=$ac_clean_files
 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
-{ echo "$as_me:25968: creating $CONFIG_STATUS" >&5
+{ echo "$as_me:26192: creating $CONFIG_STATUS" >&5
 echo "$as_me: creating $CONFIG_STATUS" >&6;}
 cat >$CONFIG_STATUS <<_ACEOF
 #! $SHELL
@@ -26141,7 +26365,7 @@ cat >>$CONFIG_STATUS <<\EOF
     echo "$ac_cs_version"; exit 0 ;;
   --he | --h)
     # Conflict between --help and --header
-    { { echo "$as_me:26144: error: ambiguous option: $1
+    { { echo "$as_me:26368: error: ambiguous option: $1
 Try \`$0 --help' for more information." >&5
 echo "$as_me: error: ambiguous option: $1
 Try \`$0 --help' for more information." >&2;}
@@ -26160,7 +26384,7 @@ Try \`$0 --help' for more information." >&2;}
     ac_need_defaults=false;;
 
   # This is an error.
-  -*) { { echo "$as_me:26163: error: unrecognized option: $1
+  -*) { { echo "$as_me:26387: error: unrecognized option: $1
 Try \`$0 --help' for more information." >&5
 echo "$as_me: error: unrecognized option: $1
 Try \`$0 --help' for more information." >&2;}
@@ -26213,7 +26437,7 @@ do
   "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
   "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
   "$CONFIG_H" ) CONFIG_HEADERS="$CONFIG_HEADERS $CONFIG_H:config.hin" ;;
-  *) { { echo "$as_me:26216: error: invalid argument: $ac_config_target" >&5
+  *) { { echo "$as_me:26440: error: invalid argument: $ac_config_target" >&5
 echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
    { (exit 1); exit 1; }; };;
   esac
@@ -26377,11 +26601,14 @@ s,@GT_YES@,$GT_YES,;t t
 s,@GT_NO@,$GT_NO,;t t
 s,@INTLDIR_CPPFLAGS@,$INTLDIR_CPPFLAGS,;t t
 s,@NLS_DATADIR@,$NLS_DATADIR,;t t
+s,@LYNX_CFG_FILE@,$LYNX_CFG_FILE,;t t
 s,@CHARSET_DEFS@,$CHARSET_DEFS,;t t
 s,@LIBOBJS@,$LIBOBJS,;t t
+s,@LYNX_LSS_FILE@,$LYNX_LSS_FILE,;t t
 s,@INSTALL_LSS@,$INSTALL_LSS,;t t
 s,@LYNXCFG_MAKE@,$LYNXCFG_MAKE,;t t
 s,@LYNXCFG_URL@,$LYNXCFG_URL,;t t
+s,@EXTRA_OBJS@,$EXTRA_OBJS,;t t
 s,@SETFONT@,$SETFONT,;t t
 s,@TELNET@,$TELNET,;t t
 s,@TN3270@,$TN3270,;t t
@@ -26524,7 +26751,7 @@ done; }
   esac
 
   if test x"$ac_file" != x-; then
-    { echo "$as_me:26527: creating $ac_file" >&5
+    { echo "$as_me:26754: creating $ac_file" >&5
 echo "$as_me: creating $ac_file" >&6;}
     rm -f "$ac_file"
   fi
@@ -26542,7 +26769,7 @@ echo "$as_me: creating $ac_file" >&6;}
       -) echo $tmp/stdin ;;
       [\\/$]*)
          # Absolute (can't be DOS-style, as IFS=:)
-         test -f "$f" || { { echo "$as_me:26545: error: cannot find input file: $f" >&5
+         test -f "$f" || { { echo "$as_me:26772: error: cannot find input file: $f" >&5
 echo "$as_me: error: cannot find input file: $f" >&2;}
    { (exit 1); exit 1; }; }
          echo $f;;
@@ -26555,7 +26782,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
            echo $srcdir/$f
          else
            # /dev/null tree
-           { { echo "$as_me:26558: error: cannot find input file: $f" >&5
+           { { echo "$as_me:26785: error: cannot find input file: $f" >&5
 echo "$as_me: error: cannot find input file: $f" >&2;}
    { (exit 1); exit 1; }; }
          fi;;
@@ -26621,7 +26848,7 @@ for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
   * )   ac_file_in=$ac_file.in ;;
   esac
 
-  test x"$ac_file" != x- && { echo "$as_me:26624: creating $ac_file" >&5
+  test x"$ac_file" != x- && { echo "$as_me:26851: creating $ac_file" >&5
 echo "$as_me: creating $ac_file" >&6;}
 
   # First look for the input files in the build tree, otherwise in the
@@ -26632,7 +26859,7 @@ echo "$as_me: creating $ac_file" >&6;}
       -) echo $tmp/stdin ;;
       [\\/$]*)
          # Absolute (can't be DOS-style, as IFS=:)
-         test -f "$f" || { { echo "$as_me:26635: error: cannot find input file: $f" >&5
+         test -f "$f" || { { echo "$as_me:26862: error: cannot find input file: $f" >&5
 echo "$as_me: error: cannot find input file: $f" >&2;}
    { (exit 1); exit 1; }; }
          echo $f;;
@@ -26645,7 +26872,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
            echo $srcdir/$f
          else
            # /dev/null tree
-           { { echo "$as_me:26648: error: cannot find input file: $f" >&5
+           { { echo "$as_me:26875: error: cannot find input file: $f" >&5
 echo "$as_me: error: cannot find input file: $f" >&2;}
    { (exit 1); exit 1; }; }
          fi;;
@@ -26763,7 +26990,7 @@ cat >>$CONFIG_STATUS <<\EOF
   rm -f $tmp/in
   if test x"$ac_file" != x-; then
     if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
-      { echo "$as_me:26766: $ac_file is unchanged" >&5
+      { echo "$as_me:26993: $ac_file is unchanged" >&5
 echo "$as_me: $ac_file is unchanged" >&6;}
     else
       ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
diff --git a/configure.in b/configure.in
index 76967b7b..05334d53 100644
--- a/configure.in
+++ b/configure.in
@@ -2,10 +2,30 @@ dnl Process this file with autoconf to produce a configure script.
 dnl written jan/1997
 dnl by T.E.Dickey <dickey@invisible-island.net>
 dnl and Jim Spath <jspath@mail.bcpl.lib.md.us>
+dnl ---------------------------------------------------------------------------
+dnl Copyright 1997-2005,2006 by Thomas E. Dickey
+dnl 
+dnl Permission to use, copy, modify, and distribute this software and its
+dnl documentation for any purpose and without fee is hereby granted,
+dnl provided that the above copyright notice appear in all copies and that
+dnl both that copyright notice and this permission notice appear in
+dnl supporting documentation, and that the name of the above listed
+dnl copyright holder(s) not be used in advertising or publicity pertaining
+dnl to distribution of the software without specific, written prior
+dnl permission.
+dnl 
+dnl THE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD
+dnl TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+dnl AND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE
+dnl LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+dnl WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+dnl ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+dnl OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+dnl ---------------------------------------------------------------------------
 dnl
 dnl ask PRCS to plug-in the project-version for the configure-script.
 dnl $Format: "AC_REVISION($ProjectVersion$)"$
-AC_REVISION(2.8.6dev.18)
+AC_REVISION(2.8.6dev.19)
 
 # Save the original $CFLAGS so we can distinguish whether the user set those
 # in the environment, or whether autoconf added -O and -g options:
@@ -37,7 +57,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.6dev.18
+VERSION=2.8.6dev.19
 AC_SUBST(PACKAGE)
 AC_SUBST(VERSION)
 AC_SUBST(DESTDIR)
@@ -357,6 +377,7 @@ fi
 fi
 
 CF_XOPEN_SOURCE(600,199506L)
+CF_SIGWINCH
 
 dnl Collect tests for compiler options into one place
 if test -n "$TRY_CFLAGS" ; then
@@ -434,6 +455,8 @@ curses|ncurses*)
 	;;
 esac
 
+cf_wide_curses=no
+dft_color_style=yes
 case $cf_cv_screen in
 curses)
 	CF_CURSES_CPPFLAGS
@@ -452,6 +475,7 @@ ncursesw)
 	CF_NCURSES_CPPFLAGS(ncursesw)
 	CF_NCURSES_LIBS(ncursesw)
 	CF_NCURSES_VERSION
+	cf_wide_curses=yes
 	;;
 pdcurses)
 	cf_cv_ncurses_header=xcurses.h
@@ -459,19 +483,31 @@ pdcurses)
 	;;
 slang)
 	CF_SLANG_UNIX_DEFS
+	dft_color_style=no
 	;;
 esac
 
-dnl Get the actual value for $libdir, which we will compile into Lynx as part of
-dnl the config pathnames.
-eval cf_libdir=$libdir
-cf_libdir=`echo $cf_libdir | sed -e s%'^NONE/'%$prefix/% -e s%'^NONE/'%$ac_default_prefix/%`
+AC_MSG_CHECKING(if you want the wide-curses features)
+CF_ARG_ENABLE(widec, 
+[  --enable-widec          enable wide-curses features], 
+	[use_wide_curses=$enableval],
+	[use_wide_curses=$cf_wide_curses])
+AC_MSG_RESULT($use_wide_curses)
+
+AC_MSG_CHECKING(for the default configuration-file)
+
+CF_WITH_PATH(cfg-file,
+[  --with-cfg-file{=path}  specify the default configuration file
+                         ],
+LYNX_CFG_FILE,
+LIBDIR/lynx.cfg,
+$libdir/lynx.cfg)
 
-AC_MSG_CHECKING(for location of config-file)
-LYNX_CFG_FILE=$cf_libdir/lynx.cfg
-AC_DEFINE_UNQUOTED(LYNX_CFG_FILE,"$LYNX_CFG_FILE")
 AC_MSG_RESULT($LYNX_CFG_FILE)
 
+test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE=
+AC_DEFINE_UNQUOTED(LYNX_CFG_FILE,"$LYNX_CFG_FILE")
+
 dnl --------------------------------------------------------------------------
 dnl Check for subsets of compiled-in tables.
 dnl --------------------------------------------------------------------------
@@ -692,10 +728,10 @@ if test $use_ja_utf8 != no ; then
 fi
 
 AC_MSG_CHECKING(if color-style code should be used)
-CF_ARG_ENABLE(color-style,
-[  --enable-color-style    use optional/experimental color style (ncurses/curses)],
+CF_ARG_DISABLE(color-style,
+[  --disable-color-style   use color style (ncurses/curses)],
 	[use_color_style=$enableval],
-	[use_color_style=no])
+	[use_color_style=$dft_color_style])
 
 case $use_color_style in
 no)
@@ -707,9 +743,19 @@ no)
 	AC_MSG_RESULT(yes)
 
 	AC_MSG_CHECKING(for location of style-sheet file)
-	LYNX_LSS_FILE=$cf_libdir/lynx.lss
-	AC_DEFINE_UNQUOTED(LYNX_LSS_FILE,"$LYNX_LSS_FILE")
+
+CF_WITH_PATH(lss-file,
+[  --with-lss-file{=path}  specify the default style-sheet file
+                         ],
+LYNX_LSS_FILE,
+LIBDIR/lynx.lss,
+$libdir/lynx.lss)
+
 	AC_MSG_RESULT($LYNX_LSS_FILE)
+
+	test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE=
+	AC_DEFINE_UNQUOTED(LYNX_LSS_FILE,"$LYNX_LSS_FILE")
+
 	INSTALL_LSS=install-lss
 	;;
 esac
@@ -877,6 +923,8 @@ CF_ARG_DISABLE(source-cache,
 AC_MSG_RESULT($use_source_cache)
 test $use_source_cache != no && AC_DEFINE(USE_SOURCE_CACHE)
 
+AC_SUBST(EXTRA_OBJS)
+
 AC_MSG_CHECKING(if you want to use external commands)
 CF_ARG_ENABLE(externs,
 [  --enable-externs        use external commands],
@@ -885,7 +933,7 @@ CF_ARG_ENABLE(externs,
 AC_MSG_RESULT($use_externs)
 if test $use_externs != "no" ; then
 	AC_DEFINE(USE_EXTERNALS)
-	LIBOBJS="$LIBOBJS LYExtern\$o"
+	EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o"
 fi
 
 AC_MSG_CHECKING(if you want to use setfont support)
@@ -1059,7 +1107,7 @@ CF_ARG_DISABLE(dired,
 AC_MSG_RESULT($use_dired)
 
 if test ".$use_dired" != ".no" ; then
-	LIBOBJS="$LIBOBJS LYLocal\$o"
+	EXTRA_OBJS="$EXTRA_OBJS LYLocal\$o"
 	AC_DEFINE(DIRED_SUPPORT)
 
 	AC_MSG_CHECKING(if you wish to allow extracting from archives via DirEd)
@@ -1185,7 +1233,9 @@ if test $cf_cv_screen != slang ; then
 	CF_COLOR_CURSES
 	CF_SIZECHANGE
 	CF_TTYTYPE
-	CF_WIDEC_CURSES
+	if test "$use_wide_curses" = yes ; then
+		CF_WIDEC_CURSES
+	fi
 	CF_CURSES_FUNCS( \
 		assume_default_colors \
 		cbreak \
diff --git a/docs/README.sslcerts b/docs/README.sslcerts
index 09de6277..9cbd0eb9 100644
--- a/docs/README.sslcerts
+++ b/docs/README.sslcerts
@@ -4,33 +4,33 @@ BACKGROUND:
 
 The original README.ssl document for lynx stated:
 
-	Note that the server... may not have a valid certificate. Lynx will not 
+	Note that the server... may not have a valid certificate. Lynx will not
 	complain, as it does not yet support certificates...
 
-Such lack of support is no longer the case.  Lynx now features excellent 
-certificate management through the openssl project.  There is almost no 
-online documentation available regarding how to use openssl's certificate 
-management with other programs, so this will accompany lynx and hopefully 
-encourage good practical security for unix clients. 
+Such lack of support is no longer the case.  Lynx now features excellent
+certificate management through the openssl project.  There is almost no
+online documentation available regarding how to use openssl's certificate
+management with other programs, so this will accompany lynx and hopefully
+encourage good practical security for unix clients.
 
 Lynx relies on openssl to not only encrypt connections over https, but also to
-determine whether it should even accept a certificate and establish a secure 
-connection with a remote host. Because of this reliance upon openssl by lynx, 
+determine whether it should even accept a certificate and establish a secure
+connection with a remote host. Because of this reliance upon openssl by lynx,
 most of this tutorial deals with how to use openssl to "install" both
-commercial CA cert bundles as well as self-signed certs from trusted sources 
-and, most importantly, how to get them recognized by lynx. 
+vendor-provided CA cert bundles as well as self-signed certs from trusted
+sources and, most importantly, how to get them recognized by lynx.
 
-While lynx on many systems will transparently accept valid certificates, not 
-all systems enjoy such functionality. Further, as noted above, older versions 
-of lynx do not perform any validity checks on a certificate. 
+While lynx on many systems will transparently accept valid certificates, not
+all systems enjoy such functionality. Further, as noted above, older versions
+of lynx do not perform any validity checks on a certificate.
 
-There is also the common case of wanting to trust, use and install a 
-self-signed certificate from a known server source and have it be trusted by 
+There is also the common case of wanting to trust, use and install a
+self-signed certificate from a known server source and have it be trusted by
 client programs.
 
 Briefly, the procedure will involve confirming the default system location for
-certificates, possibly setting values for SSL_CERT_DIR and SSL_CERT_FILE in 
-the environment, and converting and hashing the certificates using openssl 
+certificates, possibly setting values for SSL_CERT_DIR and SSL_CERT_FILE in
+the environment, and converting and hashing the certificates using openssl
 utilities to enable recognition.
 
 THE CURRENT SITUATION:
@@ -42,43 +42,47 @@ Since lynx2.8.5.dev9, lynx has reported this openssl error:
 SSL error:unable to get local issuer certificate-Continue? (y)
 
 whenever an https connection was initiated and the certificate could not be
-found,  for whatever reason, by openssl, and therefore lynx. 
+found, for whatever reason, by openssl, and therefore lynx.
 
-This checking for a certificate is an enhancement to security, but rather 
-tediously generates errors at each https browser request. 
+This checking for a certificate is an enhancement to security, but rather
+tediously generates errors at each https browser request.
 
-The ability to turn off reporting of this error to the user was added to 
+The ability to turn off reporting of this error to the user was added to
 lynx2.8.5dev16 as the FORCE_SSL_PROMPT setting in lynx.cfg as noted in the
 CHANGELOG:
 
-	This lets the user decide whether to ignore prompting for questionable 
-	aspects of an SSL connection.  
+	This lets the user decide whether to ignore prompting for questionable
+	aspects of an SSL connection.
 
-While this is a convenient setting to employ when using lynx to script 
-https -dumps, it by definition ignores the issue of certificate validity 
-altogether. Those concerned with proper certificate management and 
-the maintenance of a store of updated CA certificates will be uncomfortable 
+While this is a convenient setting to employ when using lynx to script
+https -dumps, it by definition ignores the issue of certificate validity
+altogether. Those concerned with proper certificate management and
+the maintenance of a store of updated CA certificates will be uncomfortable
 with this relaxed security setting.
 
+The ability to accept a 'wildcard' certificate, where the first character
+is a '*' was added to lynx2.8.6dev18.
+
 PRELIMINARY PROCEDURES:
 
-It is assumed that openssl has been installed correctly, that the default 
-cert directory is /usr/local/ssl/certs, (it's often /etc/ssl/certs, but we 
-need a point of departure for the discussion) and that lynx has been compiled 
---with-ssl. 
+It is assumed that openssl has been installed correctly, that the default
+cert directory is /usr/local/ssl/certs, (it's often /etc/ssl/certs, but we
+need a point of departure for the discussion) and that lynx has been compiled
+--with-ssl.
 
-The default location for certs on your system may be different, or there may not
-be one. You will have to substitute that location for /usr/local/ssl/certs in 
-the following instructions, and/or set environment variables.
+The default location for certs on your system may be different, or there may
+not be one.  You will have to substitute that location for
+	/usr/local/ssl/certs
+in the following instructions, and/or set environment variables.
 
-To determine the default location for certs on your system you may run the 
-following command: 
+To determine the default location for certs on your system you may run the
+following command:
 
 strings libcrypto.a  | grep -in cert | less
 
 Look in this output for SSL_CERT_DIR and SSL_CERT_FILE, and the lines just
-above them. This is your default location, respectively, for certificates, 
-and the CA cert bundle, cert.pem. You will need to know where libcrypto.a is 
+above them. This is your default location, respectively, for certificates,
+and the CA cert bundle, cert.pem. You will need to know where libcrypto.a is
 found of course.
 
 Example output:
@@ -99,33 +103,34 @@ Other possible example output:
 31558:SSL_CERT_FILE
 <snip>
 
-Note that when OpenSSL is installed, the c_rehash utility is installed in a 
-binary directory (default /usr/local/ssl/bin).  You will need to know where it 
+Note that when OpenSSL is installed, the c_rehash utility is installed in a
+bin directory (default /usr/local/ssl/bin).  You will need to know where it
 is on your system. The command:
 
-whereis c_rehash 
+whereis c_rehash
 
 will probably give useful results.
 
-Note also that there is no CA cert bundle distributed with OpenSSL. The 
-OpenSSL team specifically decided NOT to do that. Getting a set of trusted 
-certificates is left up to the installer. 
+Note also that there is no CA cert bundle distributed with OpenSSL. The
+OpenSSL team specifically decided NOT to do that. Getting a set of trusted
+certificates is left up to the installer.
 
-It is a fairly trivial procedure to pull the bundle of trusted root certs out 
-of a recent version of Internet Explorer. The mod_ssl project also provides 
-them.  The procedure to convert and install them is detailed later in this 
-document, and if you simply need to have commercially provided certificates 
-trusted by lynx, you can skip down a few lines to the INSTALLING OR UPDATING 
+It is a fairly trivial procedure to pull the bundle of trusted root certs out
+of a recent version of Internet Explorer. The MirOS BSD project also provides
+them. The procedure to convert and install them is detailed later in this
+document, and if you simply need to have commercially provided certificates
+trusted by lynx, you can skip down a few lines to the INSTALLING OR UPDATING
 THE CA BUNDLE section.
 
 INSTALLING A SELF-SIGNED CERTIFICATE:
 
-When you would like to trust a self-signed (non-commercial) certificate you will
-need to get hold of the actual file. If it's a cert local to your network you
-can ask the sysadmin to make it available for download as a link on a webpage.
+When you would like to trust a self-signed (non-commercial) certificate you
+will need to get hold of the actual file.  If it's a cert local to your
+network you can ask the sysadmin to make it available for download as a link
+on a webpage.
 
-If such file is not human-readable it's probably DER formatted and will need to 
-be converted to PEM format to allow openssl to use it.
+If such file is not human-readable it's probably DER formatted and will need
+to be converted to PEM format to allow openssl to use it.
 
 To convert DER formatted certificates into something openssl can deal with:
 
@@ -134,14 +139,14 @@ Save the cert as site_name.crt in a directory. In that directory, type:
 openssl x509 -inform DER -in site_name.crt -outform PEM -out site_name.pem
 
 You can now copy this individual cert into the directory for that, usually
-/usr/local/ssl/certs.  The alternative is to concatenate the individual certs 
-to the cert.pem bundle in /usr/local/ssl. (Please see INSTALLING OR UPDATING 
-THE CA BUNDLE below). 
+/usr/local/ssl/certs.  The alternative is to concatenate the individual certs
+to the cert.pem bundle in /usr/local/ssl. (Please see INSTALLING OR UPDATING
+THE CA BUNDLE below).
 
-The cert file will now be in an acceptable format to openssl, PEM encoded. 
-However, openssl, and by extension lynx, will not know about it until that 
-cert is present in a file named after the hash value of that cert, in the 
-default directory /usr/local/ssl/certs.
+The cert file will now be in an acceptable format to openssl, PEM encoded.
+However, openssl, and by extension lynx, will not know about it until that
+cert is symbolically linked to a file named after the hash value of that cert,
+in the default directory /usr/local/ssl/certs.
 
 So the next thing to do is to hash the cert using c_rehash.
 
@@ -150,26 +155,38 @@ INSTALLING OR UPDATING THE CA BUNDLE:
 Now would be a good time to check to see if you have the bundle of CA certs
 /usr/local/ssl/cert.pem, or to update them.
 
-CA bundles are available in various places, such as the modssl distribution, 
-for those who want to take that route, or you can extract the current bundle 
-from a current version of Netscape or Internet Explorer (export them all from 
-IE and transfer it onto your system). 
+CA bundles are available in various places, such as the MirBSD distribution,
+for those who want to take that route, or you can extract the current bundle
+from a current version of Internet Explorer (export them all from IE and
+transfer it onto your system).
+
+From MirOS, this cert bundle
+
+http://cvs.mirbsd.de/src/etc/ssl.certs.shar
 
-From IE it extracts as a PKCS7 file and needs to be converted with something 
+includes the cacert.org certificate.  Download the latest revision; read the
+file to see how to get the certs out.
+
+No hashing is necessary with this set of certs; it is already done; ignore
+the c_rehash usage below for this bundle.
+
+From IE certs extract as a PKCS7 file and need to be converted with something
 like:
 
-openssl pkcs7 -inform DER -in bundle.crt -outform PEM -out cert.pem \ 
+openssl pkcs7 -inform DER -in bundle.crt -outform PEM -out cert.pem \
 -print_certs -text
 
-The resulting cert.pem file should be copied to the default directory for 
-bundles (usually /usr/local/ssl) and renamed to "cert.pem". It will also 
-process just fine if it is present and hashed in /usr/local/ssl/certs.
+The resulting cert.pem file should be copied to the default directory for
+bundles (usually /usr/local/ssl) and renamed to "cert.pem", assuming that is
+the SSL_CERT_FILE.
+
+Individual certs can also process if added and hashed in /usr/local/ssl/certs.
 
-We now have all of the individual certs we wish to trust in our certs 
-directory, and the most recent bundle of CA certs as well. 
+We now have all of the individual certs we wish to trust in our certs
+directory, and the most recent bundle of CA certs as well.
 
-Confirm that you have the script c_rehash (See PRELIMINARY PROCEDURES; if it is 
-not found, a copy is usually located in the tools directory of the openssl 
+Confirm that you have the script c_rehash (See PRELIMINARY PROCEDURES; if it
+is not found, a copy is usually located in the tools directory of the openssl
 source tree. If you use this copy, it needs the execute bit set or it will not
 run).
 
@@ -177,9 +194,9 @@ Run:
 
 ./c_rehash
 
-The c_rehash utility is a perl script that runs openssl commands which creates 
-the files named after the hash values of the certs in the default directory 
-for certs. 
+The c_rehash utility is a perl script that runs openssl commands which creates
+the files named after the hash values of the certs in the default directory
+for certs.
 
 Its output looks like this:
 
@@ -196,11 +213,11 @@ SETTING AND EXPORTING ENVIRONMENT VARIABLES:
 If lynx is still not recognizing certs, environment variables may need
 to be set; if on a sh type shell, the variables also need to be exported.
 
-The environment variables SSL_CERT_DIR and SSL_CERT_FILE only need to be set 
+The environment variables SSL_CERT_DIR and SSL_CERT_FILE only need to be set
 if a non-default location is used for certificates, or if certs just can't be
-found by lynx. They may be set as follows in /etc/profile, or a shell 
-initialization .profile or .*shrc, if we run a non csh type shell, according 
-to the results of the search for the default location for certs procedure 
+found by lynx. They may be set as follows in /etc/profile, or a shell
+initialization .profile or .*shrc, if we run a non csh type shell, according
+to the results of the search for the default location for certs procedure
 (See PRELIMINARY PROCEDURES):
 
 SSL_CERT_DIR="/usr/local/ssl/certs"
@@ -211,13 +228,14 @@ On csh type shells, you can use:
 setenv SSL_CERT_DIR "/usr/local/ssl/certs"
 setenv SSL_CERT_FILE "/usr/local/ssl/cert.pem"
 
-On some systems setting and exporting them makes all the difference. Apparently 
-this is often not an issue on other systems, but this might help someone 
+On many systems setting and exporting them makes all the difference. 
+Apparently this is not an issue on other systems, but this might help someone
 somewhere.
 
-Note that the environment variable SSL_CERT_FILE applies to the cert-bundle 
-if used outside of the default location (/usr/local/ssl/cert.pem) compiled 
-into OpenSSL. There are issues with SSL_CERT_FILE in 0.9.6x versions of openssl.
+Note that the environment variable SSL_CERT_FILE applies to the cert-bundle
+if used outside of the default location (/usr/local/ssl/cert.pem) compiled
+into OpenSSL.  There are issues with SSL_CERT_FILE in 0.9.6x versions of
+openssl.
 
 Make sure you have FORCE_SSL_PROMPT set to PROMPT in lynx.cfg like so:
 
@@ -228,9 +246,9 @@ will still get this error for untrusted certs:
 
 SSL error:self signed certificate-Continue? (y)
 
-A quick check confirms that these procedures have the same effect with ssl 
+A quick check confirms that these procedures have the same effect with ssl
 errors in the pine program.
 
---Stef Caunter <cauntes@mail.mohawkc.on.ca>
+Stef Caunter <stefan.caunter@mohawkcollege.ca>
 Mohawk College Department of Computer Science
 Hamilton Ontario Canada
diff --git a/fixtext.sh b/fixtext.sh
deleted file mode 100755
index 1f5c1abd..00000000
--- a/fixtext.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-# xgettext only processes literal strings.  Someone with a poor sense of humor
-# decided to ignore strings in preprocessor lines.  So we construct a fake
-# ".c" file with the definitions turned into literals.
-
-sed	-e 's/")/");/' \
-	-e 's/^#define[ 	]*\([^ 	]*\)[ 	]*gettext/char *\1 = gettext/' \
-	-e 's,^#define[ 	]*\([^ 	]*\)[ 	]*\\,/* #define \1 */char *\1 = \\,' \
-	$*
diff --git a/lynx.cfg b/lynx.cfg
index 48e5d09b..a3e3f28c 100644
--- a/lynx.cfg
+++ b/lynx.cfg
@@ -3,10 +3,10 @@
 #                                     or Lynx_Dir:lynx.cfg (VMS)
 #
 # $Format: "#PRCS LYNX_VERSION \"$ProjectVersion$\""$
-#PRCS LYNX_VERSION "2.8.6dev.18"
+#PRCS LYNX_VERSION "2.8.6dev.19"
 #
 # $Format: "#PRCS LYNX_DATE \"$ProjectDate$\""$
-#PRCS LYNX_DATE "Mon, 29 May 2006 15:44:54 -0700"
+#PRCS LYNX_DATE "Thu, 31 Aug 2006 16:37:53 -0700"
 #
 # Definition pairs are of the form  VARIABLE:DEFINITION
 # NO spaces are allowed between the pair items.
@@ -22,7 +22,7 @@
 
 # An HTML'ized description of all settings (based on comments in this file,
 # with alphabetical table of settings and with table of settings by category)
-# is available at http://lynx.isc.org/release/lynx_help/alphatoc.html
+# is available at http://lynx.isc.org/release/lynx2-8-5/lynx_help/cattoc.html
 #
 ### The conversion is done via the scripts/cfg2html.pl script.
 ### Several directives beginning with '.' are used for this purpose.
@@ -2946,6 +2946,21 @@ COLOR:6:brightred:black
 #COLOR:7:magenta:cyan
 
 
+.h2 COLOR_STYLE
+# Also known as "lss" (lynx style-sheet), the color-style file assigns color
+# combination to tags and combinations of tags.  Normally a non-empty value
+# is compiled into lynx, and the user can override that using the -lss 
+# command-line option.  The configure script allows one to compile in an
+# empty string.  If lynx finds no value for this setting, it simulates the
+# non-color-style assignments using the COLOR settings.
+#
+# If neither the command-line "-lss" or this COLOR_STYLE setting are given,
+# lynx tries the environment variables "LYNX_LSS" and "lynx_lss".  If neither
+# is set, lynx uses the compiled-in value (which as noted, may be empty).
+#
+# COLOR_STYLE: lynx.lss
+
+
 .h2 ASSUMED_COLOR
 # If built with a library that recognizes default colors (usually ncurses or
 # slang), lynx initializes it to assume the corresponding foreground and
diff --git a/lynx.hlp b/lynx.hlp
index 6a4d23cb..254ca09d 100644
--- a/lynx.hlp
+++ b/lynx.hlp
@@ -1,4 +1,4 @@
-1
+1 LYNX
 2 Name
        lynx  - a general purpose distributed information browser for the World
        Wide Web
@@ -576,7 +576,16 @@
 
        -source
               works the same as  dump  but  outputs  HTML  source  instead  of
-              formatted text.
+              formatted text.  For example
+
+              lynx -source . >foo.html
+
+              generates   HTML   source  listing  the  files  in  the  current
+              directory.  Each file is marked  by  an  HREF  relative  to  the
+              parent  directory.   Add  a  trailing  slash  to make the HREF's
+              relative to the current directory:
+
+              lynx -source ./ >foo.html
 
        -stack_dump
               disable SIGINT cleanup handler
@@ -584,6 +593,12 @@
        -startfile_ok
               allow non-http startfile and homepage with -validate.
 
+       -stderr
+              When dumping a document using -dump or  -source,  Lynx  normally
+              does  not  display  alert  (error)  messages that you see on the
+              screen in the status line.  Use the -stderr option to tell  Lynx
+              to write these messages to the standard error.
+
        -stdin read the startfile from standard input (UNIX only).
 
        -syslog=text
diff --git a/lynx.man b/lynx.man
index 08aab2ba..35516bb6 100644
--- a/lynx.man
+++ b/lynx.man
@@ -681,6 +681,19 @@ treated '>' as a co-terminator for double-quotes and tags.
 .B \-source
 works the same as dump but outputs HTML source instead of
 formatted text.
+For example
+.sp
+.RS
+lynx -source . >foo.html
+.RE
+.IP
+generates HTML source listing the files in the current directory.
+Each file is marked by an HREF relative to the parent directory.
+Add a trailing slash to make the HREF's relative to the current directory:
+.sp
+.RS
+lynx -source ./ >foo.html
+.RE
 .TP
 .B \-stack_dump
 disable SIGINT cleanup handler
@@ -688,6 +701,13 @@ disable SIGINT cleanup handler
 .B \-startfile_ok
 allow non-http startfile and homepage with \fB\-validate\fR.
 .TP
+.B \-stderr
+When dumping a document using \fB\-dump\fR or \fB\-source\fR,
+Lynx normally does not display alert (error)
+messages that you see on the screen in the status line.
+Use the \fB\-stderr\fR option to tell Lynx to write these messages
+to the standard error.
+.TP
 .B \-stdin
 read the startfile from standard input
 (UNIX only).
diff --git a/lynx_help/Lynx_users_guide.html b/lynx_help/Lynx_users_guide.html
index 6e04325c..95e57245 100644
--- a/lynx_help/Lynx_users_guide.html
+++ b/lynx_help/Lynx_users_guide.html
@@ -1371,7 +1371,7 @@ commands.
             ability to create a log can be toggled on with
             the <em>-tlog</em> switch.   Note that this ability is
             probably disabled in anonymous or validation accounts.
-   <dt><A NAME="*-key"><em>*</em></A>
+   <dt><A NAME="asterisk-key"><em>*</em></A>
         <dd>The '<em>*</em>' command toggles image_links mode on and off.
             When on, links will be created for all images, including inline images.
             If you have an image viewer mapped to the image's MIME type, you
@@ -1382,7 +1382,7 @@ commands.
             When on, the charset is assumed to match the selected character
             set and 8-bit characters are not reverse translated with respect
             to the ISO-8859-1 conversion tables.
-   <dt><A NAME="[-key"><em>[</em></A>
+   <dt><A NAME="lbracket-key"><em>[</em></A>
         <dd>The '<em>[</em>' command toggles pseudo_inlines mode on and off.
             When on, inline images which have no ALT string specified will
             have an <em>[INLINE]</em> pseudo-ALT string inserted in the Lynx
@@ -2884,12 +2884,28 @@ where
                     double-quotes and tags.
              <dt><code>-source</code>
                 <dd>works the same as dump but outputs HTML source instead of
-                    formatted text.
+                    formatted text.  For example
+                    <pre><tt>
+                    lynx -source . >foo.html
+                    </tt></pre>
+                    generates HTML source listing the  files  in  the  current
+                    directory. Each file is marked by an HREF relative to  the
+                    parent directory. Add a trailing slash  to make the HREF's
+                    relative to the current directory:
+                    <pre><tt>
+                    lynx -source ./ >foo.html
+                    </tt></pre>
              <dt><code>-stack_dump</code>
                 <dd>disable SIGINT cleanup handler.
              <dt><code>-startfile_ok</code>
                 <dd>allow non-http startfile and homepage with
                     <em>-validate</em>.
+             <dt><code>-stderr</code>
+                <dd>When dumping a document using <code>-dump</code> or
+                    <code>-source</code>, Lynx normally does not display alert
+                    (error) messages that you see on the screen in the status
+                    line.  Use the <code>-stderr</code> option to tell Lynx to
+                    write these messages to the standard error.
              <dt><code>-stdin</code>
                 <dd>read the startfile from standard input
                     (UNIX only).
diff --git a/po/ca.po b/po/ca.po
index 357a00f9..9bd02eb5 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.5pre15\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2003-07-06 18:12+0200\n"
 "Last-Translator: Carles Sadurní Anguita <isard@ctv.es>\n"
 "Language-Team: Catalan <ca@dodds.net>\n"
@@ -2248,7 +2248,7 @@ msgstr "(Sense nom)"
 msgid "(No value.)"
 msgstr "(Sense valor)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr ""
 
@@ -2551,143 +2551,148 @@ msgstr "No es pot reintentar sense autorització del proxy! Poseu-vos en contacte
 msgid "Retrying with proxy authorization information."
 msgstr "Reintent amb la informació de autorització del servidor intermediari (proxy)."
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "Error SSL: servidor(%s)!=cert(%s). Voleu continuar?"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: El missatge de retorn és massa llarg."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Introduïu la consulta de tipus WAIS:"
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Reintentant com a sol·licitud HTTP0."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "%d bytes transferits"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Transferència completa"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Error mentre es processava la línia %d de %s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Pàgina d'adreces"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Agenda d'adreces d'interés"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Configuració"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Pot de les galetes (cookie jar) :-)"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Combinacions de tecles actual"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Opcions d'administració de fitxers"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Opcions de descàrrega"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Historial"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr ""
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Informació del fitxer lynx.cfg"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Fitxer d'adreces d'interés de Mosaic convertit"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Menú d'opcions"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Opcions dels permissos dels fitxers"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Opcions d'impressió"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Informació del document actual"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "Missatges recents apareguts en la línia d'estat"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Opcions de càrrega"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Pàgina dels enllaços visitats"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Vegeu també"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr ""
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "opcions en temps d'execució"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "opcions en temps de compilació"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 #, fuzzy
 msgid "color-style configuration"
 msgstr "Configuració primària"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "última versió"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "versió de prova"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "versió de desenvolupament"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2698,7 +2703,7 @@ msgstr ""
 "per favor, incloeu una còpia d'aquesta pàgina."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2707,49 +2712,49 @@ msgstr ""
 "quan es va compilar aquesta còpia de Lynx."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr ""
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Ha estat impossible obtenir l'estat de l'enllaç actual!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "URL especial que només és vàlida des del menú permisos de fitxer actual!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr ""
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "El canvi de directori de treball està desactivat."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "Salt de línia automàtic desactivat!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "Salt de línia automàtic activat!"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Anàlisi de taules imbricades desactivat! Recàrrega..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Analisi de taules imbricades activat! Recàrrega..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr ""
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "Rastreig no suportat"
 
@@ -2758,24 +2763,24 @@ msgstr "Rastreig no suportat"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "Nom d'usuari per a '%s' en %s '%s%s':"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Capçalera invàlida '%s%s%s%s%s'"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "Cal autorizació del proxy: reintentant"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Accés sense autorització denegat: reintentant"
 
@@ -2791,7 +2796,7 @@ msgstr "El document amb contingut POST no s'ha trobat en la memòria cau. Reenvia
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Càrrega incompleta."
 
@@ -2814,7 +2819,7 @@ msgstr ""
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "No ha estat possible accedir-hi"
 
@@ -3010,15 +3015,15 @@ msgstr "Llegint article."
 msgid "Sorry, could not load requested news."
 msgstr "No ha estat possible carregar els missatges sol·licitats."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "L'adreça conté un port que no és vàlid"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "La longitud de l'adreça sembla invàlida"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Ha estat impossible trobar el servidor %s."
@@ -3027,90 +3032,112 @@ msgstr "Ha estat impossible trobar el servidor %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Servidor %s no vàlid"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Establint una connexió %s amb %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "La connexió ha fallat (massa reintents)."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr "L'adreça conté un nom d'usuari: %s"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Aquest client no admet adreces HTTPS."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "No ha estat possible connectar amb el servidor."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "S'està reintentant la connexió sense TLS."
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "La cookie ha estat esborrada!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+#, fuzzy
+msgid "Can't find common name in certificate"
 msgstr "Error SSL: no s'ha pogut trobar el nom comú en el certificat. Continuem?"
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "Error SSL: servidor(%s)!=cert(%s). Voleu continuar?"
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "Enviant sol·licitud HTTP."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Error inesperat d'escriptura "
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "Sol·licitud HTTP enviada; esperant resposta."
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Error inesperat de lectura en la xarxa; s'ha avortat la connexió."
 
@@ -3123,7 +3150,7 @@ msgstr "Error inesperat de lectura en la xarxa; s'ha avortat la connexió."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3133,7 +3160,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3143,27 +3170,27 @@ msgstr ""
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "S'ha obtingut un codi 304 Not Modified inesperat (el document no ha estat modificat)."
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Estic reintentant amb la informació d'accés."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "Mostrar el cos del missatge d'error 401?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "Mostrar el cos del missatge d'error 407?"
 
@@ -3171,7 +3198,7 @@ msgstr "Mostrar el cos del missatge d'error 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "Resposta desconeguda del servidor!"
 
@@ -3351,139 +3378,139 @@ msgstr "Mantenidor"
 msgid "Host"
 msgstr "Servidor"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "Memòria exhaurida, visualització interrompuda!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Memòria exhaurida, la transferència s'interromprà!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** MEMÔRIA EXHAURIDA ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "camp o enllaç desconegut"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "camp de text"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "camp de contrasenya"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "quadre de verificació"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "botó de grup"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "botó d'enviament"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "botó de reinici"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "menú emergent"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "camp de formulari ocult"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "àrea de text"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "camp d'entrada d'interval"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "camp de fitxer"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "camp d'enviament de text"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "botó d'enviament d'imatges"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr ""
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "camp de formulari desconegut"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "No ha estat possible obrir el fitxer que voleu carregar."
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "Enviant %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "Trencar les línies per a ajustar a l'espai disponible?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "Les línies molt llargues han estat tallades!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "Les línies molt llargues han estat truncades!"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "bytes"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "Llegits %s de %s."
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "Llegits %s"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/sec"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr " (aturat durant %s)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ""
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (Premeu 'z' per avortar)"
 
@@ -3512,11 +3539,11 @@ msgstr " (Premeu 'z' per avortar)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "sí"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "no"
 
@@ -3536,7 +3563,7 @@ msgstr "no"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -3674,31 +3701,31 @@ msgstr ""
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr ""
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Ha fallat la inicialització del terminal: potser és un tipus de terminal desconegut."
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminal ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Heu d'usar un terminal vt100, 300, etc. amb aquest programa."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "El terminal especificat és desconegut!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Introduïu un tipus de terminal:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "EL TIPUS DE TERMINAL ESTÀ FIXAT A"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3707,7 +3734,7 @@ msgstr ""
 "\n"
 "S'ha produït un error fatal en %s Ver. %s\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4183,30 +4210,30 @@ msgstr "Aquest missatge va ser generat automàticament per"
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "No s'ha trobat Winsock."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "Heu de definir una àrea TMP o TEMP vàlida!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "No existeix el directori"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "El fitxer de configuració %s no està disponible\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4216,7 +4243,7 @@ msgstr ""
 "\n"
 "Els jocs de caràcters no estan declarats.\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4224,171 +4251,171 @@ msgid ""
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "El fitxer %s no està disponible.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Alerta:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "l'estat de les cookies persistents no es canviarà fins la següent sessió"
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx: joc de caràcters %s no reconegut. S'ignorarà.\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, fuzzy, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s Versió %s (%s)\n"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Compilat per a %s el %s a les %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr ""
 "Els drets de còpia pertanyen a la Universitat de Kansas, el CERN i altres\n"
 "contribuïdors."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "Distribuït sota la Llicència Pública General."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Vegeu http://lynx.isc.org/ i l'ajuda en línia per a més informació."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "UTILITZACIÓ: %s [opcions] [arxiu]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Les opcions són:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: l'opció no és vàlida: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "Error intern: l'enllaç del ratolí no és vàlid: %d!"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "Una URL especificada per l'usuari"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr ""
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "Pantalla d'ajuda"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Índex del sistema"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Entrar en la pantalla principal"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr "No hi ha cap document més"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "el joc de caràcters per a aquest document està especificat explicitament"
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "canvia al directori:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "Un component del camí no és un directori"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "no ha estat possible canviar de directori"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "Tornant a analitzar el document amb les opcions actuals..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Error fatal: no s'ha pogut obrir el fitxer d'eixida %s\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 msgid "Current URL is empty."
 msgstr "La URL actual és buida."
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr "No s'ha pogut copiar al porta-retalls."
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr "La URL del document s'ha copiat al porta-retalls."
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr "La URL de l'enllaç s'ha copiat al porta-retalls."
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr "No hi ha cap URL al porta-retalls."
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-índex-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: No s'ha pogut accedir al fitxer inicial"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: No s'ha trobat el fitxer o no és text/html ni text/plain"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      Eixint..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-més-"
 
@@ -4452,353 +4479,353 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "El missatge no conté text original!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "B revisar/editar fixers de favorits"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "B fitxer de favorits:"
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 msgid "Novice"
 msgstr ""
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 msgid "Intermediate"
 msgstr ""
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 #, fuzzy
 msgid "as links"
 msgstr "ací"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 #, fuzzy
 msgid "show filename"
 msgstr " (nom de fitxer incorrecte)"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 #, fuzzy
 msgid "Directories first"
 msgstr "Subdirectoris:"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 #, fuzzy
 msgid "Files first"
 msgstr " primer"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr ""
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 #, fuzzy
 msgid "By Name"
 msgstr "Nom:"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr ""
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 #, fuzzy
 msgid "By Date"
 msgstr "Data:"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 #, fuzzy
 msgid "By Group"
 msgstr "Grup"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, fuzzy, c-format
 msgid "Show %s/sec rate"
 msgstr "Mostrar taxa de transferència"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 #, fuzzy
 msgid "Accept all types"
 msgstr "Acceptar els canvis"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Useu %s per a invocar el menú d'opcions"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr "(les opcions marcades amb (!) no es desen)"
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Preferències generals"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "Tipus d'usuari"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "Tipus de recerca"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Cookies"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "Teclat"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Mode del teclat"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Tecles d'emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "Tecles de VI"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "Configuració del teclat"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Pantalla i joc de caràcters"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "Joc de caràcters predeterminat"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Joc de caràcters"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "Joc de caràcters predeterminat"
 
@@ -4807,177 +4834,177 @@ msgstr "Joc de caràcters predeterminat"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "mode CJK"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "8-bits cru"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr ""
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "Apariència dels documents"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "En color"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Mostrar cursor"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 #, fuzzy
 msgid "Underline links"
 msgstr "Enllaços ocults:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "Mostrar la barra de desplaçament"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr ""
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "Recuperació d'errors de HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Mostrar imatges"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Detalls sobre imatges"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "Capçaleres que es transmeten als servidors remots"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Adreça electrònica personal"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Contrasenya per al servidor de notícies '%s':"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 #, fuzzy
 msgid "Preferred media type"
 msgstr "%d bytes transferits"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Idioma preferit"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Joc de caràcters preferit"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Idioma preferit"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "Identificació del navegador"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "Fitxers: llistat i accés"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "Criteri d'ordenació per a FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Criteri d'ordenació local"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 #, fuzzy
 msgid "Local directory sort order"
 msgstr "Criteri d'ordenació local"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Mostrar fitxers .*"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "Enllaços d'execució"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Mostrar taxa de transferència"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "Fitxers i pantalles especials"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr ""
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "Editar fitxers de favorits"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Veure el menú de múltiples fitxers d'adreces"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "Fitxer de favorits"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Pàgines visitades"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr "Veure el fitxer"
 
@@ -5098,38 +5125,38 @@ msgstr "Lynx: impossible iniciar, el fitxer de regles del CERN %s no estàdisponi
 msgid "(no name)"
 msgstr "(sense nom)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Més de %d includes imbricats en lynx.cfg: potser hi ha un bucle?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "L'últim include ha estat \"%s\", \n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "inclós des de \"%s\".\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "Les dades següents s'han llegit del vostre fitxer lynx.cfg."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Per favor, llegiu "
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "si necessiteu més informació."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "RECARREGAR ELS CANVIS"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "Configuració primària"
 
@@ -5396,33 +5423,33 @@ msgstr "Carregar a:"
 msgid "Upload options:"
 msgstr "Opcions de càrrega:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr ""
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "Massa fitxers temporals"
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "restricció desconeguda"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "No s'hi han establert restriccions.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Restriccions:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "No s'ha trobat el directori d'inici (HOME)"
 
diff --git a/po/cs.po b/po/cs.po
index d474d7f2..a7c1584e 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 1999-12-11 12:55+0100\n"
 "Last-Translator: Jiøí Pavlovský  <pavlovsk@ff.cuni.cz>\n"
 "Language-Team: Czech <cs@li.org>\n"
@@ -2242,7 +2242,7 @@ msgstr "(®ádné jméno)"
 msgid "(No value.)"
 msgstr "(®ádná hodnota)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Nic"
 
@@ -2549,143 +2549,148 @@ msgstr "S proxy autorizací není dal¹í pokus mo¾ný! Kontaktujte pøíslu¹ného webma
 msgid "Retrying with proxy authorization information."
 msgstr "Zkou¹im to znovu s proxy autorizací."
 
+#: LYMessages.c:796
+#, c-format
+msgid "SSL error:%s-Continue?"
+msgstr ""
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: Odpovìï je pøíli¹ veliká."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Zadejte WAIS dotaz: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Posílám znovu jako HTTP0 po¾adavek."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "Pøeneseno bajtù: %d"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Pøenos dat dokonèen"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Chyba pøi zpracování %d. øádku souboru%s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Seznam adres"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Soubor se zálo¾kami"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Konfigurace"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Sklad cookies"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Aktuální klávesová mapa"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Nabídka správce souborù"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Mo¾nosti stahování"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Historie"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Seznam odkazù"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Lynx.cfg Informace"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Pøevedený 'Hotlist' Mosaicu"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Konfiguraèní menu"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Menu nastavení práv souboru"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Menu voleb tisku"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Informace o aktuálním dokumentu"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "Zprávy stavové øádky"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Menu voleb posílání"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Nav¹tívené odkazy"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Viz té¾"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "vá¹"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "pro aktuální konfiguraci"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "volby zadané pøi pøekladu"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 #, fuzzy
 msgid "color-style configuration"
 msgstr "Va¹e primární konfigurace"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "poslední verze"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "vývojová verze"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "vývojová verze"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2695,7 +2700,7 @@ msgstr ""
 "kopie programu Lynx. Pøi oznamování chyby pøilo¾te kopii této stránky."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2704,53 +2709,53 @@ msgstr ""
 "pøekladu této kopie programu Lynx."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "  C>Vytvoøit D>Stáhnout E)ditovat F>Úplné menu R>Smazat T>Oznaèit U>Poslat \n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Nepodaøilo se zjistit status aktuálního odkazu!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "Zvlá¹tní URL je platné pouze z aktuálního menu nastavení práv souboru!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "Spou¹tìní externích programù je nyní zakázáno."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 #, fuzzy
 msgid "Changing working-directory is currently disabled."
 msgstr "Spou¹tìní je nyní vypnuto."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 #, fuzzy
 msgid "Linewrap OFF!"
 msgstr "Sledování VYPNUTO!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr ""
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 #, fuzzy
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Pøímý 8bitový èi CJK re¾im VYPNUT! Znovu naèítám..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 #, fuzzy
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Pøímý 8bitový èi CJK re¾im ZAPNUT! Znovu naèítám..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr ""
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 #, fuzzy
 msgid "Trace not supported"
 msgstr "Terminál nepodporuje barvy."
@@ -2760,24 +2765,24 @@ msgstr "Terminál nepodporuje barvy."
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "U¾ivatelské jméno pro '%s' na %s '%s%s':"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "Tento klient neumí vytvoøit proxy autorizaèní informace pro schéma "
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "Tento klient neumí vytvoøit autorizaèní informace pro schéma "
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Chybná hlavièka '%s%s%s%s%s'"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "Proxy vy¾aduje autorizaci -- zkou¹ím znovu"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Pøístup není bez autorizace povolen -- zkou¹ím znovu"
 
@@ -2793,7 +2798,7 @@ msgstr "Dokument s POST obsahem nenalezen v cache. Odeslat znovu?"
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Nahrávání dokonèeno."
 
@@ -2816,7 +2821,7 @@ msgstr "**** HTAccess: Návratový status: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Nelze získat pøístup"
 
@@ -3013,15 +3018,15 @@ msgstr "Ètu pøíspìvek z diskuzní skupiny."
 msgid "Sorry, could not load requested news."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "Délka adresy se zdá být chybnou."
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "Délka adresy se zdá být chybnou."
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Adresu poèítaèe %s nelze zjistit."
@@ -3030,91 +3035,112 @@ msgstr "Adresu poèítaèe %s nelze zjistit."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Jméno poèítaèe %s je chybné"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Navazuji %s spojení s %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "chyba soketu."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Soket nelze nastavit jako neblokující."
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "Spojení se nepodaøilo navázat na 180 000. pokus."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "Soket nelze nastavit jako blokující."
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "180 000 neúspì¹ných pokusù èíst ze soketu."
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Tento klient nepodporuje HTTPS URL."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "Spojení se vzdáleným poèítaèem nelze navázat."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 #, fuzzy
 msgid "Retrying connection without TLS."
 msgstr "Navazuji %s spojení s %s."
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "Cookie bylo smazáno!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+msgid "Can't find common name in certificate"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "Odesílám HTTP po¾adavek."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Neoèekávaná chyba pøi zápisu na soket; spojení uzavøeno."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP po¾adavek odeslán; èekám na odpovìï"
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Neoèekávaná chyba pøi ètení ze soketu; spojení uzavøeno."
 
@@ -3127,7 +3153,7 @@ msgstr "Neoèekávaná chyba pøi ètení ze soketu; spojení uzavøeno."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "Neoèekávané Informaèní hlá¹ení."
 
@@ -3137,7 +3163,7 @@ msgstr "Neoèekávané Informaèní hlá¹ení."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "Po¾adavek vyøízen. Obsah formuláøe smazán."
 
@@ -3147,27 +3173,27 @@ msgstr "Po¾adavek vyøízen. Obsah formuláøe smazán."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Neoèekávané hlá¹ení: 304 Not Modified"
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "Pøesmìrování POST obsahu vy¾aduje souhlas u¾ivatele."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Obsahuje POST data. Trvalé pøesmìrování pou¾ívám pouze jako doèasné.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Zkou¹ím to znovu s proxy autorizací."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "Zobrazit tìlo 401 hlá¹ení?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "Zobrazit tìlo 407 hlá¹ení?"
 
@@ -3175,7 +3201,7 @@ msgstr "Zobrazit tìlo 407 hlá¹ení?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "Neznámé hlá¹ení od serveru!"
 
@@ -3363,140 +3389,140 @@ msgstr "Správce"
 msgid "Host"
 msgstr "Poèítaè"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "Do¹la pamì», zobrazení pøeru¹eno!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Do¹la pamì», pøenos pøeru¹en!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** DO©LA PAMÌ« ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "neznámé pole èi odkaz"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "textové vstupní pole"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "vstupní pole pro heslo"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "za¹krtávací políèko"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "pøepínací tlaèítko"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "tlaèítko pro odeslání dat serveru"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "tlaèítko pro obnovení implicitních hodnot"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "vyskakovací menu"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "skryté pole formuláøe"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "textová vstupní oblast"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "vstupní pole pro interval"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "pole pro výbìr souboru"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "tlaèítko pro odeslání textu"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "tlaèítko pro odeslání obrázku"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "pole pro vytvoøení klíèe"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "neznámé pole formuláøe"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 #, fuzzy
 msgid "Can't open file for uploading"
 msgstr "Soubor pro dekompresi nelze otevøít!"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "Odesílám %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr ""
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr ""
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr ""
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "bajtù"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "Mno¾ství pøenesených dat: %s/%s"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "Mno¾ství pøenesených dat: %s"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/s."
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr ""
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, fuzzy, c-format
 msgid ", ETA %s"
 msgstr ", %ld s."
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (Stisknìte 'z' pro ukonèení)"
 
@@ -3525,11 +3551,11 @@ msgstr " (Stisknìte 'z' pro ukonèení)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "ano"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "ne"
 
@@ -3549,7 +3575,7 @@ msgstr "ne"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -3681,31 +3707,31 @@ msgstr " (vnitøní)"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr ""
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Inicializace terminálu se nezdaøila - neznámý typ terminálu?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminál ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Tento program vy¾aduje terminál typu vt100, 200 etc."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "Typ va¹eho terminálu je neznámý!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Zadejte typ terminálu:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "TYP TERMINÁLU JE NASTAVEN NA"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3714,7 +3740,7 @@ msgstr ""
 "\n"
 "V programu %s verze %s nastala fatální chyba.\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4193,30 +4219,30 @@ msgstr "Tato zpráva byla vytvoøena automaticky programem"
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Winsock nenalezen. lituji."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "MUSÍTE zadat platný TMP èi TEMP prostor!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr " adresáø"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Konfiguraèní soubor %s je nedostupný.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4227,7 +4253,7 @@ msgstr ""
 "Znakové sady Lynxu nejsou deklarovány.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4238,170 +4264,170 @@ msgstr ""
 "Editovací mapy Lynxu nejsou deklarovány.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Soubor %s není dostupný.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr ""
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "Stav trvalých cookies bude zmìnìn a¾ pøi pøí¹tím sezení."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr ""
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, fuzzy, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s verze %s (%s)\n"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Pøelo¾en na %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "Autorská práva patøí Kansaské univerzitì, CERN a ostatním autorùm."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "Roz¹iøován podle podmínek Obecné veøejné licence GNU."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Podrobnìj¹í informace získáte na http://lynx.isc.org/ a z nápovìdy k programu."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "Pou¾ití: %s [pøepínaèe] [soubor]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Pøepínaèe:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: Chybný pøepínaè %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr ""
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "URL zadané u¾ivatelem"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "Kódování multipart/form-data není zatím podporováno. Nelze odeslat."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "Nápovìda"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Systémový index"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Vstup na hlavní obrazovku"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr ""
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "znaková sada tohoto dokumentu je explicitnì zadána, lituji..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr " do "
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr ""
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "Adresáø není dostupný."
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "Znovu zpracovávám dokument za pou¾ití nových nastavení..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Fatální chyba - výstupní soubor %s nelze otevøít\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 #, fuzzy
 msgid "Current URL is empty."
 msgstr "Aktuální adresáø:"
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr ""
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr " rejstøík"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: startovní soubor nelze otevøít"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: startovní soubor nelze nalézt, nebo není ani typu text/html ani text/plain."
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      Konèím..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr ""
 
@@ -4465,356 +4491,356 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "Zpráva neobsahuje ¾ádný pùvodní text!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "zobrazit/editovat soubory se zálo¾kami B>"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "Soubor se zálo¾kami B>:"
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 #, fuzzy
 msgid "Novice"
 msgstr "Nic"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 #, fuzzy
 msgid "Intermediate"
 msgstr " (vnitøní)"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 #, fuzzy
 msgid "as links"
 msgstr "tento odkaz."
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 #, fuzzy
 msgid "show filename"
 msgstr " (chybné jméno souboru)"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 #, fuzzy
 msgid "Directories first"
 msgstr "Podadresáøe:"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 #, fuzzy
 msgid "Files first"
 msgstr " jako první."
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr ""
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 #, fuzzy
 msgid "By Name"
 msgstr "Jméno:"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 #, fuzzy
 msgid "By Size"
 msgstr "Velikost v bajtech:"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 #, fuzzy
 msgid "By Date"
 msgstr "Datum:"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 #, fuzzy
 msgid "By Group"
 msgstr "Skupina"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, fuzzy, c-format
 msgid "Show %s/sec rate"
 msgstr "Pøenos dat dokonèen"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 #, fuzzy
 msgid "Accept all types"
 msgstr "Pøijmout zmìny"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr ""
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Osobní nastavení"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "U¾ivatelský re¾im"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr ""
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Cookies"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr ""
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Re¾im numerické klávesnice"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Emacs klávesy"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "VI klávesy"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr ""
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Místní znaková sada"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "Pøedpokládaná znaková sada"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Místní znaková sada"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "Pøedpokládaná znaková sada"
 
@@ -4823,178 +4849,178 @@ msgstr "Pøedpokládaná znaková sada"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "CJK re¾im"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "Pøímý 8bitový re¾im"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X Display"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr ""
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Zobrazovat barvy"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Zobrazovat kurzor"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 #, fuzzy
 msgid "Underline links"
 msgstr "Skryté odkazy:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 #, fuzzy
 msgid "Show scrollbar"
 msgstr "Zobrazovat barvy"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "Vyskakovací menu pro zvolená pole"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "Zotavení po chybách HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Zobrazení obrázkù"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Doslovné obrázky"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "HTTP hlavièky"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Osobní adresa elektronické po¹ty"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Heslo na news serveru '%s':"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 #, fuzzy
 msgid "Preferred media type"
 msgstr "Pøeneseno bajtù: %d"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Upøednostòovaný jazyk dokumentu"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Upøednostòovaná znaková sada"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Upøednostòovaný jazyk dokumentu"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "Hlavièka 'User-Agent'"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr ""
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "Øazení FTP adresáøù"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Øazení lokálních adresáøù"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 #, fuzzy
 msgid "Local directory sort order"
 msgstr "Øazení lokálních adresáøù"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Zobrazovat teèkové soubory"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "Spustitelné odkazy"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Pøenos dat dokonèen"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr ""
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "Dìlené zálo¾ky"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "Editace podsouborù se zálo¾kami"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Menu dìlených zálo¾ek"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "Soubor se zálo¾kami"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Nav¹tívené odkazy"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 #, fuzzy
 msgid "View the file "
 msgstr "Poslat soubor po¹tou"
@@ -5113,38 +5139,38 @@ msgstr "Lynx: nelze spustit, soubor %s s pravidly CERN není dostupný\n"
 msgid "(no name)"
 msgstr "(¾ádné jméno)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Více ne¾ %d vnoøených vlo¾ení z lynx.cfg -- nejedná se o nekoneènou smyèku?!?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Poslední vlo¾ený soubor je '%s'.\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "vlo¾ený z '%s'.\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "Následující údaje jsou èteny z va¹eho lynx.cfg."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Pøeètìte si implicitní dodávaný s distribucí"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "pro více informací."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "NAÈÍST ZMÌNY"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "Va¹e primární konfigurace"
 
@@ -5418,34 +5444,34 @@ msgstr "Poslat na:"
 msgid "Upload options:"
 msgstr "Menu voleb posílání:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr ""
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr ""
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 #, fuzzy
 msgid "unknown restriction"
 msgstr "neznámé pole èi odkaz"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr ""
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Popis:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr ""
 
diff --git a/po/da.po b/po/da.po
index c2bf3cc8..868dc9ef 100644
--- a/po/da.po
+++ b/po/da.po
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.6-dev8\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2004-11-12 17:30+0100\n"
 "Last-Translator: Morten Bo Johansen <mojo@mbjnet.dk>\n"
 "Language-Team: Danish <dansk@klid.dk>\n"
@@ -2245,7 +2245,7 @@ msgstr "(Ingen navn.)"
 msgid "(No value.)"
 msgstr "(Ingen værdi.)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Ingen"
 
@@ -2552,142 +2552,147 @@ msgstr "Kan ikke prøve igen med proxy-godkendelse! Kontakt serverens WebMaster."
 msgid "Retrying with proxy authorization information."
 msgstr "Prøver igen med godkendelsesinformation fra proxyvært."
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "SSL-fejl:vært(%s)!=cert(%s) - fortsæt?"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: Retur-meddelelse er for stor."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Indtast WAIS-forespørgsel: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Prøver igen med HTTP0 som forespørgsel."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "Overført %d bytes"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Dataoverførsel fuldført"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Fejl ved behandling af linje %d af %s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Side med adresseliste"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Bogmærkefil"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Opsætningsdefinitioner"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Cookiebeholder"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Aktuelle tastebindinger"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Valgmuligheder for filhåndtering"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Valgmuligheder for download af filer"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Historikside"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Oversigtsside"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Information om lynx.cfg"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Omdannet Mosaic-bogmærkefil"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Opsætningsmenu"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Valgmuligheder for filrettigheder"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Valgmuligheder ved udskrivning"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Oplysninger om det aktuelle dokument"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "De seneste meddelelser fra statuslinjen"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Valgmuligheder for uploads"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Oversigt over besøgte links"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Se også"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "din"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "Valgmuligheder ved opstart"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "Valgmuligheder ved oversættelse (compile)"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 msgid "color-style configuration"
 msgstr "Opsætning af color-style"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "seneste udgave"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "prøveversion"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "udviklingsversion"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2698,7 +2703,7 @@ msgstr ""
 "venligst en kopi af denne side."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2707,49 +2712,49 @@ msgstr ""
 "da denne kopi af Lynx blev lavet."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "  C=Opret D=Hent  E=rediger  F=fuld menu  M=ret  R=slet  T=marker  U=upload      \n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Kunne ikke hente status på aktuelle link!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "Særlig adresse er kun gyldig fra menu over aktuelle filrettigheder!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "Ekstern understøttelse er slået fra i øjeblikket."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "Ændring af arbejdskatalog er sat ud af kraft i øjeblikket."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "Linjeombrydning slået FRA!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "Linjeombrydning slået TIL!"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Indlejrede tabeller fortolkes IKKE! Genindlæser ..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Indlejrede tabeller fortolkes! Genindlæser ..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr "Panorering er slået fra når linjeombrydning er aktiveret"
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "Sporing ikke understøttet"
 
@@ -2758,24 +2763,24 @@ msgstr "Sporing ikke understøttet"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "Brugernavn for '%s' på %s '%s%s':"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "Denne klient kan ikke danne godkendelsesinformation til proxyvært"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "Denne klient kan ikke danne godkendelsesinformation til protokol"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Ugyldigt hoved '%s%s%s%s%s'"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "proxygodkendelse påkrævet - forsøger igen"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Adgang uden godkendelse nægtet - forsøger igen"
 
@@ -2791,7 +2796,7 @@ msgstr "Dokument med 'POST'-indhold ikke fundet i cache. Genindsend?"
 msgid "Loading failed, use a previous copy."
 msgstr "Indlæsning slog fejl, brug en foregående kopi."
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Indlæsning ikke fuldført."
 
@@ -2814,7 +2819,7 @@ msgstr "**** HTAccess: Statustilbagemelding var: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Kan ikke tilgå"
 
@@ -3010,15 +3015,15 @@ msgstr "Læser nyhedsartikel.."
 msgid "Sorry, could not load requested news."
 msgstr "Beklager, kunne ikke indlæse artikler."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "Adresse har en ugyldig port"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "Adresselængde forekommer ugyldig"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Ude af stand til at finde fremmed vært %s."
@@ -3027,90 +3032,112 @@ msgstr "Ude af stand til at finde fremmed vært %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Ugyldigt værtsnavn %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Opretter %s-forbindelse til %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "sokkel fejlede."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "sokkel fejlede: familie %d adr. %s port %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Kunne ikke oprette en ikke-blokerende forbindelse."
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "Forbindelse opgivet (for mange forsøg)."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "Kunne ikke få sokkel til at blokere."
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "Læsning af sokkel slog fejl i 180.000 forsøg."
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr "Adresse indeholder et brugernavn: %s"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Denne klient kan ikke bruge HTTPS-adresser."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "Kan ikke forbinde til fremmed vært."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "Forsøger at genetablere forbindelsen uden TLS."
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "Cookier er blevet slettet!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+#, fuzzy
+msgid "Can't find common name in certificate"
 msgstr "SSL-fejl: Kan ikke finde fælles navn i certifikat - fortsæt?"
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL-fejl:vært(%s)!=cert(%s) - fortsæt?"
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Sikker %d-bit %s (%s) HTTP-forbindelse"
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "Sender HTTP-anmodning."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Uventet skrivningsfejl i netværk; forbindelse afbrudt."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP-anmodning sendt; venter på svar."
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Uventet læsningsfejl i netværk; forbindelse afbrudt"
 
@@ -3123,7 +3150,7 @@ msgstr "Uventet læsningsfejl i netværk; forbindelse afbrudt"
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "Modtog uventet \"Informational Status\"."
 
@@ -3133,7 +3160,7 @@ msgstr "Modtog uventet \"Informational Status\"."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "Anmodning imødekommet. Nulstil indhold."
 
@@ -3143,27 +3170,27 @@ msgstr "Anmodning imødekommet. Nulstil indhold."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Modtog uventet 304 \"Not Modified status\"."
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "Omdirigering af POST-indhold kræver brugers godkendelse."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Har POST-indhold. Behandler varig omdirigering som midlertidig.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Prøver igen med oplysning om adgangstilladelse."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "Vis indhold af 401-meddelelse?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "Vis indhold af 407-meddelelse?"
 
@@ -3171,7 +3198,7 @@ msgstr "Vis indhold af 407-meddelelse?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "Ukendt statussvar fra server!"
 
@@ -3359,139 +3386,139 @@ msgstr "Vedligeholder"
 msgid "Host"
 msgstr "Vært"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "Hukommelse opbrugt, fremvisning afbrudt!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Hukommelse opbrugt, vil afbryde overførsel!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** HUKOMMELSE OPBRUGT ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "ukendt felt eller link"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "indtast tekst"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "indtast adgangskode"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "afkrydsningsboks"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "radioknap"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "indsendelsesknap"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "nulstillingsknap"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "pop up-menu"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "skjult formularfelt"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "indtast tekst"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "angiv interval"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "angiv fil"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "tekstindsendelsesfelt"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "Billedindsendelsesknap"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "nøglegen-felt"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "ukendt formularfelt"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "Kan ikke åbne fil til upload"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "Indsender %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Program hænger: TextAnchor-struktur ødelagt - det er bedst at afbryde!"
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "Ombryd linjer så de passer til det viste område?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "Meget lange linjer er blevet ombrudt!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "Meget lange linjer er blevet afkortet!"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "bytes"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "Læst %s af %s af data"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "Læst %s af data"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/sek"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr " (gået i stå i %s)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ", ETA %s"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (Tast 'z' for at afbryde)"
 
@@ -3520,11 +3547,11 @@ msgstr " (Tast 'z' for at afbryde)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "ja"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "nej"
 
@@ -3544,7 +3571,7 @@ msgstr "nej"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr "J/N/A/L"
 
@@ -3682,31 +3709,31 @@ msgstr "Intern"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "'cookie_domain_set_flag'-fejl, afbryder program"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Klargøring af terminal slog fejl - ukendt terminaltype?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminal ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Du skal bruge en vt100, 200, etc. terminal med dette program."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "Din terminaltype er ukendt!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Anfør en terminaltype:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "TERMINAL-TYPE SAT TIL"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3715,7 +3742,7 @@ msgstr ""
 "\n"
 "En kritisk fejl opstod i %s Ver. %s\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4194,30 +4221,30 @@ msgstr "Denne meddelelse blev automatisk lavet af"
 msgid "No system mailer configured"
 msgstr "Systemets postprogram er ikke sat op"
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Ingen \"Winsock\" fundet, beklager."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "Du SKAL definere et gyldigt TMP- eller TEMP-område!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "Intet sådant filkatalog"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Opsætningsfil %s er ikke tilgængelig.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4228,7 +4255,7 @@ msgstr ""
 "Lynx' tegnsæt er ikke angivet.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4239,169 +4266,169 @@ msgstr ""
 "Lynx \"edit map\" er ikke angivet.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Lynx-fil %s er ikke tilgængelig.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Advarsel:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "Ændring for varige cookier vil kun gælde næste session."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx: Ignorerer ukendt tegnsæt=%s\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s Version %s (%s)"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Bygget på %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "Ophavsret indehaves af University of Kansas, CERN og andre bidragydere."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "Distribueret under GNU General Public License."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Se http://lynx.isc.org/ og online-hjælpen for flere oplysninger."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "BRUG: %s [valgmuligheder] [fil]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Valgmuligheder er:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: Ugyldig indstilling: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "Intern fejl: Ugyldigt muselink %d!"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "En adresse angivet af brugeren"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "Kodningstype \"multipart/form-data\" ej understøttet! Kan ikke indsende."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "Hjælpeskærm"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Systemfortegnelse"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Indgang til hovedskærm"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr "Ingen yderligere dokumenter"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "dette dokuments tegnsæt er udtrykkeligt angivet, beklager ..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "cd til: "
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "En del af stien er ikke et filkatalog"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "kunne ikke skifte filkatalog."
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "Genfortolker dokument under nuværende indstillinger ..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Kritisk fejl - kunne ikke åbne uddatafil %s\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr "TABEL-centrering slået til."
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr "TABEL-centrering slået fra."
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 msgid "Current URL is empty."
 msgstr "Aktuelle adresse er tom."
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr "Kopiering til klippebord slog fejl."
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr "Dokumentets adresse overført til klippebord."
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr "Linkets adresse overført til klippebord."
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr "Ingen adresse ligger på klippebord."
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-indeks-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: Kan ikke få adgang til startfil"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: startfil fandtes ikke eller er ikke i text/html, text/plain format"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      Afslutter ..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-mere-"
 
@@ -4465,345 +4492,345 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "Indlæg har ingen oprindelig tekst!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "gennemse/rediger B)ogmærkefiler"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "B)ogmærkefil: "
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr "SLÅET TIL"
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr "SLÅET FRA"
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr "ALDRIG"
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr "ALTID"
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr "ignorér"
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr "spørg bruger"
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr "godtag alle"
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr "ALTID SLÅET FRA"
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr "KUN FOR LOKALE FILER"
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr "ALTID SLÅET TIL"
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr "Pile på numerisk tastatur aktive"
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr "Links er nummererede"
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr "Links og formularfelter er nummererede"
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr "Formularfelter er nummererede"
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr "Ikke versalfølsom"
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr "Versalfølsom"
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr "normal prompt"
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr "gennemtving bekræftende svar"
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr "gennemtving benægtende svar"
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 msgid "Novice"
 msgstr "Begynder"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 msgid "Intermediate"
 msgstr "Videregående"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr "Avanceret"
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr "Ved første besøg"
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr "Ved første besøg, i omvendt orden"
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr "Som træstruktur over besøg"
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr "Efter sidste besøg"
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr "Efter sidste besøg, i omvendt orden"
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr "afslappet (TagSoup-tilstand)"
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr "striks (SortaSGML-tilstand)"
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr "som etiketter"
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 msgid "as links"
 msgstr "som links"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 msgid "show filename"
 msgstr "vis filnavn"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr "STANDARD"
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr "AVANCERET"
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 msgid "Directories first"
 msgstr "Filkataloger først"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 msgid "Files first"
 msgstr "Filer først"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr "Blandet stil"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 msgid "By Name"
 msgstr "Efter navn"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr "Efter type"
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr "Efter størrelse"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 msgid "By Date"
 msgstr "Efter dato"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr "Efter tilstand"
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr "Efter bruger"
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 msgid "By Group"
 msgstr "Efter gruppe"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr "Vis ikke overførselshastighed"
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, c-format
 msgid "Show %s/sec rate"
 msgstr "Vis hastighed i %s/sek "
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr "Vis %s/sek, ETA"
 
 # types = mime-types
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr "Godtag Lynx' indbyggede MIME-typer"
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr "Godtag også MIME-typer i lynx.cfg"
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr "Godtag også brugerens MIME-typer"
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr "Godtag også systemets MIME-typer"
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 msgid "Accept all types"
 msgstr "Godtag alle MIME-typer"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr "gzip"
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr "deflate"
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr "compress"
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr "bzip2"
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr "Alle"
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Brug %s for at aktivere menu over valgmuligheder!"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr "(indstillinger markeret med (!) vil ikke blive gemt)"
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Generelle indstillinger"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "Brugertilstand"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "Søgningstype"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr "Sikkerhed og beskyttelse af persondata"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Cookier"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr "Prompt ved ugyldig cookie"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr "Prompt ved SSL"
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "Tastatur-inddata"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Numerisk tastaturtilstand"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Emacs-taster"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "VI-taster"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr "Linjeredigeringsstil"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "Tastaturudlægning"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Skærm og tegnsæt"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 msgid "Use locale-based character set"
 msgstr "Brug tegnsæt baseret på lokaliseringsindstillinger"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Skærmtegnsæt"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "Formodet dokumenttegnsæt"
 
@@ -4812,174 +4839,174 @@ msgstr "Formodet dokumenttegnsæt"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "CJK-tilstand"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "Rå 8-bit"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X-skærm"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "Udseende af dokument"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Vis farver"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Vis markør"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 msgid "Underline links"
 msgstr "Understreg links"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "Vis rullebjælke"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "Pop op-vinduer for valgte felter"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "HTML-fejlgenopretning"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Vis billeder"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Billedtekst"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "Information til fremmede servere"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Personlig e-post-adresse"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Adgangskode for nyhedsvært (news) '%s':"
 
 # media type refererer til content-type headeren, eks: image/xyz
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 msgid "Preferred media type"
 msgstr "Foretrukket medietype"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 msgid "Preferred encoding"
 msgstr "Foretrukket kodning"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Foretrukket dokumenttegnsæt"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Foretrukket dokumentsprog"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "User-Agent-linje"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "Filoversigt og Filadgang"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "FTP-sorteringskriterie"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Sortering af lokale filkataloger"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "Sortering af lokale filkataloger"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Vis punktumfiler"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "Links til programafvikling"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Vis overførselshastighed"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "Særlige filer og skærmbilleder"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "Multi-bogmærker"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "Gennemse/ret bogmærkefiler"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Gå til multi-bogmærkemenu"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "Bogmærkefil"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Besøgte sider"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr "Vis filen "
 
@@ -5099,38 +5126,38 @@ msgstr "Lynx: Kan ikke starte op, CERN-regelfil %s findes ikke\n"
 msgid "(no name)"
 msgstr "(intet navn)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Flere end %d inkluderingsfiler i lynx.cfg - måske en sløjfe!?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Sidste inkluderingsfil der forsøgtes indlæst var '%s',\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "inkluderet fra '%s'.\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "Følgende er læst fra din lynx.cfg-fil."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Læs venligst distributionen"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "for flere kommentarer."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "GENINDLÆS ÆNDRINGERNE"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "Din primære opsætning"
 
@@ -5399,33 +5426,33 @@ msgstr "Upload til:"
 msgid "Upload options:"
 msgstr "Valgmuligheder for uploads:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr "Hjemtag dokument fra adressen på klippebord."
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "Uventet adgangsprotokol for denne adressetype."
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "For mange tempfiler"
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "ukendt begrænsning"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "Ingen begrænsninger sat.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Begrænsninger sat:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "Kan ikke finde HOME-katalog"
 
diff --git a/po/de.po b/po/de.po
index 81a22a2b..61146a1a 100644
--- a/po/de.po
+++ b/po/de.po
@@ -21,7 +21,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.6-dev6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2004-10-14 09:10+0200\n"
 "Last-Translator: Karl Eichwalder <ke@gnu.franken.de>\n"
 "Language-Team: German <de@li.org>\n"
@@ -2272,7 +2272,7 @@ msgstr "(kein Name.)"
 msgid "(No value.)"
 msgstr "(kein Wert.)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "keine"
 
@@ -2583,142 +2583,147 @@ msgstr "Proxy-Autorisierungversuche fehlgeschlagen! Frag den Cachemaster oder so
 msgid "Retrying with proxy authorization information."
 msgstr "Wir versuchen's noch einmal, mit Proxy-Autorisierungsinfo."
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "SSL-Fehler:host(%s)!=cert(%s) - Fortfahren?"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: Message zu lang."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Gib WAIS-Frage ein: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Wir versuchen's noch einmal, als HTTP0-Request."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "%d bytes übertragen"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Ãœbertragung komplett."
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Fehler beim Verarbeiten von Zeile %d von %s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Linkadressenliste"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Lesezeichendatei"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Konfiguration"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Keksbeutel (Cookie Jar)"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Aktuelle Tastaturbelegung"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Dateimanagement-Menü"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Download-Menü"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "History- oder Geschichtsseite"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Linkliste"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Informationen über lynx.cfg"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Konvertierte Mosaic-Hotlist"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Menü der persönlichen Konfigurationsoptionen"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Dateizugriffserlaubnis Ändern"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Druckeroptionen"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Informationen über das aktuelle Dokument"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "Letzte Meldungen von der Statuszeile"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Upload-Optionen"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Seite der besuchten Links"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Siehe auch"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "dein"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "für Runtime-Optionen"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "Einkompilierte Optionen"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 msgid "color-style configuration"
 msgstr "Farbstil-Konfiguration"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "letzte Fassung"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "Pre-Release-Version"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "Development-Version"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2729,7 +2734,7 @@ msgstr ""
 "Kopie dieser Seite beifügen."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2738,49 +2743,49 @@ msgstr ""
 "dieser Programmkopie als Definitionen verwendet."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "C) Erzeugen D)ownload E)dit F) Menü  M) Ändern R) Löschen T) Markieren U)pload\n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Der Status des aktuellen Links konnte nicht bestimmt werden!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "Dieser spezielle URL ist nur vom aktiven Zugriffsrechtemenü aus verwendbar!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "Unterstützung für EXTERNAL ist zurzeit ausgeschaltet."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "Wechseln des Arbeitsverzeichnisses ist zurzeit nicht aktiviert."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "Linewrap AUS!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "Linewrap AN!"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Erkennung verschachtelter Tabellen ist AUSgeschaltet!  Reloading..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Erkennung verschachtelter Tabellen ist EINgeschaltet!  Reloading..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr "Versetzen ist ausgeschaltet, solange Zeilenumbruch aktiv ist"
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "Trace hat keine Unterstützung"
 
@@ -2789,24 +2794,24 @@ msgstr "Trace hat keine Unterstützung"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "Username für '%s' auf %s '%s%s':"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "Dieses Programm kann nichts anfangen mit dem Schema für Proxy-Autorisierung"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "Dieses Programm weiß nichts anzufangen mit dem Autorisierungsschema"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Ungültiger Header '%s%s%s%s%s'"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "Proxy-Autorisierung verlangt -- wiederholter Versuch"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Zugang ohne Autorisierung verweigert -- wiederholter Versuch"
 
@@ -2822,7 +2827,7 @@ msgstr "Dokument mit POST-Daten nicht im Seitencache gefunden. POST wiederholen?
 msgid "Loading failed, use a previous copy."
 msgstr "Laden fehlgeschalten, die vorherige Kopie wird verwendet."
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Unvollständig geladen."
 
@@ -2845,7 +2850,7 @@ msgstr "**** HTAccess: Der empfangene Statuscode war %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Zugriff fehlgeschlagen:"
 
@@ -3044,15 +3049,15 @@ msgstr "News-Message wird geladen."
 msgid "Sorry, could not load requested news."
 msgstr "Entschuldigung: konnte die angeforderten News nicht laden."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "Adresslänge hat einen ungültigen port"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "Adresslänge scheint ungültig zu sein"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Remote Host %s nicht gefunden."
@@ -3061,90 +3066,112 @@ msgstr "Remote Host %s nicht gefunden."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Hostname ist ungültig: %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "%s-Verbindung zu %s wird aufgebaut."
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "Socket-Fehler."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "Socketfehler: family %d addr %s port %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Verbindung konnte nicht non-blocking gemacht werden."
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "Verbindungsfehler (zu viele Versuche)."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "Socket konnte nicht wieder blocking gemacht werden."
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "Lesefehler nach 180.000 Versuchen."
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr "Adresse mit einem Username: %s"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Dieses Programm hat keine Unterstützung für HTTPS-URLs."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "Verbindung zum remote Host konnte nicht hergestellt werden."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "Verbindung erneut versuchen, ohne TLS."
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "Der Keks ist weg!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+#, fuzzy
+msgid "Can't find common name in certificate"
 msgstr "SSL-Fehler:Es ist nicht möglich einen allgemeinen Namen im Zertifikat zu finden - Fortfahren?"
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL-Fehler:host(%s)!=cert(%s) - Fortfahren?"
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Sichere %d Bit %s (%s) HTTP-Verbindung"
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "HTTP Request wird geschickt."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Unerwarteter Netzschreibfehler; Verbindung abgebrochen."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP Request geschickt; warten auf Antwort."
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Unerwarteter Netzlesefehler; Verbindung abgebrochen."
 
@@ -3157,7 +3184,7 @@ msgstr "Unerwarteter Netzlesefehler; Verbindung abgebrochen."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "Unerwarteter Informations-Statuscode empfangen."
 
@@ -3167,7 +3194,7 @@ msgstr "Unerwarteter Informations-Statuscode empfangen."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "Request ausgeführt. Seiteninhalt zurücksetzen."
 
@@ -3177,27 +3204,27 @@ msgstr "Request ausgeführt. Seiteninhalt zurücksetzen."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Unerwarteter Status 304 \"Not Modified\"."
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "Bestätigung ist erforderlich für Umleitung von POST-Daten."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "POST-Request. Permanente Umleitung wird als temporär behandelt.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Wir versuchen's noch einmal mit Autorisierungsinfo."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "Inhalt der 401-Antwort zeigen?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "Inhalt der 407-Antwort zeigen?"
 
@@ -3205,7 +3232,7 @@ msgstr "Inhalt der 407-Antwort zeigen?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "Unbekannter Statuscode in Antwort vom Server!"
 
@@ -3393,139 +3420,139 @@ msgstr "Instandhalter"
 msgid "Host"
 msgstr "Host"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "zu wenig Hauptspeicher, Anzeige abgebrochen!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "zu wenig Hauptspeicher, Ãœbertragung wird abgebrochen!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** MEMORY ERSCHÖPFT ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "unbekanntes Feld oder Link"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "Texteingabefeld"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "Passwort-Eingabefeld"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "Checkbox"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "Radiobutton"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "Submit-Button"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "Reset-Button"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "Popup-Menü"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "verstecktes Formfeld"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "Texteingaberegion"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "Bereichseingabefeld"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "Dateieingabefeld"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "Textsendefeld"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "Image-Sendefeld"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "\"Keygen\"-Feld"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "unbekanntes Formfeld"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "Datei konnte nicht zum Upload geöffnet werden!"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "%s wird gesandt"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Hänger festgestellt: TextAnchor-Konstruktion ist schadhaft - am besten abbrechen!"
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "Zeilen umbrechen, um in den sichtbaren Bereich einzupassen?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "Sehr lange Zeilen wurden umbrochen!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "Sehr lange Zeilen wurden abgeschnitten!"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "bytes"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "%s von %s der Daten gelesen"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "%s der Daten gelesen"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/sec"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr " (unterbrochen für %s)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ", ETA %s"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " ('z' für Abbruch)"
 
@@ -3554,11 +3581,11 @@ msgstr " ('z' für Abbruch)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "ja"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "nein"
 
@@ -3578,7 +3605,7 @@ msgstr "nein"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr "J/N/A/V"
 
@@ -3717,31 +3744,31 @@ msgstr "Intern"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "cookie_domain_flag_set-Fehler, beende das Programm"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Terminalinitialisierung fehlgeschlagen - unbekannter Terminaltyp?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminal ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Ein Textterminal wie VT100, VT200 usw. ist für dieses Programm notwendig."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "Terminaltyp ist unbekannt!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Terminaltyp eingeben:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "TERMINAL TYPE IS SET TO"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3751,7 +3778,7 @@ msgstr ""
 " Ein fataler Fehler passierte in %s Ver. %s\n"
 
 # Yes, this is incomplete... - kw
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4234,30 +4261,30 @@ msgstr "Diese Nachricht wurde automatisch generiert von"
 msgid "No system mailer configured"
 msgstr "Kein systemweiter Mailer konfiguriert"
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Kein Winsock gefunden, sorry."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "Es muß ein gültiger Bereich für TMP oder TEMP definiert sein!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "Verzeichnis nicht vorhanden"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Konfigurationsdatei %s ist nicht zugänglich.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4268,7 +4295,7 @@ msgstr ""
 "Lynx-Zeichensätze nicht deklariert.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4279,173 +4306,173 @@ msgstr ""
 "Lynx \"edit map\" nicht deklariert.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Lynx-Datei %s ist nicht verfügbar.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Warnung:"
 
 # No idea what this means.  Seems highly experimental anyway. - kw
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "Beständige Kekse werden erst beim nächsten Programmaufruf geändert."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx: ignoriere unbekannte Codierung (charset)=%s\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s Version %s (%s)"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Kompiliert auf %s, %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr ""
 "Copyrights gehalten von der University of Kansas, dem CERN und anderen\n"
 "Beiträgern."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "Verbreitet unter den Bedingungen der GNU General Public License."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Weitere Informationen: http://lynx.isc.org/ und die Online-Hilfe."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "AUFRUF: %s [optionen] [datei oder URL]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Optionen sind:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: Ungültige Option: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "Interner Fehler: %d ist ungültig für mouse_link!"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "Ein vom Benutzer eingegegener URL"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "Enctype multipart/form-data noch nicht unterstützt! Submission unmöglich."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "Hilfe-Seite"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Systemindex"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Eingang zur Hauptseite"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr "Es gibt kein nächstes Dokument"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "Charset für dieses Dokument ist schon explizit angegeben..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "cd nach:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "Eine Pfadkomponente ist kein Verzeichnis"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "Fehler beim Verzeichniswechsel"
 
 # How does one translate reparsing anyway? - kw
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "Dokument wird mit jetzigen Einstellungen reinterpretiert..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Fataler Fehler - Ausgabedatei %s konnte nicht geöffnet werden\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr "TABLE-Zentrierung aktivieren."
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr "TABLE-Zentrierung ausschalten."
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 msgid "Current URL is empty."
 msgstr "Aktueller URL ist leer."
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr "Kopieren in das Clipboard fehlgeschlagen."
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr "URL des Dokuments in das Clipboard gespeichert."
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr "URL des Links in das Clipboard gespeichert."
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr "Kein URL in das Clipboard gespeichert."
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-Index"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: Unzugängliche Startdatei"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: Startdatei nicht gefunden oder nicht text/html oder text/plain"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      Ende..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-mehr-"
 
@@ -4509,344 +4536,344 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "Die Message hat keinen neuen Text!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "Lesezeichendateien ((B)ookmark files) ansehen/ändern"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "Lesezeichendatei/(B)ookmark file: "
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr "AN"
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr "AUS"
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr "NIE"
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr "IMMER"
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr "ignorieren"
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr "Benutzer fragen"
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr "alle akzeptieren"
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr "IMMER AUS"
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr "NUR FÃœR LOKALE DATEIEN"
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr "IMMER AN"
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr "Zahlen als Pfeiltasten"
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr "Numerierte Links"
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr "Links und Formularfelder numerieren"
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr "Numerierte Formularfelder"
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr "Groß/klein nicht unterscheiden"
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr "Groß/klein unterscheiden<"
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr "normal auffordern"
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr "Ja-Antwort erzwingen"
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr "Nein-Antwort erzwingen"
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 msgid "Novice"
 msgstr "Neuling"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 msgid "Intermediate"
 msgstr "Mäßig Geübter"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr "Fortgeschrittener"
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr "Nach erstem Besuch"
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr "Nach erstem Besuch (rückläufig)"
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr "Als Besuchsbaum"
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr "Nach letztem Besuch"
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr "Nach letztem Besuch (rückläufig)"
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr "lässig (TagSoup-Modus)"
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr "strikt (SortaSGML-Modus)"
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr "als Label"
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 msgid "as links"
 msgstr "als Links"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 msgid "show filename"
 msgstr "Dateiname anzeigen"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr "STANDARD"
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr "FORTGESCHRITTEN"
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 msgid "Directories first"
 msgstr "Verzeichnisse zuerst"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 msgid "Files first"
 msgstr "Dateien zuerst"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr "Gemischter Stil"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 msgid "By Name"
 msgstr "Nach Name"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr "Nach Typus"
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr "Nach Länge"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 msgid "By Date"
 msgstr "Nach Datum"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr "Nach Modus"
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr "Nach Benutzer"
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 msgid "By Group"
 msgstr "Nach Gruppe"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr "Rate nicht anzeigen"
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, c-format
 msgid "Show %s/sec rate"
 msgstr "%s/sec Rate anzeigen"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr "%s/sec, ETA, anzeigen"
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr "lynx interne Typen akzeptieren"
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr "Auch die Typen von lynx.cfg akzeptieren<"
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr "Auch die Typen des Benutzers akzeptieren<"
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr "Auch die Typen des Systems akzeptieren<"
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 msgid "Accept all types"
 msgstr "Alle Typen akzeptieren"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr "gzip"
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr "compress"
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr "bzip2"
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr "Alle"
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "%s benutzen, um das Options-Menü aufzurufen"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr "(mit (!) markierte Optionen werden nicht gespeichert)"
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Allgmeine Präferenzen"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "User mode"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "Art der Suche"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr "Sicherheit und Datenschutz"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Kekse (Cookies)"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr "Bei Invalid-Cookie nachfragen"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr "Bei SSL nachfragen"
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "Tastatureingabe"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Tastaturmodus/Keypad mode"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Emacstasten"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "VI-Tasten"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr "Art für das Editieren von Zeilen"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "Tastaturbelegung"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Display und Zeichensatz"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 msgid "Use locale-based character set"
 msgstr "Locale-basierenden Zeichensatz verwenden"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Zeichensatz des Displays"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "Angenommene Zeichensatzkodierung"
 
@@ -4855,173 +4882,173 @@ msgstr "Angenommene Zeichensatzkodierung"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "CJK-Modus"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "Unkonvertiert (Raw 8-bit)"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X DISPLAY"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "Aussehen des Dokuments"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Farbe zeigen/Show color"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Positionsmarke zeigen/Show cursor"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 msgid "Underline links"
 msgstr "Links unterstreichen"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "Scrollbar zeigen"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "Popups für Select-Felder"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "HTML-Fehlerbehandlung"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Bilder zeigen"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Detaillierte Bildinformation"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "Einige Headers für Requests zu Remote Servern verschickt"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Persönliche Mailadresse"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Password für den News-Host '%s':"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 msgid "Preferred media type"
 msgstr "Erwünschter Medientyp"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 msgid "Preferred encoding"
 msgstr "Erwünschte Kodierung"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Erwünschter Zeichensatz (Accept-Charset)"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Erwünschte Dokumentsprache (Accept-Language)"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "Browseridentifizierung (User-Agent)"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "Dateiverzeichnisse anlegen und auf Dateien zugreifen"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "Sortierung für FTP-Verzeichnisse"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Sortierkriterien für lokale Verzeichnisse"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "Sortierreihenfolge für lokale Verzeichnisse"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Dateien mit Punkt am Anfang sichtbar"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "Ausführbare Links/Execution links"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Ãœbertragungsrate anzeigen"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "Besondere Dateien und Bildschirme"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "Multi-Datei-Lesezeichen"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "Lesezeichendateien ansehen/bearbeiten"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Zum Multi-Lesezeichenmenü"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "Lesezeichendatei"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Besuchte Seiten"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr "Die Datei ansehen "
 
@@ -5141,41 +5168,41 @@ msgstr "Lynx: Programmstart verweigert, Regeldatei %s (CERN rules file) nicht ve
 msgid "(no name)"
 msgstr "(ohne Namen)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Mehr als %d geschachtelte lynx.cfg-Includes -- wohl eine Schleife?!?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "letztes INCLUDE war für '%s',\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "enthalten in '%s'.\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "Folgendes ist der aktuellen Konfigurationsdatei entnommen."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Bitte die installierte Konfigurationsdatei"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr ""
 " \n"
 "für weitere Erläuterungen ansehen."
 
 # Looks dangerous to me, so I sneak in a warning. - kw
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "NEULADEN NACH ÄNDERUNG, AUF EIGENE GEFAHR!"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "Ihre primäre Konfiguration"
 
@@ -5446,33 +5473,33 @@ msgstr "Upload - wohin:"
 msgid "Upload options:"
 msgstr "Upload-Optionen:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr "URL des Download-Dokuments in das Clipboard gespeichert."
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "Unerwartetes Zugangsprotokoll für dieses URL-Schema."
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "Zu viele temporäre Dateien"
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "unbekannte Beschränkung"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "Keine Beschränkungen gesetzt.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Aktuelle Beschränkungen:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "Das HOME-Verzeichnis ist nicht zu finden"
 
diff --git a/po/et.po b/po/et.po
index b9de4c12..0d3cfb12 100644
--- a/po/et.po
+++ b/po/et.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.6-dev8\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2004-11-12 13:06+0200\n"
 "Last-Translator: Toomas Soome <Toomas.Soome@microlink.ee>\n"
 "Language-Team: Estonian <et@li.org>\n"
@@ -2242,7 +2242,7 @@ msgstr "(Nimeta.)"
 msgid "(No value.)"
 msgstr "(Väärtuseta.)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Puudub"
 
@@ -2549,142 +2549,147 @@ msgstr "Proksi autoriseerimisega ei õnnestu jätkata! Kontakteeruge serveri halda
 msgid "Retrying with proxy authorization information."
 msgstr "Proovin uuesti proksi autoriseerimise infoga."
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "SSL viga:host(%s)!=sert(%s)-Jätkan?"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: Tagastatav teade on liiga pikk."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Sisestage WAIS päring: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Proovin uuesti HTTP0 päringuna."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "Laetud %d baiti"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Andmed laetud"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Viga rea %d töötlemisel (%s)\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Aadressi loendi leht"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Järgede fail"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Seadete definitsioonid"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Präänikute Jar"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Jooksev klahvitabel"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Failide haldamise seaded"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Allalaadimise võimalused"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Ajaloo leht"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Lehe info"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Lynx.cfg Informatsioon"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Teisendatud Mosaic Hotlist"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Omaduste menüü"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Failiõiguste seaded"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Trükkimise võimalused"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Info jooksvast dokumendist"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "Viimased olekurea teated"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Üleslaadimise seaded"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Külastatud viidete leht"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Vaadake ka"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "teie"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "töö-aja seaded"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "kompileerimise aegsed seaded"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 msgid "color-style configuration"
 msgstr "värvistiili seaded"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "viimane versioon"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "eelversioon"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "arendusversioon"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2695,7 +2700,7 @@ msgstr ""
 "lehest."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2704,49 +2709,49 @@ msgstr ""
 "kompileerimise aegsete definitsioonidena."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "  C=loo D=lae alla E=toimeta F=kogu menüü M)uuda R=eemalda T=märgi U=lae üles\n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Jooksva viite oleku lugemine ebaõnnestus!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "Spetsiaal URL on lubatud ainult faili õiguste menüüs!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "Väline tugi on hetkel blokeeritud."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "Töökataloogi muutmine on hetkel blokeeritud."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "Reamurdmine väljas!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "Reamurdmine sees!"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Tabelid tabelites töötlemine on välja lülitatud! Laen uuesti..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Tabelid tabelites töötlemine on sisse lülitatud! Laen uuesti..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr "Kui kasutatakse reamurdmist, on nihutamine blokeeritud"
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "Trasseerimine ei ole toetatud"
 
@@ -2755,24 +2760,24 @@ msgstr "Trasseerimine ei ole toetatud"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "Kasutajanimi '%s' kasutamiseks, %s '%s%s':"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "See klient ei tea, kuidas koostada proksi autoriseerimise infot skeemile"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "See klient ei tea, kuidas koostada autoriseerimise infot skeemile"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Vigane päis '%s%s%s%s%s'"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "Nõutakse proksi autentimist -- proovin uuesti"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Autoriseerimata ei lubata kasutada -- proovin uuesti"
 
@@ -2788,7 +2793,7 @@ msgstr "POST sisuga dokument puudub puhvrist. Postitan uuesti?"
 msgid "Loading failed, use a previous copy."
 msgstr "laadimine ebaõnnestus, kasuta eelmist koopiat."
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Mittetäielik laadimine."
 
@@ -2811,7 +2816,7 @@ msgstr "**** HTAccess: Tagastatud olek oli: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Ei saa kasutada"
 
@@ -3008,15 +3013,15 @@ msgstr "Loen artiklit."
 msgid "Sorry, could not load requested news."
 msgstr "Kahjuks ei õnnestunud soovitud uudiseid laadida."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "Aadressis on vigane port"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "Aadressi pikkus tundub vigane"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Ei leia serverit %s."
@@ -3025,90 +3030,112 @@ msgstr "Ei leia serverit %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Vigane serveri nimi %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Loon %s ühendust serveriga %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "socket ebaõnnestus."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "socket ebaõnnestus: perekond %d aadress %s port %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Ei õnnestu muuta ühendust mitte-blokeerivaks."
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "Ühendus ebaõnnestus (looga palju katseid)."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "Pistikul ei õnnestu taastada blokeerivat moodi."
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "Pistikust lugemine ebaõnnestus 180 000 katsel."
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr "Aadress sisaldab kasutajanime: %s"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "See klient ei toeta HTTPS URLe."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "Serveriga ühenduse loomine ebaõnnestus."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "Üritan ühendust uuesti luua TLS kasutamata."
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "Präänik on söödud!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+#, fuzzy
+msgid "Can't find common name in certificate"
 msgstr "SSL viga: Sertifikaadis puudub ühine nimi - jätkan?"
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL viga:host(%s)!=sert(%s)-Jätkan?"
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Turvaline %d-bitti %s (%s) HTTP ühendus"
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "Saadan HTTP päringu."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Ootamatu tõrge võrku kirjutamisel; ühendus katkestati."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP päring on saadetud; ootan vastust."
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Ootamatu tõrge võrgust lugemisel; ühendus katkestati."
 
@@ -3121,7 +3148,7 @@ msgstr "Ootamatu tõrge võrgust lugemisel; ühendus katkestati."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "Sain ootamatu informatiivse oleku."
 
@@ -3131,7 +3158,7 @@ msgstr "Sain ootamatu informatiivse oleku."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "Päring täidetud. Algväärtusta sisu."
 
@@ -3141,27 +3168,27 @@ msgstr "Päring täidetud. Algväärtusta sisu."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Sain ootamatu oleku, 304 Pole muudetud."
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "POST sisu ümbersuunamine nõuab kasutaja kinnitust."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Oman POST sisu. Käsitlen püsivat ümbersuunamist ajutisena.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Proovin uuesti kasutades autoriseerimise infot."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "Näitan teate 401 keha?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "Näitan teate 407 keha?"
 
@@ -3169,7 +3196,7 @@ msgstr "Näitan teate 407 keha?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "Tundmatu oleku vastus serverilt!"
 
@@ -3357,139 +3384,139 @@ msgstr "Haldaja"
 msgid "Host"
 msgstr "Server"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "Mälu on otsas, esitus katkestati!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Mälu on otsas, katkestan ülekande!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** MÄLU ON OTSAS ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "tundmatu väli või viide"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "teksti väli"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "parooli väli"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "märkeruut"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "raadionupp"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "postitamise nupp"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "algväärtustamise nupp"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "hüpikmenüü"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "peidetud vormi väli"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "tekstiala"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "vahemiku väli"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "faili väli"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "teksti postitamise väli"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "pildi postitamise nupp"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "võtme loomise väli"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "tundmatu vormi väli"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "Faili ei õnnestu üleslaadimiseks avada"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "Postitan %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Tuvastati hangumine: TextAnchor struktuur on vigane - soovitan katkestada!"
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "Murran read et mahtuda ekraanile?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "Väga pikad read on murtud!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "Väga pikad read on lõigatud!"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "baiti"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "Loetud andmeid %s, kokku %s"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "Loetud andmeid %s"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/sek"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr " (peatunud %s)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ", ELA %s"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (Katkestamiseks vajutage 'z')"
 
@@ -3518,11 +3545,11 @@ msgstr " (Katkestamiseks vajutage 'z')"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "jah"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "ei"
 
@@ -3542,7 +3569,7 @@ msgstr "ei"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr "J/E/A/M"
 
@@ -3679,31 +3706,31 @@ msgstr "Sisemine"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "cookie_domain_flag_set viga, katkestan programmi töö"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Terminali initsialiseerimine ebaõnnestus - tundmatu terminali tüüp?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminal ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Selle programmiga peate kasutama vt100, 200 vms terminali."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "Teie terminali tüüp on tundmatu!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Sisestage terminali tüüp:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "TERMINALI TÜÜBIKS ON SEATUD"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3712,7 +3739,7 @@ msgstr ""
 "\n"
 "Fataalne viga tekkis programmis %s Ver. %s\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4189,30 +4216,30 @@ msgstr "See teade on automaatselt loodud"
 msgid "No system mailer configured"
 msgstr "Süsteemset e-posti programmi ei ole seadistatud"
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Winsock puudub, kahju."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "Te PEATE defineerima kehtiva TMP või TEMP piirkonna!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "Sellist kataloogi ei ole"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Seadete faili %s ei ole.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4223,7 +4250,7 @@ msgstr ""
 "Lynx kooditabeleid ei ole deklareeritud.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4234,169 +4261,169 @@ msgstr ""
 "Lynx kaadri toimeti ei ole deklareeritud.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Lynx fail %s ei ole kasutatav.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Hoiatus:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "püsivate präänikute olekut muudetakse alles järgmise sessiooniga."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx: ignoreerin tundmatut kooditabelit %s\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s Versioon %s (%s)"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Ehitatud %s masinal %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "Autoriõiguseid omavad University of Kansas, CERN ja teised."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "Levitatakse GNU üldise avaliku litsensiga."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Abi ja muud infot leiate aadressil http://lynx.isc.org/."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "KASUTAMINE: %s [võtmed] [fail]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Võtmed on:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: Vigane võti: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "Sisemine viga: Vigane hiire viide %d!"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "Kasutaja poolt antud URL"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "multipart/form-data kodeering ei ole veel toetatud! Ei saa saata."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "Abiinfo ekraan"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Süsteemi indeks"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Sisenemine põhiekraanile"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr "Järgmist dokumenti pole"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "kahjuks on selle dokumendi kooditabel üheselt määratud..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "mine kataloogi:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "Tee komponent ei ole kataloog"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "kataloogi ei õnnestu vahetada"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "Parsin dokumendi uuesti jooksvate seadetega..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Fataalne viga - ei õnnestu avada väljundfaili %s\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr "TABELI tsentreerimine lubatud."
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr "TABELI tsentreerimine blokeeritud."
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 msgid "Current URL is empty."
 msgstr "Jooksev URL on tühi."
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr "Lõikepuhvrisse kopeerimine ebaõnnestus."
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr "Panin dokumendi URLi lõikepuhvrisse."
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr "Panin viite URLi lõikepuhvrisse."
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr "Lõikepuhvris URLe ei ole."
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-indeks-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: Ei õnnestu laadida esilehte"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: Esilehte pole või ei ole text/html ega text/plain tüüpi"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      Lõpetan..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-veel-"
 
@@ -4460,344 +4487,344 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "Teatel puudub algne tekst!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "vaara/toimeta B=järgede faile"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "B=järgede fail: "
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr "SEES"
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr "VÄLJAS"
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr "MITTE KUNAGI"
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr "ALATI"
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr "ignoreeri"
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr "küsi kasutajalt"
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr "luba kõik"
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr "ALATI VÄLJAS"
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr "AINULT KOHALIKELE FAILIDELE"
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr "ALATI SEES"
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr "numbrid käituvad nooltena"
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr "Viited on nummerdatud"
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr "Viited ja vormide väljad on nummerdatud"
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr "Vormide väljad on nummerdatud"
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr "Tõstutundetu"
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr "Tõstutundlik"
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr "küsi tavapäraselt"
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr "paku jah-vastus"
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr "paku ei-vastus"
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 msgid "Novice"
 msgstr "Algaja"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 msgid "Intermediate"
 msgstr "Vahepealne"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr "Edasijõudnud"
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr "Esmase külastuse järgi"
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr "Pööratud esmase külastuse järgi"
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr "Külastuste puu"
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr "Viimase külastuse järgi"
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr "Pööratud viimase külastuse järgi"
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr "lõtv (TagSoup mood)"
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr "range (SortaSGML mood)"
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr "kui märgendid"
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 msgid "as links"
 msgstr "kui viited"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 msgid "show filename"
 msgstr "näita failinime"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr "STANDARD"
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr "LAIENDATUD"
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 msgid "Directories first"
 msgstr "Esmalt kataloogid"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 msgid "Files first"
 msgstr "Esimalt failid"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr "Segastiil"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 msgid "By Name"
 msgstr "Nime järgi"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr "Tüübi järgi"
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr "Mahu järgi"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 msgid "By Date"
 msgstr "Kuupäeva järgi"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr "moodi järgi"
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr "Kasutaja järgi"
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 msgid "By Group"
 msgstr "Grupi järgi"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr "Ära näita kiirust"
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, c-format
 msgid "Show %s/sec rate"
 msgstr "Näita %s/sek kiirust"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr "Näita %s/sek, ETA"
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr "Luba lynxi sisemised tüübid"
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr "Luba ka lynx.cfg tüübid"
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr "Luba ka kasutaja tüübid"
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr "Luba ka süsteemsed tüübid"
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 msgid "Accept all types"
 msgstr "Luba kõik tüübid"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr "gzip"
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr "kahanda"
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr "compress"
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr "bzip2"
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr "Kõik"
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Seadete menüü saamiseks kasutage %s!"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr "((!) märgitud seadeid ei salvestata)"
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Üldised seaded"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "Kasutaja mood"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Toimeti"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "Otsingutüüp"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr "Turvalisus ja privaatsus"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Präänikud"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr "Vigase prääniku küsimine"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr "SSL küsimine"
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "Sisend klaviatuurilt"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Klahvistiku mood"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Emacs klahvid"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "VI klahvid"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr "Reatoimeti mood"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "Klaviatuuri asetus"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Ekraan ja kooditabel"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 msgid "Use locale-based character set"
 msgstr "Kasuta lokaadi põhist kooditabelit"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Ekraani kooditabel"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "Eeldatav dokumendi kooditabel"
 
@@ -4806,173 +4833,173 @@ msgstr "Eeldatav dokumendi kooditabel"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "CJK mood"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "Puhas 8-bitti"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X Ekraan"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "Dokumendi esitamine"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Näita värve"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Näita kursorit"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 msgid "Underline links"
 msgstr "Jooni viited"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "Näita kerimisriba"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "Hüpikud valikuväljadele"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "HTML veatöötlus"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Näita pilte"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Verbaalsed pildid"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "Serverile saadetavad päised"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Isiklik e-posti aadress"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Parool uudiseserverile '%s':"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 msgid "Preferred media type"
 msgstr "Eelistatud meedia tüüp"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 msgid "Preferred encoding"
 msgstr "Eelistatud kodeering"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Eelistatuim dokumendi kooditabel"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Eelistatuim dokumendi keel"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "User-Agent päis"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "Failide näitamine ja kasutamine"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "FTP järjestamine"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Lokaalse kataloogi järjestamine"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "Lokaalse kataloogi järjestamine"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Näita punktiga faile"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "Täidetavad viited"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Näita laadimise kiirust"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "Spetsiaalfailid ja ekraanid"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "Järgede failid"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "vaata/toimeta järgede faile"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Mine mitme-järje menüüsse"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "Järgede fail"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Külastatud lehed"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr "Vaata faili"
 
@@ -5092,38 +5119,38 @@ msgstr "Lynx: ei saa startida, CERN reeglite fail %s ei ole kasutatav\n"
 msgid "(no name)"
 msgstr "(nimetu)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Rohkem kui %d lynx.cfg kaasamist -- vahest on tekkinud tsükkel?!?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Viimane kaasata üritatud fail oli '%s',\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "kaasatud failist '%s'.\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "Järgnev on loetud teie lynx.cfg failist."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Lisainfo jaoks lugege palun"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "paketis olevat faili."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "MUUTUSTE LAADIMINE"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "Teie primaarsed seaded"
 
@@ -5392,33 +5419,33 @@ msgstr "Lae üles:"
 msgid "Upload options:"
 msgstr "Üleslaadimise seaded:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr "Panin dokumendi allalaadimise URLi lõikepuhvrisse."
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "Selle URL skeemiga kasutatakse ootamatut kasutamise protokolli."
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "Liiga palju ajutisi faile"
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "tundmatu piirang"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "Piiranguid pole.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Seatud piirangud:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "Ei leie HOME kataloogi"
 
diff --git a/po/fr.po b/po/fr.po
index 3bc327d5..2f6d9adc 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -29,7 +29,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 1999-06-05 15:18-0400\n"
 "Last-Translator: Jim Spath <jspath@bcpl.net>\n"
 "Language-Team: (none yet, address for now:) French <lynx-dev@nongnu.org>\n"
@@ -2293,7 +2293,7 @@ msgstr "(Aucun nom)"
 msgid "(No value.)"
 msgstr "(Aucune valeur)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Aucun(e)"
 
@@ -2605,143 +2605,148 @@ msgstr "Impossible sans autorisation du mandataire; contacter le webmestre."
 msgid "Retrying with proxy authorization information."
 msgstr "Nouvelle tentative avec info d'autorisation du mandataire"
 
+#: LYMessages.c:796
+#, c-format
+msgid "SSL error:%s-Continue?"
+msgstr ""
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: Message de retour trop grand."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Entrez votre requête WAIS:"
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Nouvel essai de requête HTTP0"
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "%d bytes transférés"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Transfert de données terminé"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Erreur à la ligne %d de %s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Page de liste d'adresse"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Fichier de signets"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Définition de la configuration"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "\"Le fichier des «cookies»"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Configuration des touches"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Options de gestion de fichier"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Options de déchargement de fichier"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Historique"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "la Page de références"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Information sur Lynx.cfg"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Liste de signets Mosaic convertie"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Menu des paramètres"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Options de permission d'accès"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Options d'impression"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Information sur le document courant"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "Votre ligne d'état récente"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Options de chargement de fichier "
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "la Page des liens activés"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Voir aussi"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "votre"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "pour les options d'exécution"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "options de compilation"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 #, fuzzy
 msgid "color-style configuration"
 msgstr "Votre configuration principale"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "dernière version"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "version pré finale"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "version de développement"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2752,7 +2757,7 @@ msgstr ""
 "d'inclure une copie de cette page."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2761,53 +2766,53 @@ msgstr ""
 "configurées automatiquement lors de la compilation de cette version de Lynx."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "C)réer D)écharger E)diter F) Menu M)odifier R) Supprimer T) Marquer U) Charger\n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Impossible d'obtenir l'état du lien actif!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "URL spécial valide uniquement depuis le menu de permission d'accès actif"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "Le soutien externe est présentement inactive."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 #, fuzzy
 msgid "Changing working-directory is currently disabled."
 msgstr "Le lancement est présentement désactivé."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 #, fuzzy
 msgid "Linewrap OFF!"
 msgstr "Traçage DÉSACTIVÉ"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr ""
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 #, fuzzy
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Le mode 8-bits ou CJK est réglé à DÉSACTIVÉ! Chargement..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 #, fuzzy
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Le mode 8-bits ou CJK est réglé à ACTIVÉ! Chargement..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr ""
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 #, fuzzy
 msgid "Trace not supported"
 msgstr "Le terminal ne permet pas l'affichage couleur"
@@ -2817,25 +2822,25 @@ msgstr "Le terminal ne permet pas l'affichage couleur"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "TR-Username for '%s' at %s '%s%s':"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "Ce client ne sait pas comment composer l'information d'autorisation du mandataire pour le schème d'adressage"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "Ce client ne sait pas comment composer des informations d'autorisation pour un schéma"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Header invalide '%s%s%s%s%s'"
 
 # WWW/Libary/Implementation/HTAABrow.c
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "Autorisation du mandataire requise - nouvelle tentative"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Accès non autorisé refusé - nouvelle tentative"
 
@@ -2852,7 +2857,7 @@ msgstr "Document avec contenu POST non trouvé dans l'antémémoire. Recommencer?"
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Chargement incomplet."
 
@@ -2875,7 +2880,7 @@ msgstr "**** HTAccess: L'état retourné était: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Accès impossible"
 
@@ -3070,15 +3075,15 @@ msgstr "Lecture d'articles de forums."
 msgid "Sorry, could not load requested news."
 msgstr "Désolé, impossible de charger la nouvelles demandée."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "L'adresse a un numéro de port invalide"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "La longueur de l'adresse semble invalide"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Impossible de localiser l'hôte distant %s"
@@ -3087,95 +3092,116 @@ msgstr "Impossible de localiser l'hôte distant %s"
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Nom d'hôte invalide: %s"
 
 # First %s will be FTP, HTTP or other protocol and second %s will be hostname
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Connexion %s à %s "
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "la socket a échouée"
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "La socket a échouée: famille %d adresse %s port %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Impossible d'établir une connection non bloquante"
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "Connection impossible (trop d'essais successifs)"
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "Impossible de rétablir le blocage sur la socket"
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "La lecture de la socket a échouée pour 180,000 essais"
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Ce client n'est pas conçu pour traiter les URL HTTPS"
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "Impossible d'établir une connexion à l'hôte distant"
 
 # First %s will be FTP, HTTP or other protocol and second %s will be hostname
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 #, fuzzy
 msgid "Retrying connection without TLS."
 msgstr "Connexion %s à %s "
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "Le cookie a été supprimé!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+msgid "Can't find common name in certificate"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "Envoi de la requête HTTP"
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Erreur d'écriture réseau inattendue: connection annulée."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "Demande acheminée au serveur. Veuillez attendre"
 
 # END of Permit FORM
 # More progress strings follow
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Erreur de lecture inattendue; connexion interrompue"
 
@@ -3188,7 +3214,7 @@ msgstr "Erreur de lecture inattendue; connexion interrompue"
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "Réception d'information de statut inattendue"
 
@@ -3198,7 +3224,7 @@ msgstr "Réception d'information de statut inattendue"
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "Requête fructueuse. Restauration du contenu."
 
@@ -3208,27 +3234,27 @@ msgstr "Requête fructueuse. Restauration du contenu."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Réception inattendue d'un état non modifié 304"
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "La redirection d'un contenu POST nécessite l'accord de l'utilisateur"
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Contenu POST. La redirection permanente est traitée comme temporaire.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Nouvel essai avec information d'autorisation d'accès"
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "Visualiser le corps du message 401 ?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "Afficher le corps du message 407?"
 
@@ -3236,7 +3262,7 @@ msgstr "Afficher le corps du message 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "Réponse d'état inconnue reçue du serveur"
 
@@ -3421,142 +3447,142 @@ msgid "Host"
 msgstr "Hôte"
 
 # src/GridText.c
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "Mémoire insuffisante; interruption de l'affichage."
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Mémoire saturée, interruption du transfert !"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** MÉMOIRE INSUFFISANTE ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "champ ou lien inconnu"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "champ de saisie de texte"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "champ d'entrée du mot de passe"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "case d'option"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "bouton d'option"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "bouton Envoyer"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "bouton Effacer"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "menu éclair"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "champ de formulaire caché"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "zone d'entrée de texte"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "champ de saisie (range)"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "champ de saisie (file)"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "champ d'envoi (texte)"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "bouton d'envoi (image)"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "champ «keygen»"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "champ de formulaire inconnu"
 
 # WWW/Libary/Implementation/HTFile.c
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 #, fuzzy
 msgid "Can't open file for uploading"
 msgstr "Impossible d'ouvrir le fichier pour décompression."
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "Envoi de %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "Raccourcir les lignes pour correspondre à la zone d'affichage ?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "Les très longues lignes ont été es tassées"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "Les très longues lignes ont été es tronquées"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "bytes"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "Lecture de %s de %s octets de données"
 
 # WWW/Library/Implementation/HTFormat.c
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "Lecture de %s kilo octets de données"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/sec"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, fuzzy, c-format
 msgid " (stalled for %s)"
 msgstr " (bloqué pour %ld sec)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, fuzzy, c-format
 msgid ", ETA %s"
 msgstr ", temps estimé: %ld sec"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (Appuyer sur 'z' pour annuler.)"
 
@@ -3600,11 +3626,11 @@ msgstr " (Appuyer sur 'z' pour annuler.)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "oui"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "non"
 
@@ -3624,7 +3650,7 @@ msgstr "non"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -3760,31 +3786,31 @@ msgstr "Interne"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "erreur de mise en place de flag de domaine de cookie, fermeture du programme"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Défaut d'initialisation au terminal; type de terminal inconnu?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminal ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Il faut utiliser un terminal vt100, 200, etc. avec ce programme."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "Votre type de terminal n'est pas reconnu."
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Entrez un type de terminal"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "TYPE DE TERMINAL RÉGLÉ À"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3793,7 +3819,7 @@ msgstr ""
 "\n"
 "Une erreur fatale s'est produite dans %s Ver. %s\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4275,23 +4301,23 @@ msgstr "Ce message est généré automatiquement par"
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Pas de Winsock trouvée, désolé."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "vous DEVEZ définir une zone TMP ou TEMP valide !"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "Pas de tel répertoire"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
@@ -4299,7 +4325,7 @@ msgstr ""
 "\n"
 
 # src/LYMain.c
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4310,7 +4336,7 @@ msgstr ""
 "Jeux de caractères Lynx non précisés.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4321,170 +4347,170 @@ msgstr ""
 "Relevé de liens Lynx non déclaré.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Le fichier Lynx %s n'est pas disponible.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Attention:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "L'état des cookies persistant ne seront changés qu'au cours de la prochaine session."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx: ignorer le charset=%s inconnu\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, fuzzy, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s Version %s (%s)\n"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Compilé le %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "Copyright tenu par l'université du Kansas, du CERN, et d'autres contribuants"
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "Distribué sous le permis de grand public de GNU"
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Voyez http://lynx.isc.org/ et d'aide en ligne pour plus d'information."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "USAGE : %s [options] [fichier]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Les options sont :\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s : Option non valide : %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "Erreur interne: lien pour la souris %d invalide"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "Un URL spécifié par l'utilisateur"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "«Enctype multipart/form-data» non fonctionnel. Envoi impossible."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "L'écran de Aide"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Index système"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Entrée dans l'écran principal"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr ""
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "charset pour ce document spécifié explicitement, désolé..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "changer de répertoire vers:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "Une partie du chemin n'est pas un répertoire."
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "Changement de répertoire impossible"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "Relecture du document avec les paramètres actuels."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Erreur fatale - impossible d'ouvrir le fichier de sortie %s\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 #, fuzzy
 msgid "Current URL is empty."
 msgstr "Le répertoire courant:"
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr ""
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-index-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx : accès impossible au fichier de départ"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx : fichier de départ introuvable ou son mode n'est pas reconnu"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "Sortie"
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-suite-"
 
@@ -4548,334 +4574,334 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "Le message n'a pas de texte original !"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "B) Éditer fichiers signets "
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "B) Fichier de signets : "
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 #, fuzzy
 msgid "Novice"
 msgstr "Aucun(e)"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 #, fuzzy
 msgid "Intermediate"
 msgstr "Interne"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 #, fuzzy
 msgid "as links"
 msgstr "ce lien"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 #, fuzzy
 msgid "show filename"
 msgstr "(mauvais nom de fichier)"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 #, fuzzy
 msgid "Directories first"
 msgstr "Sous-répertoires :"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 #, fuzzy
 msgid "Files first"
 msgstr " premier"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr ""
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 #, fuzzy
 msgid "By Name"
 msgstr "Nom :"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 #, fuzzy
 msgid "By Size"
 msgstr "Taille de byte"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 #, fuzzy
 msgid "By Date"
 msgstr "Date :"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 #, fuzzy
 msgid "By Group"
 msgstr "Groupe"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, fuzzy, c-format
 msgid "Show %s/sec rate"
 msgstr "Transfert de données terminé"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 #, fuzzy
 msgid "Accept all types"
 msgstr "Accepter les changements"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Utilisez %s pour invoquer le menu des Options."
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Références"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "Mode utilisateur"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Éditeur"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "Pour la recherche"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Cookies"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "Entrée du clavier"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Pavé numérique"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Touches emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "Touches vi"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 #, fuzzy
 msgid "Keyboard layout"
 msgstr "Entrée du clavier"
@@ -4883,22 +4909,22 @@ msgstr "Entrée du clavier"
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Variable d'affichage"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "charset présumé du document:"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Afficher le charset"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "charset présumé du document:"
 
@@ -4907,178 +4933,178 @@ msgstr "charset présumé du document:"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr ""
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "Mode 8-bit"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X Display"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "Apparence du document"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Afficher les couleurs"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Afficher le curseur"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 #, fuzzy
 msgid "Underline links"
 msgstr "Liens cachés :"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 #, fuzzy
 msgid "Show scrollbar"
 msgstr "Afficher les couleurs"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "Fenêtre popup pour les champs sélectionnés."
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "Reprise d'une erreur HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Montrer les images"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Images verbeuses"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "Les headers sont transférés aux serveurs distants"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Adresse email personnelle"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Mot de passe pour l'hôte de forums '%s' :"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 #, fuzzy
 msgid "Preferred media type"
 msgstr "%d bytes transférés"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Langue préférée"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Jeu de caractères préféré"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Langue préférée"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "Header 'User-Agent'"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "Listes et acces aux fichiers"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "Critères de tri FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Critère de tri des répertoires locaux."
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 #, fuzzy
 msgid "Local directory sort order"
 msgstr "Critère de tri des répertoires locaux."
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Montrer les fichiers cachés"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "Liens à éxécuter"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Transfert de données terminé"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "Fichiers et écrans spéciaux."
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "Bookmarks multiples"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "Revoir/Éditer les fichiers Bookmarks"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Aller au menu multi-bookmarks"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "Fichier de Bookmarks"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "la Page des liens activés"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 #, fuzzy
 msgid "View the file "
 msgstr "Envoyer le fichier par courrier"
@@ -5199,38 +5225,38 @@ msgstr "Lynx: impossible de démarrer. Le fichier de règles CERN %s n'est pas acc
 msgid "(no name)"
 msgstr "(pas de nom)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Plus de %d inclusions de lynx.cfg imbriquées. Peut être y a t'il une boucle ?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Le dernier include tenté était: '%s',\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "include de '%s'.\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "Les données suivantes sont lues à partie de votre fichier lynx.cfg."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Merci de lire la distribution"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "pour plus de commentaires."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "RECHARGER LES MODIFICATIONS"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "Votre configuration principale"
 
@@ -5504,34 +5530,34 @@ msgstr "Téléchargement vers:"
 msgid "Upload options:"
 msgstr "Options de chargement de fichier :"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "Protocole d'accès inattendu pour ce schéma l'URL"
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr ""
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 #, fuzzy
 msgid "unknown restriction"
 msgstr "Pas de restriction définies."
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "Pas de restriction définies.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Définition de restriction:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr ""
 
diff --git a/po/hu.po b/po/hu.po
index 0a1dc33a..d490ef03 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.6-dev8\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2004-11-14 19:52+0100\n"
 "Last-Translator: Mihály Gyulai <gyulai@fbi.hu>\n"
 "Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
@@ -2243,7 +2243,7 @@ msgstr "(Nincs név.)"
 msgid "(No value.)"
 msgstr "(Nincs érték.)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Nincs"
 
@@ -2550,142 +2550,147 @@ msgstr "Nem lehet újrapróbálni proxy felhatalmazást! Lépjen kapcsolatba a szerve
 msgid "Retrying with proxy authorization information."
 msgstr "Újra próbálkozom a proxy felhatalmazási információval."
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "SSL hiba:host(%s)!=cert(%s)-Tovább?"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: A visszaadott üzenet túl nagy."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Gépelje be a WAIS keresést: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Újra próbálom HTTP0 kéréssel."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "Továbbítva %d bájt"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Adatátvitel kész"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Hiba a feldolgozásban a %d. sorban (össz: %s)\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Címlista lap"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Könyvjelzõ fájl"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Beállítás meghatározásai"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Sütis tálca"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Jelenlegi billentyûkiosztás"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Fájlkezelési beállítások"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Letöltési beállítások"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Elõzmények lap"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Lista lap"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Lynx.cfg információ"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Átalakított Mosaic gyorslista"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Beállítások menü"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Fájl-jogok beállításai"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Nyomtatási beállítások"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Információ az aktuális dokumentumról"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "A legutóbbi állapotsori üzenetek"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Feltöltési beállítások"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Látogatott linkek lapja"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Lásd még:"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "az ön"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "futásidejû beállítások"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "programfordítási beállítások"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 msgid "color-style configuration"
 msgstr "szín-stílus beállítása"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "A Lynx honlapja"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "A Lynx kiadás elõtti változata"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "Fejlesztõi változat helye"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2696,7 +2701,7 @@ msgstr ""
 "egy másolatot errõl az oldalról. (másolat: 'p' parancs)"
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2705,49 +2710,49 @@ msgstr ""
 " konfigurálása során."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "Létrehoz (C), Letölt (D), Szerkeszt (E), Teljes menü (F), Módosít (M), Eltávolít (R), Jelöl (T), Feltölt (U)\n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Nem sikerült megállapítani az aktuális link állapotát!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "Speciális URL csak az aktuális Fájl-Jogok menübõl érvényes!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "A külsõ támogatás jelenleg le van tiltva."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "A munkakönyvtár váltás most le van tiltva."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "Sortörés KI!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "Sortörés BE!"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Egymásba ágyazott táblázatok kikapcsolva! Újratöltés..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Egymásba ágyazott táblázatok bekapcsolva! Újratöltés..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr "Az eltolás le van tiltva a sortörés alatt"
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "A nyomozás nincs támogatva"
 
@@ -2756,24 +2761,24 @@ msgstr "A nyomozás nincs támogatva"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "'%s' %s '%s%s' felhasználónév:"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "Ez a program nem tudja, hogyan kell összeállítani proxy jogosultságot ehhez a sémához"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "Ez az ügyfél nem tudja, hogyan kell összeállítani jogosultságot ehhez a sémához"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Helytelen fejléc: '%s%s%s%s%s'"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "Proxy felhatalmazás szükséges -- újra"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Felhatalmazás nélküli elérés megtagadva -- újra"
 
@@ -2789,7 +2794,7 @@ msgstr "POST tartalommal rendelkezõ dokumentum nem található a gyorstárban. Újra
 msgid "Loading failed, use a previous copy."
 msgstr "A betöltés sikertelen, korábbi példány használata."
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "A betöltés nem teljes."
 
@@ -2812,7 +2817,7 @@ msgstr "**** HTAccess: Visszatérési állapot: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Nem lehet elérni"
 
@@ -3009,15 +3014,15 @@ msgstr "Cikk olvasása."
 msgid "Sorry, could not load requested news."
 msgstr "Sajnálom, nem tudom betölteni a hírt."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "A címben érvénytelen a port"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "A cím hosszúsága érvénytelen"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Nem találom a %s távoli számítógépet."
@@ -3026,90 +3031,112 @@ msgstr "Nem találom a %s távoli számítógépet."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "A %s helytelen gépnév"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "%s csatlakozás létrehozása ide: %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "az illesztõpont sérült."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "az illesztõpont sérült: család: %d cím: %s port: %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Nem sikerült a nem blokkolt csatlakozás."
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "A kapcsolat sikertelen (túl sok próbálkozás)."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "Nem lehet visszaállítani az illesztõpontot blokkoltra."
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "Az illesztõpont 180.000 olvasás után is sikertelen."
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr "A cím felhasználói nevet tartalmaz: %s"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Ez az ügyfél nem támogatja a HTTPS URL-eket."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "Nem lehet kapcsolódni a távoli számítógéphez."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "Újbóli csatlakozás TLS nélkül."
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "A sütit megettük!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+#, fuzzy
+msgid "Can't find common name in certificate"
 msgstr "SSL hiba: nem található azonos név a bizonyítványban - folytatjuk?"
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL hiba:host(%s)!=cert(%s)-Tovább?"
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Biztonságos %d-bit %s (%s) HTTP csatlakozás"
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "HTTP kérés küldése."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Váratlan hálózati írási hiba; a csatlakozás megszakítva."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP kérés elküldve, várakozás a válaszra."
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Váratlan hálózati olvasási hiba, a csatlakozás megszakítva."
 
@@ -3122,7 +3149,7 @@ msgstr "Váratlan hálózati olvasási hiba, a csatlakozás megszakítva."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "Váratlan tájékoztatást kaptam az állapotról."
 
@@ -3132,7 +3159,7 @@ msgstr "Váratlan tájékoztatást kaptam az állapotról."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "Kérés teljesítve. Állítsa vissza a tartalmat."
 
@@ -3142,27 +3169,27 @@ msgstr "Kérés teljesítve. Állítsa vissza a tartalmat."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Váratlan 304-es hiba: Nem lett módosítva az állapot."
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "A POST tartalom átirányításához felhasználói engedély kell."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "POST tartalom. Az állandó átirányítást átmenetiként kezelem.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Újra próbálom elérés felhatalmazási információval."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "Mutassam a 401-es üzenet szövegét?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "Mutassam a 407-es üzenet szövegét?"
 
@@ -3170,7 +3197,7 @@ msgstr "Mutassam a 407-es üzenet szövegét?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "A szerver válasza: Ismeretlen állapot!"
 
@@ -3358,139 +3385,139 @@ msgstr "Karbantartó"
 msgid "Host"
 msgstr "Kiszolgáló"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "A memória elfogyott, megjelenítés megszakítva!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "A memória elfogyott, az átvitel meg lesz szakítva!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** A MEMÓRIA ELFOGYOTT ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "ismeretlen mezõ vagy hivatkozás"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "szöveg bejegyzés mezõ"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "jelszó bejegyzés mezõ"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "jelölõnégyzet"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "választógomb"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "küldõ gomb"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "törlés gomb"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "felbukkanó menü"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "rejtett ûrlap mezõ"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "szöveg bejegyzés terület"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "tartomány bejegyzés mezõ"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "fájl bejegyzés mezõ"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "szöveg-küldõ mezõ"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "kép-küldõ mezõ"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "kulcsgeneráló mezõ"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "ismeretlen ûrlap mezõ"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "Nem lehet megnyitni a fájlt a feltöltéshez"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "%s továbbítása"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Akadásjelzés: A TextAnchor szerkezete sérült - javaslom a megszakítást!"
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "Tördeljem a sorokat, hogy kiférjenek?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "A hosszú sorokat új sorba tördeltem!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "A hosszú sorok végét levágtam!"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "bájt"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "Adat olvasása: %s (összesen: %s)"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "%s adat olvasása"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/sec"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr " (megállt %s sec-ra)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ", ETA %s sec"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (Nyomja le a 'Z'-t a megszakításhoz)"
 
@@ -3519,11 +3546,11 @@ msgstr " (Nyomja le a 'Z'-t a megszakításhoz)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "igen"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "nem"
 
@@ -3543,7 +3570,7 @@ msgstr "nem"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr "I/N/M/S"
 
@@ -3679,31 +3706,31 @@ msgstr "Belsõ"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "cookie_domain_flag_set hiba, program megszakítva"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Terminál megnyitás sikertelen - ismeretlen terminál típus?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminál ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Önnek vt100, 200 stb.-t kell használnia ehhez a programhoz."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "A terminál típus ismeretlen!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Kérem a terminál típusát:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "A TERMINÁL TÍPUS BEÁLLÍTVA:"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3712,7 +3739,7 @@ msgstr ""
 "\n"
 "Végzetes hiba lépett fel a %s %s verzióban\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4189,30 +4216,30 @@ msgstr "Ez az üzenet önmûködõen jött létre"
 msgid "No system mailer configured"
 msgstr "Nincsen rendszerszintû levelezõ beállítva"
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Nem találtam Winsock-ot, sajnálom."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "Önnek meg kell adnia egy érvényes TMP vagy TEMP területet"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "Nincs ilyen könyvtár"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "A(z) %s konfigurációs fájl nem áll rendelkezésre.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4223,7 +4250,7 @@ msgstr ""
 "Nincs deklarált karakterkészlet a Lynx-ben.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4234,169 +4261,169 @@ msgstr ""
 "Nincs deklarált szerkesztõkép a Lynx-ben.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "A(z) %s Lynx-fájl nem áll rendelkezésre.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Figyelem:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "az állandó süti állapot csak a következõ folyamat során fog megváltozni."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "A Lynx figyelmen kívül hagyja a %s fel nem ismert karakterkészletet\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s Verzió %s (%s)"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Készítve %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "A szerzõi és kiadó jogokat a Kansas Egyetem, a CERN és az egyéb közremûködõk gyakorolják."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "A GNU Általános Nyilvános Licensz szerint kiadva."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Nézze meg a súgót és a http://lynx.isc.org/-ot, ahol segítséget kaphat."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "HASZNÁLAT: %s [opciók] [fájl]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Opciók:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: Érvénytelen opció: %s \n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "Belsõ hiba: Hibás egér hivatkozás %d!"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "Felhasználó által megadott URL"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "Enctype multipart/form-data még nincs támogatva! Nem tudjuk elküldeni."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "Súgó képernyõ"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Rendszer index"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Belépés a fõképernyõbe"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr "Nincs további dokumentum"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "a dokumentum karakterkészlete már be van állítva..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "könyvtárváltás:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "Az útvonal egy összetevõje nem könyvtár"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "nem sikerült a  könyvtárváltás"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "A dokumentumot átalakítom az aktuális beállításoknak megfelelõen..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Végzetes hiba: nem lehet megnyitni a(z) '%s' kimeneti fájlt\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr "'Táblázat középre' engedélyezve."
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr "'Táblázat középre' tiltva."
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 msgid "Current URL is empty."
 msgstr "Üres a pillanatnyi URL."
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr "Sikertelen a vágólapra másolás."
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr "A dokumentum URL-jét a vágólapra tesszük."
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr "A link URL-jét a vágólapra tesszük."
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr "Nincsen URL a vágólapon."
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-index-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: Nincs kezdõfájl!"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: A kezdõfájlt nem találom (sem HTML szöveget, sem sima szöveget)"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      Kilépés..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-tovább-"
 
@@ -4460,344 +4487,344 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "Az üzenetben nincs eredeti szöveg!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "(B): a könyvjelzõ fájlok áttekintése/szerkesztése"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "(B): a könyvjelzõ fájl: "
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr "BE"
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr "KI"
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr "SOHA"
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr "MINDIG"
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr "hanyagol"
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr "kérdez"
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr "mindent elfogad"
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr "Mindig: KI"
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr "Csak helyi fájlokra"
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr "Mindig: BE"
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr "A számok mint nyilak"
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr "A linkek számozottak"
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr "Linkek és ûrlapok számozottak"
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr "Ûrlap mezõk számozottak"
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr "Kis/nagybetûre érzéketlen"
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr "Kis/nagybetûre érzékeny"
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr "szokásos kérdés"
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr "mindig IGEN-válasz"
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr "mindig NEM-válasz"
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 msgid "Novice"
 msgstr "Kezdõ"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 msgid "Intermediate"
 msgstr "Haladó"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr "Profi"
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr "Elsõ alkalommal"
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr "Elsõ alkalommal, megfordítva"
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr "Látogatási fa"
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr "Utolsó látogatás"
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr "Utolsó látogatás, megfordítva"
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr "enyhe (TagSoup mód)"
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr "szigorú (SortaSGML mód)"
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr "címkék"
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 msgid "as links"
 msgstr "linkek"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 msgid "show filename"
 msgstr "fájlnév mutatása"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr "SZOKÁSOS"
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr "FEJLETT"
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 msgid "Directories first"
 msgstr "Elõbb könyvtárak"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 msgid "Files first"
 msgstr "Elõbb fájlok"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr "Kevert stílus"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 msgid "By Name"
 msgstr "Név szerint"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr "Típus szerint"
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr "Méret szerint"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 msgid "By Date"
 msgstr "Dátum szerint"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr "Mód szerint"
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr "Felh. szerint"
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 msgid "By Group"
 msgstr "Csoport szerint"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr "Ne mutassa a sebességet"
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, c-format
 msgid "Show %s/sec rate"
 msgstr "Az átviteli sebesség megjelenítése (%s/s)"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr "%s/s mutatása, ETA"
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr "Lynx belsõ típusainak elfogadása"
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr "lynx.cfg fájl típusainak elfogadása"
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr "Felhasználói típusok elfogadása"
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr "Rendszer-típusok elfogadása"
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 msgid "Accept all types"
 msgstr "minden típust elfogad"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr "gzip"
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr "kibont (deflate)"
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr "compress"
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr "bzip2"
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr "mindegyik"
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Használja a(z) %s-t, hogy bejöjjön a Beállítások menü!"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr "(a '!'-el jelölt opciók nem lesznek megõrizve!)"
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Általános beállítások"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "Felhasználói mód"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Szerkesztõ"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "Keresés típusa"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr "Biztonság és magánszféra"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Sütik"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr "Érvénytelen süti"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr "SSL választás"
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "Billentyûzet bevitel"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Numerikus pad módja"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Emacs billentyûk"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "vi billentyûk"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr "Sorszerkesztõi stílus"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "Billentyûzet kiosztás"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Képernyõ és karakterkészlet "
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 msgid "Use locale-based character set"
 msgstr "Helyi karakterkészlet használata"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Képernyõ karakterkészlet"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "Feltételezett karakterkészlet"
 
@@ -4806,173 +4833,173 @@ msgstr "Feltételezett karakterkészlet"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "CJK mód"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "Nyers 8-bites mód"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X képernyõ"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "Dokumentum megjelenése"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Színek mutatása"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Kurzor mutatása"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 msgid "Underline links"
 msgstr "Rejtett hivatkozás"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "Csúszka mutatása"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "Felbukkanó ablakok használata"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "HTML hiba helyreállítás"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Képek mutatása"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Tallózás a képek között"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "A távoli gépeknek átküldött fejlécek"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Személyes email cím"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Jelszó a(z) '%s' hírszolgáltatóhoz:"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 msgid "Preferred media type"
 msgstr "Elsõdleges média-típus"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 msgid "Preferred encoding"
 msgstr "Elsõdleges kódolás"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Elsõdleges karakterkészlet"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Elsõdleges nyelv"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "Böngészõ-azonosító fejléc"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "Fájlok listázása és elérése"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "FTP-s rendezés módja"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Helyi könyvtárrendezés módja"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "Helyi könyvtárrendezés sorrendje"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Rejtett fájlok mutatása"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "Futtatható hivatkozások"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Az átviteli sebesség megjelenítése"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "Speciális fájlok és képernyõk"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "Többszörös könyvjelzõk"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "Könyvjelzõk szerkesztése, átnézése"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Ugrás a többszörös könyvjelzõi menübe"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "Könyvjelzõ fájl"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Meglátogatott lapok"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr "A fájl nézése "
 
@@ -5092,38 +5119,38 @@ msgstr "Nem tud elindulni, a CERN szabály fájlja nem áll rendelkezésre (%s)\n"
 msgid "(no name)"
 msgstr "(névtelen)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Több mint %d egymásba-ágyazást találtam a lynx.cfg-ben -- hurok alakult ki???\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Az utolsó beillesztés %s volt,\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "beszúrva innen: %s.\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "Az itt következõk a lynx.cfg fájlban olvashatók."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Kérem olvassa el az ide vonatkozó leírást ("
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr ") további információért."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "VÁLTOZÁSOK ÚJRATÖLTÉSE"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "Az elsõdleges beállítás:"
 
@@ -5392,33 +5419,33 @@ msgstr "Feltöltés:"
 msgid "Upload options:"
 msgstr "Feltöltési beállítások:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr "A letöltendõ dokumentum URL-jét a vágólapra tesszük."
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "Nem támogatott elérési protokoll ezen az URL sémán."
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "Túl sok átmeneti fájl"
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "ismeretlen szigorítás"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "Nincs szigorítás beállítva.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Szigorítási beállítás:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "Nem találom a HOME könyvtárat"
 
diff --git a/po/it.po b/po/it.po
index fd1e972a..228e347e 100644
--- a/po/it.po
+++ b/po/it.po
@@ -22,7 +22,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.4.pre2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2002-06-23 23:30 +02:00\n"
 "Last-Translator: Giuliano Artico <artico@math.unipd.it>\n"
 "Language-Team: Italian <tp@lists.linux.it>\n"
@@ -2291,7 +2291,7 @@ msgstr "(Nessun nome.)"
 msgid "(No value.)"
 msgstr "(Nessun valore)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Nessuno(a)"
 
@@ -2604,143 +2604,148 @@ msgstr "Impossibile ritentare l'autorizzazione proxy! Interpella il gestore del
 msgid "Retrying with proxy authorization information."
 msgstr "Nuovo tentativo con info di autorizzazione del proxy."
 
+#: LYMessages.c:796
+#, c-format
+msgid "SSL error:%s-Continue?"
+msgstr ""
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: messaggio troppo grande respinto."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Immetti la tua richiesta WAIS:"
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Ritento richiesta come HTTP0."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "%d byte trasferiti"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Trasferimento dati completato"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Errore alla riga %d di %s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Pagina con la lista di indirizzi"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "File dei segnalibri"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Definizione della configurazione"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Contenitore dei «cookie»"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Configurazione di tastiera"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Opzioni di gestione dei file"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Opzioni di scaricamento file"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Storia"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Pagina di riferimenti"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Informazioni su Lynx.cfg"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Elenco di segnalibri Mosaic convertito"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Menù dei parametri"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Opzioni di permesso d'accesso"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Opzioni di stampa"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Informazioni sul documento attuale"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "Messaggi recenti nella riga di stato"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Opzioni di caricamento file"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Pagina dei link consultati"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Vedere anche"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "tuo"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "per le opzioni di esecuzione"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "opzioni di compilazione"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 #, fuzzy
 msgid "color-style configuration"
 msgstr "La configurazione principale"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "ultima versione"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "versione pre-finale"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "versione di sviluppo"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2751,7 +2756,7 @@ msgstr ""
 "includere una copia di questa pagina."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2760,53 +2765,53 @@ msgstr ""
 "automaticamente allorché questa versione di Lynx è stata prodotta."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "C=crea D=scarica E=elabora F=menù M=modifica R=elimina T=contrassegna U=carica\n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Impossibile ottenere lo stato del link attuale!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "URL speciale valido solo dal menù di permesso di accesso attuale!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "Il sostegno esterno è attualmente disattivato."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "Il cambio di directory di lavoro è disattivato."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "A capo automatico DISATTIVATO"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "A capo automatico ATTIVATO"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Analisi delle tabelle annidate DISATTIVATA! Aggiornamento..."
 
 # NdT: alternate translation inspired to French version
 # msgstr "Modo 8-bit o CJK impostato a DISATTIVATO! Caricamento..."
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Analisi delle tabelle annidate ATTIVATA! Aggiornamento..."
 
 # NdT: alternate translation inspired to French version
 # msgstr "Modo 8-bit o CJK impostato ad ATTIVATO! Caricamento..."
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr "Spostamento disattivato, ma a capo automatico in funzione"
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "Trace non disponibile"
 
@@ -2817,25 +2822,25 @@ msgstr "Trace non disponibile"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "Username per '%s' a %s '%s%s':"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "Il client non sa come comporre l'info di autorizzazione del proxy per lo schema di indirizzamento"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "Il client non sa come comporre le info di autorizzazione per uno schema"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Intestaz. non valida '%s%s%s%s%s'"
 
 # WWW/Libary/Implementation/HTAABrow.c
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "Autorizzazione del proxy obbligatoria -- ritento"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Negato l'accesso senza autorizzazione -- ritento"
 
@@ -2852,7 +2857,7 @@ msgstr "Documento con contenuto POST non trovato in memoria. Ritentare?"
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Caricamento incompleto."
 
@@ -2875,7 +2880,7 @@ msgstr "**** HTAccess: stato di ritorno: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Accesso impossibile"
 
@@ -3072,15 +3077,15 @@ msgstr "Lettura del contributo news."
 msgid "Sorry, could not load requested news."
 msgstr "Spiacente, impossibile prelevare la news richiesta."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "L'indirizzo ha un numero di porta non valido."
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "La lunghezza dell'indirizzo sembra non valida"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Impossibile individuare l'host remoto %s"
@@ -3089,95 +3094,116 @@ msgstr "Impossibile individuare l'host remoto %s"
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Nome di host non valido: %s"
 
 # First %s will be FTP, HTTP or other protocol and second %s will be hostname
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Connessione %s a %s "
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "socket fallita."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "errore socket: famiglia %d indir. %s porta %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Impossibile stabilire connessione non bloccante."
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "Connessione fallita (troppi tentativi)."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "Impossibile ripristinare socket bloccante."
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "Falliti 180000 tentativi di lettura socket."
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Questo client non è predisposto per gestire gli URL HTTPS."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "Impossibile stabilire la connessione con l'host remoto."
 
 # First %s will be FTP, HTTP or other protocol and second %s will be hostname
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 #, fuzzy
 msgid "Retrying connection without TLS."
 msgstr "Connessione %s a %s "
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "Il cookie è stato eliminato!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+msgid "Can't find common name in certificate"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "Invio della richiesta HTTP"
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Errore inatteso di scrittura in rete; connessione annullata."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "Richiesta HTTP inviata; in attesa di risposta."
 
 # END of Permit FORM
 # More progress strings follow
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Errore inatteso di lettura in rete; connessione annullata."
 
@@ -3190,7 +3216,7 @@ msgstr "Errore inatteso di lettura in rete; connessione annullata."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "Ricevuta informazione di stato inattesa."
 
@@ -3200,7 +3226,7 @@ msgstr "Ricevuta informazione di stato inattesa."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "Richiesta soddisfatta. Ripristino del contenuto."
 
@@ -3210,27 +3236,27 @@ msgstr "Richiesta soddisfatta. Ripristino del contenuto."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Ricezione inattesa di stato non modificato 304"
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "Il reindirizzamento del contenuto POST richiede il consenso dell'utente."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Contenuto POST. Il reindirizzamento permanente è trattato come temporaneo.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Nuovo tentativo con info di autorizzazione d'accesso."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "Visualizzare il corpo del messaggio 401?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "Visualizzare il corpo del messaggio 407?"
 
@@ -3238,7 +3264,7 @@ msgstr "Visualizzare il corpo del messaggio 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "Risposta di stato sconosciuto ricevuta dal server!"
 
@@ -3428,142 +3454,142 @@ msgid "Host"
 msgstr "Host"
 
 # src/GridText.c
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "Memoria insufficiente, visualizzazione interrotta!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Memoria insufficiente, il trasferimento sarà interrotto!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** MEMORIA INSUFFICIENTE ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "campo o link sconosciuto"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "campo di immissione testo"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "campo di immissione password"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "casella di scelta"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "bottone radio"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "bottone Invio"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "bottone Annulla"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "menù a comparsa"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "campo nascosto di modulo"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "area di immissione testo"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "campo di immissione (range)"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "campo di immissione file"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "campo di invio testo"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "bottone di invio immagine"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "campo «keygen»"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "campo di modulo sconosciuto"
 
 # WWW/Libary/Implementation/HTFile.c
 # #, fuzzy
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "Impossibile aprire il file per il caricamento"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "Invio di %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Interruzione: struttura TextAnchorrovinata - si suggerisce di abbandonare!"
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "Accorciare le righe per adattarle all'area di visualizzazione?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "Le righe molto lunghe sono state spezzate!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "Le righe molto lunghe sono state troncate!"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "byte"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "Letti %s su %s di dati"
 
 # WWW/Library/Implementation/HTFormat.c
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "Letti %s di dati"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/sec"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, fuzzy, c-format
 msgid " (stalled for %s)"
 msgstr " (bloccato per %ld sec)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, fuzzy, c-format
 msgid ", ETA %s"
 msgstr ", mancano %ld sec"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (Premere 'z' per annullare.)"
 
@@ -3594,11 +3620,11 @@ msgstr " (Premere 'z' per annullare.)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "sì"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "no"
 
@@ -3618,7 +3644,7 @@ msgstr "no"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -3754,31 +3780,31 @@ msgstr "Interno"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "errore cookie_domain_flag_set: programma interrotto"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Inizializzazione del terminale fallita - tipo di terminale sconosciuto?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminale ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Con questo programma si deve usare un terminale vt100, 200, ecc."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "Il tipo di terminale è sconosciuto."
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Indicare un tipo di terminale:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "TIPO DI TERMINALE IMPOSTATO A"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3787,7 +3813,7 @@ msgstr ""
 "\n"
 "Un errore irreversibile si è verificato in %s Ver. %s\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4268,23 +4294,23 @@ msgstr "Questo messaggio è stato generato automaticamente da"
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Nessun Winsock trovato, spiacente."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "SI DEVE definire un'area TMP o TEMP valida! "
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "Non esiste la directory indicata"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
@@ -4292,7 +4318,7 @@ msgstr ""
 "\n"
 
 # src/LYMain.c
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4303,7 +4329,7 @@ msgstr ""
 "Insiemi di caratteri di Lynx non precisati.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4314,170 +4340,170 @@ msgstr ""
 "Edit map di Lynx non precisata.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Il file Lynx %s non è disponibile.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Attenzione:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "Lo stato dei cookie persistenti sarà cambiato solo nella prossima sessione."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx: ignorato charset=%s sconosciuto.\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, fuzzy, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s versione %s (%s)\n"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Compilato il %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "Copyright dell'Università del Kansas, del CERN e di altri collaboratori."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "Distribuito nell'ambito della licenza pubblica GNU"
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Vedere http://lynx.isc.org/ e l'aiuto in linea per ulteriori informazioni."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "USO: %s [opzioni] [file]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Le opzioni sono:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: opzione non valida: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "Errore interno: link per il mouse %d non valido"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "Un URL precisato dall'utente"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "«Enctype multipart/form-data» non ancora funzionante! Invio impossibile."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "Schermata di aiuto"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Indice sistema"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Ingresso nella pagina di avvio"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr "Non è presente un documento successivo"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "charset per questo documento precisato in modo esplicito, spiacente..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "cambio directory su:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "Un elemento del percorso non è una directory."
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "cambiamento directory fallito"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "Reanalisi del documento con le impostazioni attuali..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Errore grave: impossibile aprire il file di uscita %s\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 #, fuzzy
 msgid "Current URL is empty."
 msgstr "Directory attuale:"
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr ""
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-indice-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: impossibile accedere al file di avvio"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: file di avvio non trovato o non avente formato text/html o text/plain"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      Uscita..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-segue-"
 
@@ -4541,358 +4567,358 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "Il messaggio non ha testo originale!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "B) revisione dei file di segnalibri"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "B) File segnalibri : "
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 #, fuzzy
 msgid "Novice"
 msgstr "Nessuno(a)"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 #, fuzzy
 msgid "Intermediate"
 msgstr "Interno"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 #, fuzzy
 msgid "as links"
 msgstr "questo link"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 #, fuzzy
 msgid "show filename"
 msgstr "(cattivo nome di file)"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 #, fuzzy
 msgid "Directories first"
 msgstr "Sottodirectory:"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 #, fuzzy
 msgid "Files first"
 msgstr " per primo"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 #, fuzzy
 msgid "Mixed style"
 msgstr "Modo di elaborazione riga"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 #, fuzzy
 msgid "By Name"
 msgstr "Nome:"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 #, fuzzy
 msgid "By Size"
 msgstr "Dim. byte:"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 #, fuzzy
 msgid "By Date"
 msgstr "Data:"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 #, fuzzy
 msgid "By Group"
 msgstr "Gruppo"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, fuzzy, c-format
 msgid "Show %s/sec rate"
 msgstr "Velocità di trasferimento"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 #, fuzzy
 msgid "Accept all types"
 msgstr "Accetta modifiche"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Usare %s per richiamare il menù opzioni."
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Preferenze generali"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "Modalità d'uso"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr " Modalità di ricerca"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Cookie"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "Immissione da tastiera"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Tastierino numerico"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Tasti emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "Tasti vi"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr "Modo di elaborazione riga"
 
 # #, fuzzy
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "Tipo di tastiera"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Visualizzazione e set di caratteri (charset)"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "Charset presunto del documento"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Set di caratteri per lo schermo"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "Charset presunto del documento"
 
@@ -4901,180 +4927,180 @@ msgstr "Charset presunto del documento"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "Modo CJK (lingue asiatiche)"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "Non convertito (raw 8-bit)"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X Display"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "Aspetto del documento"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Mostrare i colori"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Mostrare il cursore"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 #, fuzzy
 msgid "Underline links"
 msgstr "Link nascosti:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "Mostrare la barra di scorrimento"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "Menù a comparsa per i campi «select»"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "Ripristino da errori HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Mostrare le immagini"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Immagini prolisse"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "Le intestazioni sono trasmesse ai server remoti"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Indirizzo E-mail personale"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Password per l'host news '%s':"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 #, fuzzy
 msgid "Preferred media type"
 msgstr "%d byte trasferiti"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Lingua preferita"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Charset preferito per i documenti"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Lingua preferita"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "Header 'User-Agent'"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "Elencazione ed accesso ai file"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "Criterio disposizione liste FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Criterio disposizione file locali"
 
 # NdT: added "manually" -GA
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "Criterio ordinamento file locali"
 
 # NdT: options menu phrase missing in po files -GA
 # msgid "(options marked with (!) will not be saved)\n"
 # msgstr "(le opzioni affiancate da (!) non saranno registrate)\n"
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Mostrare i file nascosti"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "Esecuzione link"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Velocità di trasferimento"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "File e schermate speciali"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "Segnalibri multipli"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "Revisione file segnalibri"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Andare al menù multi-bookmark"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "File dei segnalibri (Bookmark)"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Pagine consultate"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 #, fuzzy
 msgid "View the file "
 msgstr "Spedire il file tramite mail"
@@ -5195,38 +5221,38 @@ msgstr "Lynx: impossibile iniziare. File di regole CERN %s non disponibile.\n"
 msgid "(no name)"
 msgstr "(nessun nome)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Oltre %d inclusioni annidate di lynx.cfg. Forse c'è un circolo vizioso?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "L'ultima inclusione tentata era: '%s',\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "incluso da '%s'.\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "Quanto segue è tratto dal file lynx.cfg personale."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Consultare la distribuzione"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "per ulteriori commenti."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "RIACQUISIRE LE MODIFICHE"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "La configurazione principale"
 
@@ -5501,34 +5527,34 @@ msgstr "Caricare su:"
 msgid "Upload options:"
 msgstr "Opzioni di caricamento file:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "Protocollo di accesso inatteso per questo schema di URL."
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "Troppi file temporanei"
 
 # #, fuzzy
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "Restrizione ignota"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "Nessuna restrizione impostata.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Descrizione delle restrizioni:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr ""
 
diff --git a/po/ja.po b/po/ja.po
index a38655a7..4bcc6252 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.5pre9\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2003-04-19 20:40+0900\n"
 "Last-Translator: Masayuki Hatta <mhatta@po.airs.net>\n"
 "Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
@@ -2243,7 +2243,7 @@ msgstr "(̾Á°¤Ê¤·)"
 msgid "(No value.)"
 msgstr "(Ãͤʤ·)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "¤Ê¤·"
 
@@ -2550,143 +2550,148 @@ msgstr "¥×¥í¥­¥·Ç§¾ÚÉÕ¤­¤ÇºÆ»î¹Ô¤Ç¤­¤Þ¤»¤ó! ¥µ¡¼¥Ð¤Î¥¦¥§¥Ö¥Þ¥¹¥¿¤ËÏ¢Íí¤·¤Æ¤¯¤À¤µ
 msgid "Retrying with proxy authorization information."
 msgstr "¥×¥í¥­¥·Ç§¾Ú¾ðÊóÉÕ¤­¤ÇºÆ»î¹Ô¤·¤Æ¤¤¤Þ¤¹¡£"
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "SSL¥¨¥é¡¼: ¥Û¥¹¥È(%s) ¤¬ cert(%s) ¤È°ìÃפ·¤Þ¤»¤ó ³¤±¤Þ¤¹¤«?"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: ¥ê¥¿¡¼¥ó¥á¥Ã¥»¡¼¥¸¤¬Â礭¤¹¤®¤Þ¤¹¡£"
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "WAIS ¸¡º÷ʸ»úÎó¤òÆþÎÏ: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "HTTP0 ¥ê¥¯¥¨¥¹¥È¤È¤·¤ÆºÆÁ÷¿®¤·¤Æ¤¤¤Þ¤¹¡£"
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "%d ¥Ð¥¤¥ÈžÁ÷ºÑ"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "¥Ç¡¼¥¿Å¾Á÷´°Î»"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "%d ¹ÔÌÜ(%s Ãæ)¤Î½èÍý¤Ç¥¨¥é¡¼\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "¥¢¥É¥ì¥¹¥ê¥¹¥È¥Ú¡¼¥¸"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "¥³¥ó¥Ñ¥¤¥ë»þ¤ËÄêµÁ¤µ¤ì¤¿ÀßÄê"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "¥¯¥Ã¥­¡¼È¢"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "¸½ºß¤Î¥­¡¼¥Þ¥Ã¥×"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "¥Õ¥¡¥¤¥ë´ÉÍý¥ª¥×¥·¥ç¥ó"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "¥À¥¦¥ó¥í¡¼¥ÉÀè¤òÁªÂò"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "ÍúÎò¥Ú¡¼¥¸"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "¥ê¥¹¥È¥Ú¡¼¥¸"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Lynx.cfg ¤Î¾ðÊó"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "ÊÑ´¹¤µ¤ì¤¿ Mosaic ¤Î Hotlist"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "ÀßÄê¥á¥Ë¥å¡¼"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "¥Õ¥¡¥¤¥ë¥Ñ¡¼¥ß¥Ã¥·¥ç¥ó¤ÎÀßÄê"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "°õºþ¤ÎÀßÄê"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "¸½ºß¤Îʸ½ñ¤Ë¤Ä¤¤¤Æ¤Î¾ðÊó"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "ºÇ¶á¤Î¥¹¥Æ¡¼¥¿¥¹¥é¥¤¥ó¥á¥Ã¥»¡¼¥¸"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "¥¢¥Ã¥×¥í¡¼¥É¤ÎÀßÄê"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "ˬ¤ì¤¿¥ê¥ó¥¯°ìÍ÷"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "¤³¤Á¤é¤â»²¾È:"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "¤¢¤Ê¤¿¤Î"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "¥é¥ó¥¿¥¤¥à¥ª¥×¥·¥ç¥ó¸þ¤±"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "¥³¥ó¥Ñ¥¤¥ë»þ¤Î¥ª¥×¥·¥ç¥ó"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 #, fuzzy
 msgid "color-style configuration"
 msgstr "ºÇ½é¤Ë»²¾È¤µ¤ì¤ëÀßÄê¥Õ¥¡¥¤¥ë¤Ï"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "ºÇ¿·ÈÇ"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "¥×¥ì¥ê¥ê¡¼¥¹ÈÇ"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "³«È¯ÈÇ"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2697,7 +2702,7 @@ msgstr ""
 "´Þ¤á¤Æ¤¯¤À¤µ¤¤¡£"
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2706,49 +2711,49 @@ msgstr ""
 "¥³¥ó¥Ñ¥¤¥ë»þÄêµÁ¤È¤·¤Æ»È¤ï¤ì¤¿¤â¤Î¤Ç¤¹¡£"
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "  [c]ºîÀ® [d]¥À¥¦¥ó¥í¡¼¥É [e]ÊÔ½¸ [f]¥Õ¥ë¥á¥Ë¥å¡¼ [m]Êѹ¹ [r]ºï½ü [t]¥¿¥° [u]¥¢¥Ã¥×¥í¡¼¥É     \n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "¸½ºß¤Î¥ê¥ó¥¯¤Î¥¹¥Æ¡¼¥¿¥¹¤ÎÆþ¼ê¤Ë¼ºÇÔ¤·¤Þ¤·¤¿!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "ÆÃÊÌ URL ¤Ï¸½ºß¤Î¥Õ¥¡¥¤¥ëµö²Ä¥á¥Ë¥å¡¼¤«¤é¤Î¤ßÍ­¸ú¤Ç¤¹!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "³°Éô¥µ¥Ý¡¼¥È¤Ï¸½ºß̵¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£"
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "ºî¶È¥Ç¥£¥ì¥¯¥È¥ê¤ÎÊѹ¹¤Ï¸½ºß̵¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£"
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "¹Ô¥é¥Ã¥× ¥ª¥Õ!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "¹Ô¥é¥Ã¥× ¥ª¥ó!"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Æþ¤ì»Ò¥Æ¡¼¥Ö¥ë¤Î²òÀÏ ¥È¥°¥ë¥ª¥Õ! ºÆÆɤ߹þ¤ßÃæ..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Æþ¤ì»Ò¥Æ¡¼¥Ö¥ë¤Î²òÀÏ ¥È¥°¥ë¥ª¥ó! ºÆÆɤ߹þ¤ßÃæ..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr "¹Ô¥é¥Ã¥×¤¬Í­¸ú¤Ê´Ö¡¢°ÜÆ°¤Ï̵¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹"
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "ÄÉÀפϥµ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£"
 
@@ -2757,24 +2762,24 @@ msgstr "ÄÉÀפϥµ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "'%s' ¤Î¤¿¤á¤Î %s '%s%s' ¤Ë¤ª¤±¤ë¥æ¡¼¥¶Ì¾:"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "¤³¤Î¥¯¥é¥¤¥¢¥ó¥È¤Ï¤³¤Î¥¹¥­¡¼¥à¸þ¤±¤Ë¥×¥í¥­¥·Ç§¾Ú¾ðÊó¤ò¹½À®¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "¤³¤Î¥¯¥é¥¤¥¢¥ó¥È¤Ï¤³¤Î¥¹¥­¡¼¥à¸þ¤±¤Ëǧ¾Ú¾ðÊó¤ò¹½À®¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "ÉÔÀµ¤Ê¥Ø¥Ã¥À '%s%s%s%s%s' ¤Ç¤¹"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "¥×¥í¥­¥·Ç§¾Ú¤¬É¬ÍפǤ¹ -- ºÆ»î¹Ô¤·¤Æ¤¤¤Þ¤¹"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "ǧ¾Ú̵¤·¤Î¥¢¥¯¥»¥¹¤ÏµñÈݤµ¤ì¤Þ¤·¤¿ -- ºÆ»î¹Ô¤·¤Æ¤¤¤Þ¤¹"
 
@@ -2790,7 +2795,7 @@ msgstr "POST ¥³¥ó¥Æ¥ó¥Ä¤ò´Þ¤à¥É¥­¥å¥á¥ó¥È¤Ï¥­¥ã¥Ã¥·¥å¤ÎÃæ¤Ë¤¢¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£ºÆÁ
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Æɤ߹þ¤ß¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£"
 
@@ -2813,7 +2818,7 @@ msgstr "**** HTAccess: Ê֤äƤ­¤¿¥¹¥Æ¡¼¥¿¥¹¤Ï: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤»¤ó¡£"
 
@@ -3010,15 +3015,15 @@ msgstr "¥Ë¥å¡¼¥¹µ­»ö¤òÆɤ߹þ¤ßÃæ¡£"
 msgid "Sorry, could not load requested news."
 msgstr "¤¦¤¦¤à¡¢Í׵ᤵ¤ì¤¿¥Ë¥å¡¼¥¹¤òÆɤ߹þ¤á¤Þ¤»¤ó¤Ç¤·¤¿¡£"
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "¥¢¥É¥ì¥¹¤ËÉÔÀµ¤Ê¥Ý¡¼¥È¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "¥¢¥É¥ì¥¹Ä¹¤¬ÉÔÀµ¤Î¤è¤¦¤Ç¤¹"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "¥ê¥â¡¼¥È¥Û¥¹¥È %s ¤Î°ÌÃÖ¤òÆÃÄê¤Ç¤­¤Þ¤»¤ó¡£"
@@ -3027,90 +3032,111 @@ msgstr "¥ê¥â¡¼¥È¥Û¥¹¥È %s ¤Î°ÌÃÖ¤òÆÃÄê¤Ç¤­¤Þ¤»¤ó¡£"
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "%s ¤ÏÉÔÀµ¤Ê¥Û¥¹¥È̾¤Ç¤¹"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "%s ¤Ç %s ¤ËÀܳÃæ"
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "¥½¥±¥Ã¥È¤¬¼ºÇÔ¤·¤Þ¤·¤¿¡£"
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "¥½¥±¥Ã¥È¤¬¼ºÇÔ¤·¤Þ¤·¤¿: ¥Õ¥¡¥ß¥ê %d ¥¢¥É¥ì¥¹ %s ¥Ý¡¼¥È %s¡£"
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Àܳ¤òÈó¥Ö¥í¥Ã¥­¥ó¥°¤Ë¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£"
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "Àܳ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿ (ºÆ»î¹Ô¤¬Â¿¤¹¤®¤Þ¤¹)"
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "¥Ö¥í¥Ã¥­¥ó¥°¤Î¤¿¤á¤Î¥½¥±¥Ã¥È¤òÉüµì¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£"
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "180,000 ²ó»î¹Ô¤·¤Þ¤·¤¿¤¬¥½¥±¥Ã¥È¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£"
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr "¥¢¥É¥ì¥¹¤Ï¥æ¡¼¥¶Ì¾ %s ¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "¤³¤Î¥¯¥é¥¤¥¢¥ó¥È¤Ï HTTPS URL ¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£"
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "¥ê¥â¡¼¥È¥Û¥¹¥È¤ËÀܳ¤Ç¤­¤Þ¤»¤ó¡£"
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "TLS¤ò»È¤ï¤º¤ËÀܳ¤òºÆ»î¹Ô¤·¤Æ¤¤¤Þ¤¹¡£"
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "¥¯¥Ã¥­¡¼¤Ï¿©¤Ù¤é¤ì¤Æ¤·¤Þ¤¤¤Þ¤·¤¿!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+msgid "Can't find common name in certificate"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL¥¨¥é¡¼: ¥Û¥¹¥È(%s) ¤¬ cert(%s) ¤È°ìÃפ·¤Þ¤»¤ó ³¤±¤Þ¤¹¤«?"
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "¥»¥­¥å¥¢¤Ê %d ¥Ó¥Ã¥È %s (%s) HTTP Àܳ"
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "HTTP ¥ê¥¯¥¨¥¹¥È¤òÁ÷¿®Ãæ"
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "ÆÍÁ³¤Î¥Í¥Ã¥È¥ï¡¼¥¯½ñ¤­¹þ¤ß¥¨¥é¡¼: Àܳ¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£"
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP ¥ê¥¯¥¨¥¹¥È¤òÁ÷¿®¤·¤Þ¤·¤¿: ±þÅú¤òÂԤäƤ¤¤Þ¤¹"
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "ÆÍÁ³¤Î¥Í¥Ã¥È¥ï¡¼¥¯Æɤ߹þ¤ß¥¨¥é¡¼: Àܳ¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£"
 
@@ -3123,7 +3149,7 @@ msgstr "ÆÍÁ³¤Î¥Í¥Ã¥È¥ï¡¼¥¯Æɤ߹þ¤ß¥¨¥é¡¼: Àܳ¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£"
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "ͽ´ü¤·¤Ê¤¤ Informational Status ¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿¡£"
 
@@ -3133,7 +3159,7 @@ msgstr "ͽ´ü¤·¤Ê¤¤ Informational Status ¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿¡£"
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "¥ê¥¯¥¨¥¹¥È¤¬¼Â¹Ô¤µ¤ì¤Þ¤·¤¿¡£¥³¥ó¥Æ¥ó¥È¤ò¥ê¥»¥Ã¥È¤·¤Æ¤¯¤À¤µ¤¤¡£"
 
@@ -3143,27 +3169,27 @@ msgstr "¥ê¥¯¥¨¥¹¥È¤¬¼Â¹Ô¤µ¤ì¤Þ¤·¤¿¡£¥³¥ó¥Æ¥ó¥È¤ò¥ê¥»¥Ã¥È¤·¤Æ¤¯¤À¤µ¤¤¡£"
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "ͽ´ü¤»¤Ì 304 Not Modified ¥¹¥Æ¡¼¥¿¥¹¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿¡£"
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "POST ¥³¥ó¥Æ¥ó¥È¤Î¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó¤Ë¤Ï¥æ¡¼¥¶¤Î¾µÇ§¤¬É¬ÍפǤ¹¡£"
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "POST ¥³¥ó¥Æ¥ó¥È¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹¡£±Ê³Ū¤Ê¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó¤ò°ì»þŪ¤Ê¤â¤Î¤È¤·¤Æ°·¤¤¤Þ¤¹¡£\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "¥¢¥¯¥»¥¹Ç§¾Ú¾ðÊóÉÕ¤­¤ÇºÆ»î¹Ô¤·¤Æ¤¤¤Þ¤¹¡£"
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "401 ¥á¥Ã¥»¡¼¥¸ËÜÂΤò¸«¤Þ¤¹¤«?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "407 ¥á¥Ã¥»¡¼¥¸ËÜÂΤò¸«¤Þ¤¹¤«?"
 
@@ -3171,7 +3197,7 @@ msgstr "407 ¥á¥Ã¥»¡¼¥¸ËÜÂΤò¸«¤Þ¤¹¤«?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "¥µ¡¼¥Ð¤«¤é¤ÎÉÔÌÀ¤Ê¥¹¥Æ¡¼¥¿¥¹¥ê¥×¥é¥¤¤Ç¤¹!"
 
@@ -3359,139 +3385,139 @@ msgstr "¥á¥ó¥Æ¥Ê"
 msgid "Host"
 msgstr "¥Û¥¹¥È"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "¥á¥â¥ê¤ò»È¤¤¤­¤ê¤Þ¤·¤¿¡£É½¼¨¤òÃæÃǤ·¤Þ¤¹!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "¥á¥â¥ê¤ò»È¤¤¤­¤ê¤Þ¤·¤¿¡£Å¾Á÷¤òÃæÃǤ·¤Þ¤¹!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr "*** ¥á¥â¥ê¤ò»È¤¤¤­¤ê¤Þ¤·¤¿ ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "̤ÃΤΥե£¡¼¥ë¥É¤Þ¤¿¤Ï¥ê¥ó¥¯¤Ç¤¹"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "¥Æ¥­¥¹¥ÈÆþÎÏ¥Õ¥£¡¼¥ë¥É"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "¥Ñ¥¹¥ï¡¼¥ÉÆþÎÏ¥Õ¥£¡¼¥ë¥É"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "¥Á¥§¥Ã¥¯¥Ü¥Ã¥¯¥¹"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "¥é¥¸¥ª¥Ü¥¿¥ó"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "Á÷¿®¥Ü¥¿¥ó"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "¥ê¥»¥Ã¥È¥Ü¥¿¥ó"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "¥Ý¥Ã¥×¥¢¥Ã¥×¥á¥Ë¥å¡¼"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "±£¤µ¤ì¤¿¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "¥Æ¥­¥¹¥ÈÆþÎÏ¥¨¥ê¥¢"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "ÈÏ°ÏÆþÎÏ¥Õ¥£¡¼¥ë¥É"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "¥Õ¥¡¥¤¥ëÆþÎÏ¥Õ¥£¡¼¥ë¥É"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "¥Æ¥­¥¹¥ÈÁ÷¿®¥Õ¥£¡¼¥ë¥É"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "²èÁüÁ÷¿®¥Ü¥¿¥ó"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "keygen ¥Õ¥£¡¼¥ë¥É"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "̤ÃΤΥե©¡¼¥à¥Õ¥£¡¼¥ë¥É"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "¥¢¥Ã¥×¥í¡¼¥É¤¹¤ë¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó¡£"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "%s ¤òÁ÷¿®Ãæ"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "¥Ï¥ó¥°¸¡½Ð: TextAnchor ¹½Â¤ÂΤ¬²õ¤ì¤Þ¤·¤¿ - ½ªÎ»¤ò¤ª´«¤á¤·¤Þ¤¹!"
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "ɽ¼¨Îΰè¤Ë¼ý¤Þ¤ë¤è¤¦¹Ô¤òÀÞ¤êÊÖ¤·¤Þ¤¹¤«?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "Ť¹¤®¤ë¹Ô¤ÏÀÞ¤êÊÖ¤µ¤ì¤Þ¤¹!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "Ť¹¤®¤ë¹Ô¤ÏÀÚ¤êµÍ¤á¤é¤ì¤Þ¤¹!"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "¥Ð¥¤¥È"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "%s (%s Ãæ) Æɤ߹þ¤ßºÑ"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "%s Æɤ߹þ¤ßºÑ"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr "¡¢%s/ÉÃ"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr " (%s ÉÃÄä»ßÃæ)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr "¡¢ ETA %s ÉÃ"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " ([z] ¤ÇÃæ»ß)"
 
@@ -3520,11 +3546,11 @@ msgstr " ([z] ¤ÇÃæ»ß)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "yes"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "no"
 
@@ -3544,7 +3570,7 @@ msgstr "no"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -3681,31 +3707,31 @@ msgstr "ÆâÉô"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "cookie_domain_flag_set ¥¨¥é¡¼¡¢¥×¥í¥°¥é¥à¤ò½ªÎ»¤·¤Þ¤¹"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "üËö¤Î½é´ü²½¤Ë¼ºÇÔ¤·¤Þ¤·¤¿ - üËö¤Î¥¿¥¤¥×¤¬ÉÔÌÀ?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "üËö ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "¤³¤Î¥×¥í¥°¥é¥à¤Ï vt100¡¢200 ¤Ê¤É¤ÎüËö¾å¤Ç¼Â¹Ô¤·¤Æ¤¯¤À¤µ¤¤¡£"
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "¤ª»È¤¤¤ÎüËö¥¿¥¤¥×¤¬Ê¬¤«¤ê¤Þ¤»¤ó!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "üËö¥¿¥¤¥×¤òÆþÎÏ:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "ÀßÄꤵ¤ì¤ëüËö¥¿¥¤¥×¤Ï"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3714,7 +3740,7 @@ msgstr ""
 "\n"
 "Ã×̿Ū¤Ê¥¨¥é¡¼¤¬ %s ¥Ð¡¼¥¸¥ç¥ó %s ¤ÇȯÀ¸¤·¤Þ¤·¤¿\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4193,30 +4219,30 @@ msgstr "¤³¤Î¥á¥Ã¥»¡¼¥¸¤Ï°Ê²¼¤Ë¤è¤Ã¤Æ¼«Æ°Åª¤ËÀ¸À®¤µ¤ì¤Þ¤·¤¿: "
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Winsock ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¡£"
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "TMP ¤Ê¤¤¤· TEMP Îΰè¤òÀµ¤·¤¯ÄêµÁ¤·¤Ê¤±¤ì¤Ð*¤Ê¤ê¤Þ¤»¤ó*!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "¤½¤ó¤Ê¥Ç¥£¥ì¥¯¥È¥ê¤Ï¤¢¤ê¤Þ¤»¤ó"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "ÄêµÁ¥Õ¥¡¥¤¥ë %s ¤¬ÍøÍѤǤ­¤Þ¤»¤ó¡£\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4227,7 +4253,7 @@ msgstr ""
 "Lynx ¥­¥ã¥é¥¯¥¿¥»¥Ã¥È¤¬Àë¸À¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4238,170 +4264,170 @@ msgstr ""
 "Lynx ÊÔ½¸¥Þ¥Ã¥×¤¬Àë¸À¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Lynx ¥Õ¥¡¥¤¥ë %s ¤ÏÍøÍѤǤ­¤Þ¤»¤ó¡£\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Ãí°Õ: "
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "±Ê³Ū¥¯¥Ã¥­¡¼¤Î¾õÂ֤ϼ¡¤Î¥»¥Ã¥·¥ç¥ó¤Ë¤Ê¤é¤Ê¤¤¤ÈÊѹ¹¤µ¤ì¤Þ¤»¤ó¡£"
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx: ÉÔÌÀ¤Ê¥­¥ã¥é¥¯¥¿¥»¥Ã¥È %s ¤ò̵»ë¤·¤Þ¤¹¡£\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, fuzzy, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s ¥Ð¡¼¥¸¥ç¥ó %s (%s)\n"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "%s ¾å¤Ç %s %s ¤Ë¥Ó¥ë¥É¤µ¤ì¤Þ¤·¤¿¡£\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "¥«¥ó¥¶¥¹Âç³Ø¡¢CERN ¤È¤½¤Î¾¤Î¹×¸¥¼Ô¤¬Ãøºî¸¢¤òÊÝÍ­¤·¡¢"
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "GNU °ìÈ̸øÍ­»ÈÍѵöÂú·ÀÌó½ñ¤Î²¼¤ÇÇÛÉÛ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£"
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "¾Ü¤·¤¯¤Ï http://lynx.isc.org/ ¤È¥ª¥ó¥é¥¤¥ó¥Ø¥ë¥×¤ò¤´Í÷¤¯¤À¤µ¤¤¡£"
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "»È¤¤Êý: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "¥ª¥×¥·¥ç¥ó:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: ÉÔÀµ¤Ê¥ª¥×¥·¥ç¥ó¤Ç¤¹: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "ÆâÉô¥¨¥é¡¼: %d ¤ÏÉÔÀµ¤Ê¥Þ¥¦¥¹¥ê¥ó¥¯¤Ç¤¹!"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "¥æ¡¼¥¶¤Ë¤è¤Ã¤Æ»ØÄꤵ¤ì¤¿ URL"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "Enctype multipart/form-data ¤Ï¤Þ¤À¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó! Á÷¿®¤Ç¤­¤Þ¤»¤ó¡£"
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "¥Ø¥ë¥×²èÌÌ"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "¥·¥¹¥Æ¥à¥¤¥ó¥Ç¥Ã¥¯¥¹"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "¥á¥¤¥ó²èÌ̤ؤÎÆþÎÏ"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr "¼¡¤Î¥É¥­¥å¥á¥ó¥È¤¬Â¸ºß¤·¤Þ¤»¤ó"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "¤³¤Îʸ½ñ¤Î¥­¥ã¥é¥¯¥¿¥»¥Ã¥È¤ÏÌÀ¼¨Åª¤Ë»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "°Ê²¼¤Ø°ÜÆ°:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "¥Ñ¥¹¤Î°ìÉô¤¬¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "¸½ºß¤ÎÀßÄê¤Î²¼¤Çʸ½ñ¤òºÆ²ò¼áÃæ..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Ã×̿Ū¥¨¥é¡¼ - ½ÐÎÏ¥Õ¥¡¥¤¥ë %s ¤¬³«¤±¤Þ¤»¤ó\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 #, fuzzy
 msgid "Current URL is empty."
 msgstr "¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê:"
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr ""
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-¥¤¥ó¥Ç¥Ã¥¯¥¹-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: ¥¹¥¿¡¼¥È¥Õ¥¡¥¤¥ë¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤»¤ó"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: ¥¹¥¿¡¼¥È¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤é¤Ê¤¤¤«¡¢text/html ¤Ê¤¤¤· text/plain ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      ½ªÎ»¤·¤Þ¤¹..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-³¤­¤¢¤ê-"
 
@@ -4465,357 +4491,357 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "¥á¥Ã¥»¡¼¥¸¤Ë¤Ï¸µ¤Î¥Æ¥­¥¹¥È¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "[b]¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤ò±ÜÍ÷/ÊÔ½¸"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "[b]¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë"
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 #, fuzzy
 msgid "Novice"
 msgstr "¤Ê¤·"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 #, fuzzy
 msgid "Intermediate"
 msgstr "ÆâÉô"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 #, fuzzy
 msgid "as links"
 msgstr "¤³¤Î¥ê¥ó¥¯"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 #, fuzzy
 msgid "show filename"
 msgstr " (ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë̾)"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 #, fuzzy
 msgid "Directories first"
 msgstr "¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê:"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 #, fuzzy
 msgid "Files first"
 msgstr " ¤òºÇ½é¤Ëõ¤·¤Þ¤¹"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 #, fuzzy
 msgid "Mixed style"
 msgstr "¹ÔÊÔ½¸¥¹¥¿¥¤¥ë"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 #, fuzzy
 msgid "By Name"
 msgstr "̾Á°:"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 #, fuzzy
 msgid "By Size"
 msgstr "¥Ð¥¤¥È¥µ¥¤¥º:"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 #, fuzzy
 msgid "By Date"
 msgstr "Æü»þ:"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 #, fuzzy
 msgid "By Group"
 msgstr "¥°¥ë¡¼¥×"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, fuzzy, c-format
 msgid "Show %s/sec rate"
 msgstr "žÁ÷¥ì¡¼¥È¤òɽ¼¨"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 #, fuzzy
 msgid "Accept all types"
 msgstr "Êѹ¹¤òÍ­¸ú¤Ë¤¹¤ë"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "%s ¤ÇÀßÄê¥á¥Ë¥å¡¼¤òµ¯Æ°¤·¤Þ¤¹!"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr "((!) ¤¬¤Ä¤¤¤¿¥ª¥×¥·¥ç¥ó¤ÏÊݸ¤µ¤ì¤Þ¤»¤ó)"
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Á´ÈÌŪ¤ÊÀßÄê"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "¥æ¡¼¥¶¥â¡¼¥É"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "»ÈÍѤ¹¤ë¥¨¥Ç¥£¥¿"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "¸¡º÷¥¿¥¤¥×"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "¥¯¥Ã¥­¡¼"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "¥­¡¼¥Ü¡¼¥ÉÆþÎÏ"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "¥­¡¼¥Ñ¥Ã¥É¤Î¥â¡¼¥É"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Emacs É÷¥­¡¼ÇÛÎó"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "VI É÷¥­¡¼ÇÛÎó"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr "¹ÔÊÔ½¸¥¹¥¿¥¤¥ë"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "¥­¡¼¥Ü¡¼¥É¥ì¥¤¥¢¥¦¥È"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "ɽ¼¨¤È¥­¥ã¥é¥¯¥¿¥»¥Ã¥È"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "²¾Äꤹ¤ë¥­¥ã¥é¥¯¥¿¥»¥Ã¥È"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "ɽ¼¨¤¹¤ë¥­¥ã¥é¥¯¥¿¥»¥Ã¥È"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "²¾Äꤹ¤ë¥­¥ã¥é¥¯¥¿¥»¥Ã¥È"
 
@@ -4824,176 +4850,176 @@ msgstr "²¾Äꤹ¤ë¥­¥ã¥é¥¯¥¿¥»¥Ã¥È"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "CJK ¥â¡¼¥É"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "À¸ 8 ¥Ó¥Ã¥È"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X ¥Ç¥£¥¹¥×¥ì¥¤"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "ʸ½ñ¤Î³°¸«"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "¿§¤òÉÕ¤±¤ë"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "¥«¡¼¥½¥ë¤ò¸«¤»¤ë"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 #, fuzzy
 msgid "Underline links"
 msgstr "±£¤µ¤ì¤¿¥ê¥ó¥¯:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "¥¹¥¯¥í¡¼¥ë¥Ð¡¼¤òɽ¼¨"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "¥Õ¥£¡¼¥ë¥ÉÁªÂò»þ¤Ë¥Ý¥Ã¥×¥¢¥Ã¥×"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "HTML ¥¨¥é¡¼¤«¤é¤Î²óÉü"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "²èÁü¤Îɽ¼¨"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "¾éĹ¤Ê²èÁüɽ¼¨"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "¥ê¥â¡¼¥È¥µ¡¼¥Ð¤ËžÁ÷¤µ¤ì¤ë¥Ø¥Ã¥À"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "¸Ä¿Í¤Î¥á¡¼¥ë¥¢¥É¥ì¥¹"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "¥Ë¥å¡¼¥¹¥Û¥¹¥È '%s' ¤Î¥Ñ¥¹¥ï¡¼¥É:"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 #, fuzzy
 msgid "Preferred media type"
 msgstr "%d ¥Ð¥¤¥ÈžÁ÷ºÑ"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "ɽ¼¨¤·¤¿¤¤¸À¸ì"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "ɽ¼¨¤·¤¿¤¤¥­¥ã¥é¥¯¥¿¡¼¥»¥Ã¥È"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "ɽ¼¨¤·¤¿¤¤¸À¸ì"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "User-Agent ¥Ø¥Ã¥À"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "¥ê¥¹¥Èɽ¼¨¤È¥Õ¥¡¥¤¥ë¤Ø¤Î¥¢¥¯¥»¥¹"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "FTP ¥Ç¥£¥ì¥¯¥È¥ê¤Î¥½¡¼¥È´ð½à"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "¥í¡¼¥«¥ë¥Ç¥£¥ì¥¯¥È¥ê¤Î¥½¡¼¥È´ð½à"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "¥í¡¼¥«¥ë¥Ç¥£¥ì¥¯¥È¥ê¤Î¥½¡¼¥È½ç"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "¥É¥Ã¥È¥Õ¥¡¥¤¥ë¤òɽ¼¨"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "¥ê¥ó¥¯¤ò¼Â¹Ô"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "žÁ÷¥ì¡¼¥È¤òɽ¼¨"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "ÆÃÊÌ¥Õ¥¡¥¤¥ë¤È²èÌÌ"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "¥Þ¥ë¥Á¥Ö¥Ã¥¯¥Þ¡¼¥¯¤ò»È¤¦"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤Î±ÜÍ÷/ÊÔ½¸"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "¥Þ¥ë¥Á¥Ö¥Ã¥¯¥Þ¡¼¥¯¥á¥Ë¥å¡¼¤Ø"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "ˬ¤ì¤¿¥Ú¡¼¥¸"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr "¥Õ¥¡¥¤¥ë¤ò±ÜÍ÷"
 
@@ -5113,38 +5139,38 @@ msgstr "Lynx: ³«»Ï¤Ç¤­¤Þ¤»¤ó¡£CERN ¥ë¡¼¥ë¥Õ¥¡¥¤¥ë %s ¤¬ÍøÍѤǤ­¤Þ¤»¤ó\n"
 msgid "(no name)"
 msgstr "(̾Á°Ìµ¤·)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "lynx.cfg ¥¤¥ó¥¯¥ë¡¼¥É¤¬ %d ²ó°Ê¾å¤ÎÆþ¤ì»Ò¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹ -- ¤ª¤½¤é¤¯¥ë¡¼¥×¤¬¤¢¤ë¤Î¤Ç¤Ï!?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "ºÇ¸å¤Ë»î¤ß¤¿¥¤¥ó¥¯¥ë¡¼¥É¤Ï '%s' ¤Ç¡¢\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "'%s' ¤«¤é¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "°Ê²¼¤Ï¤¢¤Ê¤¿¤Î lynx.cfg ¥Õ¥¡¥¤¥ë¤«¤éÆɤ߹þ¤Þ¤ì¤¿¾ðÊó¤Ç¤¹¡£"
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "ÇÛÉÛ¤Î"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "¤Ë¤Ï¾ÜºÙ¤ÊÃí¤¬ÉÕ¤¤¤Æ¤¤¤Þ¤¹¤Î¤Ç»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£"
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "Êѹ¹¤òºÆÆɤ߹þ¤ß"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "ºÇ½é¤Ë»²¾È¤µ¤ì¤ëÀßÄê¥Õ¥¡¥¤¥ë¤Ï"
 
@@ -5418,33 +5444,33 @@ msgstr "°Ê²¼¤Ë¥¢¥Ã¥×¥í¡¼¥É:"
 msgid "Upload options:"
 msgstr "¥¢¥Ã¥×¥í¡¼¥É¥ª¥×¥·¥ç¥ó:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "¤³¤Î URL ¥¹¥­¡¼¥à¤Ç¤ÏÁÛÄꤵ¤ì¤Æ¤¤¤Ê¤¤¥¢¥¯¥»¥¹¥×¥í¥È¥³¥ë¤Ç¤¹¡£"
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "°ì»þ¥Õ¥¡¥¤¥ë¤¬Â¿¤¹¤®¤Þ¤¹"
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "ÉÔÌÀ¤ÊÀ©¸Â"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "À©¸Â¤ÏÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó¡£\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "À©¸Â¤ò°Ê²¼¤ËÀßÄê:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "HOME ¥Ç¥£¥ì¥¯¥È¥ê¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
diff --git a/po/lynx.pot b/po/lynx.pot
index d9a69233..da4fb2c9 100644
--- a/po/lynx.pot
+++ b/po/lynx.pot
@@ -1,9 +1,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: lynx 2.8.6dev.17\n"
+"Project-Id-Version: lynx 2.8.6dev.18\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2243,7 +2243,7 @@ msgstr ""
 msgid "(No value.)"
 msgstr ""
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr ""
 
@@ -2541,142 +2541,147 @@ msgstr ""
 msgid "Retrying with proxy authorization information."
 msgstr ""
 
+#: LYMessages.c:796
+#, c-format
+msgid "SSL error:%s-Continue?"
+msgstr ""
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr ""
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr ""
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr ""
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr ""
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr ""
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr ""
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr ""
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr ""
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr ""
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr ""
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr ""
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr ""
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr ""
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr ""
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr ""
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr ""
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr ""
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr ""
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr ""
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr ""
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr ""
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr ""
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr ""
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr ""
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr ""
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr ""
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr ""
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr ""
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 msgid "color-style configuration"
 msgstr ""
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr ""
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr ""
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr ""
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2684,58 +2689,58 @@ msgid ""
 msgstr ""
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
 msgstr ""
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid ""
 "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)"
 "pload     \n"
 msgstr ""
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr ""
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr ""
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr ""
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr ""
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr ""
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr ""
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr ""
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr ""
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr ""
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr ""
 
@@ -2744,27 +2749,27 @@ msgstr ""
 msgid "Username for '%s' at %s '%s%s':"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid ""
 "This client doesn't know how to compose proxy authorization information for "
 "scheme"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid ""
 "This client doesn't know how to compose authorization information for scheme"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr ""
 
@@ -2780,7 +2785,7 @@ msgstr ""
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr ""
 
@@ -2805,7 +2810,7 @@ msgstr ""
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr ""
 
@@ -2996,16 +3001,16 @@ msgstr ""
 msgid "Sorry, could not load requested news."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1580
-#: WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581
+#: WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr ""
@@ -3014,91 +3019,111 @@ msgstr ""
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595
+#: WWW/Library/Implementation/HTTCP.c:1596
 #: WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+msgid "the certificate has been revoked"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+msgid "Can't find common name in certificate"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr ""
 
@@ -3111,7 +3136,7 @@ msgstr ""
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3121,7 +3146,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3131,27 +3156,27 @@ msgstr ""
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr ""
 
@@ -3159,7 +3184,7 @@ msgstr ""
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr ""
 
@@ -3337,139 +3362,139 @@ msgstr ""
 msgid "Host"
 msgstr ""
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr ""
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr ""
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr ""
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr ""
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr ""
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr ""
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr ""
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr ""
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr ""
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr ""
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr ""
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr ""
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr ""
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr ""
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr ""
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr ""
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr ""
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr ""
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr ""
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr ""
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr ""
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr ""
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr ""
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr ""
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr ""
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr ""
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr ""
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ""
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr ""
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ""
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr ""
 
@@ -3498,11 +3523,11 @@ msgstr ""
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr ""
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr ""
 
@@ -3522,7 +3547,7 @@ msgstr ""
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -3644,38 +3669,38 @@ msgstr ""
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr ""
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr ""
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr ""
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr ""
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr ""
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr ""
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr ""
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
 "A Fatal error has occurred in %s Ver. %s\n"
 msgstr ""
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4146,27 +4171,27 @@ msgstr ""
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr ""
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr ""
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr ""
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4174,7 +4199,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4182,167 +4207,167 @@ msgid ""
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr ""
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr ""
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr ""
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, c-format
 msgid "%s Version %s (%s)"
 msgstr ""
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr ""
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid ""
 "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr ""
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr ""
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr ""
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr ""
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr ""
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr ""
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr ""
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr ""
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr ""
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr ""
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr ""
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr ""
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr ""
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr ""
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr ""
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr ""
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr ""
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr ""
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr ""
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 msgid "Current URL is empty."
 msgstr ""
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr ""
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr ""
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr ""
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr ""
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr ""
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr ""
 
@@ -4394,345 +4419,345 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr ""
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr ""
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr ""
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284
-#: src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280
+#: src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 msgid "Novice"
 msgstr ""
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 msgid "Intermediate"
 msgstr ""
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 msgid "as links"
 msgstr ""
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 msgid "show filename"
 msgstr ""
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 msgid "Directories first"
 msgstr ""
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 msgid "Files first"
 msgstr ""
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr ""
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 msgid "By Name"
 msgstr ""
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr ""
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 msgid "By Date"
 msgstr ""
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 msgid "By Group"
 msgstr ""
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, c-format
 msgid "Show %s/sec rate"
 msgstr ""
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 msgid "Accept all types"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr ""
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr ""
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr ""
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr ""
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr ""
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr ""
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr ""
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr ""
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr ""
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr ""
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr ""
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr ""
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 msgid "Use locale-based character set"
 msgstr ""
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr ""
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr ""
 
@@ -4741,172 +4766,172 @@ msgstr ""
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr ""
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr ""
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr ""
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr ""
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr ""
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr ""
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 msgid "Underline links"
 msgstr ""
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr ""
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr ""
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr ""
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr ""
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr ""
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr ""
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr ""
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 msgid "Password for anonymous ftp"
 msgstr ""
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 msgid "Preferred media type"
 msgstr ""
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 msgid "Preferred encoding"
 msgstr ""
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr ""
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr ""
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr ""
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr ""
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr ""
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr ""
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr ""
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr ""
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr ""
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr ""
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr ""
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr ""
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr ""
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr ""
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr ""
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr ""
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr ""
 
@@ -5021,38 +5046,38 @@ msgstr ""
 msgid "(no name)"
 msgstr ""
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr ""
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr ""
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr ""
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr ""
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr ""
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr ""
 
@@ -5314,33 +5339,33 @@ msgstr ""
 msgid "Upload options:"
 msgstr ""
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr ""
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr ""
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr ""
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr ""
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr ""
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr ""
 
diff --git a/po/nl.po b/po/nl.po
index 72c8a4cf..bf8972e9 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.6-dev8\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2004-11-15 08:49+0100\n"
 "Last-Translator: Luk Claes <luk.claes@ugent.be>\n"
 "Language-Team: Dutch <vertaling@vrijschrift.org>\n"
@@ -2243,7 +2243,7 @@ msgstr "(Geen naam.)"
 msgid "(No value.)"
 msgstr "(Geen waarde.)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Geen"
 
@@ -2550,142 +2550,147 @@ msgstr "Herhalen gaat niet met proxy authorisatie! Vraag beheerder van de webser
 msgid "Retrying with proxy authorization information."
 msgstr "Bezig opnieuw te proberen met proxy authorisatie informatie."
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "SSL-fout: computer (%s) != certificaat (%s). Verdergaan?"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: Terugkeer-bericht te groot."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Voer een WAIS verzoek in: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Bezig opnieuw te proberen als HTTP0 verzoek."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "%d bytes overgezet"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Gegevensoverdracht voltooid"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Fout bij behandeling van regel %d van %s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Adreslijst Pagina"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Boekenlegger bestand"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Instellingen"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Koekjes Trommel"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Huidige Toetsenbord Mapping"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Bestandsbeheer Opties"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Download Opties"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Historie Pagina"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Lijst Pagina"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Lynx.cfg Informatie"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Geconverteerde Mosaic Hotlist"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Opties Menu"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Bestands Permissie Opties"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Afdruk Opties"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Informatie over het huidige document"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "De meest recente berichten in de statusregel"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Upload Opties"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Bezochte Links Pagina"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Zie ook"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "uw"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "voor uitvoer opties"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "compile opties"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 msgid "color-style configuration"
 msgstr "instelling kleurstijl"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "laatste versie"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "ontwikkelversie"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "ontwikkelversie"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2696,7 +2701,7 @@ msgstr ""
 "het rapporteren van een bug."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2706,49 +2711,49 @@ msgstr ""
 "werd gemaakt."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "C)reëer D)ownload E)dit F)-volledig menu M)-wijzig R)-wis T)-vink U)pload\n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Kan status van de huidige link niet verkrijgen!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "Speciale URL alleen geldig vanuit huidige Bestands Permissie menu!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "Externe ondersteuning is momenteel uitgezet."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "De werkmap wijzigen is momenteel uitgeschakeld."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "Regelvouwen UIT!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "Regelvouwen AAN!"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Ontleden geneste tabellen UIT gezet!  Bezig met herladen..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Ontleden geneste tabellen AAN gezet!  Bezig met herladen..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr "Gebruik van shift is uitgeschakeld als regelvouwen in gebruik is."
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "Traceren wordt niet ondersteund."
 
@@ -2757,24 +2762,24 @@ msgstr "Traceren wordt niet ondersteund."
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "Gebruikersnaam voor '%s' op %s '%s%s':"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "Dit programma weet niet hoe proxy authorisatie informatie te maken voor schema"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "Dit programma weet niet hoe authorisatie informatie te maken voor schema"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Foutieve kop '%s%s%s%s%s'"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "Proxy authorisatie vereisd -- ik probeer op nieuw"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Toegang zonder authorisatie geweigerd -- ik probeer op nieuw"
 
@@ -2790,7 +2795,7 @@ msgstr "Document met POST inhoud niet gevonden in cache.  Nog eens verzenden?"
 msgid "Loading failed, use a previous copy."
 msgstr "Het laden is mislukt, gebruik een vroegere kopie."
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Laden niet voltooid."
 
@@ -2813,7 +2818,7 @@ msgstr "**** HTAccess: Geretourneerde status was: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Kan geen toegang krijgen"
 
@@ -3009,15 +3014,15 @@ msgstr "Bezig met lezen van nieuws-artikel."
 msgid "Sorry, could not load requested news."
 msgstr "Sorry, kan het opgevraagde nieuws niet laden."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "Adres heeft ongeldige poort"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "Adres-lengte ziet er verkeerd uit"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Niet in staat om computer %s te vinden."
@@ -3026,90 +3031,112 @@ msgstr "Niet in staat om computer %s te vinden."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Ongeldige computernaam %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "%s verbinding met %s wordt gemaakt."
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "socket mislukt."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "socket is mislukt: familie %d adres %s poort %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Het is mislukt de verbinding niet-blokkerend maken."
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "Verbinden mislukt (te vaak opnieuw geprobeerd)."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "Kon socket niet naar blokkerende modus herstellen."
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "Lezen uit socket mislukt na 180,000 (!) pogingen."
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr "Adres bevat een gebruikersnaam: %s"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Dit programma ondersteunt geen HTTPS URL's."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "Niet in staat om met de andere computer te verbinden."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "Verbinding wordt opnieuw geprobeerd zonder TLS."
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "Dit koekje is opgegeten!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+#, fuzzy
+msgid "Can't find common name in certificate"
 msgstr "SSL-fout: kan gemeenschappelijke naam niet vinden in certificaat. Verdergaan?"
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL-fout: computer (%s) != certificaat (%s). Verdergaan?"
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Veilige %d-bit %s (%s) HTTP-verbinding"
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "Bezig met zenden van HTTP verzoek."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Onverwachte fout bij schrijven naar netwerk: verbinding verbroken."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP verzoek verzonden; wacht op antwoord."
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Onverwachte fout bij lezen uit netwerk; verbinding verbroken."
 
@@ -3122,7 +3149,7 @@ msgstr "Onverwachte fout bij lezen uit netwerk; verbinding verbroken."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "Onverwachte informatieve status ontvangen."
 
@@ -3132,7 +3159,7 @@ msgstr "Onverwachte informatieve status ontvangen."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "Verzoek volbracht.  Herstel inhoud."
 
@@ -3142,27 +3169,27 @@ msgstr "Verzoek volbracht.  Herstel inhoud."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Kreeg een onverwachte 304 Niet Gewijzigd statusmelding."
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "Doorverwijzing van POST inhoud vereist toestemming van de gebruiker."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Heb POST inhoud.  Permanente doorverwijzing wordt behandeld als een tijdelijke.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Bezig opnieuw te proberen met informatie over toegangs-authorisatie."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "Inhoud van het 401 bericht laten zien?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "Inhoud van het 407 bericht laten zien?"
 
@@ -3170,7 +3197,7 @@ msgstr "Inhoud van het 407 bericht laten zien?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "Onbekend status-antwoord van server!"
 
@@ -3358,139 +3385,139 @@ msgstr "Beheerder"
 msgid "Host"
 msgstr "Host"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "Geen geheugen meer beschikbar, beeldweergave onderbroken!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Geen geheugen meer beschikbaar, overdracht zal worden afgebroken!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** GEHEUGEN VERMOEID ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "onbekend veld of link"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "tekst invoerveld"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "wachtwoord invoerveld"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "aanvinkvakje"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "drukknop"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "verzendknop"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "herstelknop"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "popup menu"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "verborgen formulierveld"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "tekst invoergebied"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "bereik invoerveld"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "bestandsnaam invoerveld"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "tekst-verzendveld"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "afbeelding-verzendknop"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "sleutelaanmaak veld"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "onbekend formulier veld"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "Kan bestand niet openen voor upload"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "Bezig met verzenden van %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Ophanging Gedetecteerd: TextAnchor-struct is corrupt - stel voor te onderbreken!"
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "Regels omvouwen zodat alles zichtbaar is?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "Erg lange regels zijn omgevouwen!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "Erg lange regels zijn afgekapt!"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "bytes"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "%s van %s aan gegevens gelezen"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "%s aan gegevens gelezen"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/s"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr " (gestopt voor %s)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ", ETA %s"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (Druk op 'z' om te stoppen)"
 
@@ -3519,11 +3546,11 @@ msgstr " (Druk op 'z' om te stoppen)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "ja"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "nee"
 
@@ -3543,7 +3570,7 @@ msgstr "nee"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr "Y/N/A/V"
 
@@ -3681,31 +3708,31 @@ msgstr "Intern"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "cookie_domain_flag_set fout, programma wordt afgebroken"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Terminal initialisatie mislukt - onbekend terminal type?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminal ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "U mout een vt100, 200, enz. terminal gebruiken met dit programma."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "Uw terminal type is onbekend!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Voer een terminal type in:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "TERMINAL TYPE IS GEZET OP"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3714,7 +3741,7 @@ msgstr ""
 "\n"
 "Een fatale fout is opgetreden in %s Ver. %s\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4193,30 +4220,30 @@ msgstr "Dit bericht is automatisch gegenereerd door"
 msgid "No system mailer configured"
 msgstr "Geen systeemmailer geconfigureerd"
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Geen Winsock gevonden, sorry."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "U MOET een geldig TMP of TEMP gebied opgeven!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "Geen dergelijke map"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Configuratiebestand %s is niet beschikbaar.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4227,7 +4254,7 @@ msgstr ""
 "Lynx karaktersets zijn niet opgegeven.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4238,169 +4265,169 @@ msgstr ""
 "Lynx edit-kaart niet opgegeven.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Lynx bestand %s is niet beschikbaar.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Let op:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "Voortbestaande stand van koekjes wordt pas in volgende sessie gewijzigd."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx: ik negeer onbekende karakterset=%s\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s Versie %s (%s)"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Gebouwd op %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "Copyrights in handen van `the University of Kansas', CERN, en andere medewerkers."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "Gedistribueerd onder de GNU General Public License."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Zie http://lynx.isc.org/ en de online help voor meer informatie."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "GEBRUIK: %s [opties] [bestand]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Opties zijn:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: Ongeldige Optie: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "Interne fout: Ongeldige muis link %d!"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "Een door de gebruiker opgegeven URL"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "Enctype meerdelig/form-data nog niet ondersteund!  Kan niet verzenden."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "Help Scherm"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Systeem Index"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Ingang naar begin scherm"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr "Geen volgend document aanwezig"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "de tekenverzameling voor dit document is expliciet opgegeven, sorry..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "cd naar:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "Een component van het pad is geen map"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "Map wijzigen is mislukt"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "Document wordt opnieuw ontleed met huidige instellingen..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Fatale fout - kan uitvoerbestand %s niet openen\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr "TABLE centreren ingeschakeld."
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr "TABLE centreren uitgeschakeld."
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 msgid "Current URL is empty."
 msgstr "Huidige URL is leeg."
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr "Kopiëren naar klembord is mislukt."
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr "Document URL op klembord geplaatst."
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr "Link URL op klembord geplaatst."
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr "Geen URL op het klembord."
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-index-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: Geen toegang tot startbestand"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: Beginbestand kan niet gevonden worden of is geen tekst/html of tekst/plain"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      Bezig met stoppen..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-meer-"
 
@@ -4464,344 +4491,344 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "Bericht heeft geen oorspronkelijke tekst!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "herzien/wijzig B)ladwijzer bestanden"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "B)ladwijzer bestand: "
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr "AAN"
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr "UIT"
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr "NOOIT"
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr "ALTIJD"
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr "negeren"
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr "vraag gebruiker"
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr "alles aanvaarden"
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr "ALTIJD UIT"
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr "ALLEEN VOOR LOKALE BESTANDEN"
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr "ALTIJD AAN"
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr "Nummers staan voor pijlen"
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr "Links zijn genummerd"
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr "Links en formuliervelden zijn genummerd"
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr "Velden in formulieren zijn genummerd"
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr "Hoofdletterongevoelig"
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr "Hoofdlettergevoelig"
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr "prompt normaal"
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr "ja-antwoord afdwingen"
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr "nee-antwoord afdwingen"
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 msgid "Novice"
 msgstr "Beginner"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 msgid "Intermediate"
 msgstr "Gevorderde"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr "Specialist"
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr "Op het eerste bezoek"
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr "Op Eerste Bezoek Omgekeerd"
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr "Als bezoekboomstructuur"
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr "Op het laatste bezoek"
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr "Op Laatste Bezoek Omgekeerd"
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr "versoepeld (TagSoup-modus)"
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr "strict (SortaSGML-modus)"
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr "als labels"
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 msgid "as links"
 msgstr "als links"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 msgid "show filename"
 msgstr "toon bestandsnaam"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr "STANDAARD"
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr "GEAVANCEERD"
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 msgid "Directories first"
 msgstr "Mappen eerst"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 msgid "Files first"
 msgstr "Bestanden eerst"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr "Gemengde stijl"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 msgid "By Name"
 msgstr "Op Naam"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr "Op Type"
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr "Op Grootte"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 msgid "By Date"
 msgstr "Op Datum"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr "Op Modus"
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr "Op Gebruiker"
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 msgid "By Group"
 msgstr "Op Groep"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr "Verhouding niet tonen"
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, c-format
 msgid "Show %s/sec rate"
 msgstr "Toon verhouding %s/sec"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr "Toon verhouding %s/sec, ETA"
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr "Aanvaard interne types van lynx"
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr "Aanvaard ook types van lynx.cfg"
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr "Aanvaard ook types van gebruiker"
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr "Aanvaard ook systeemtypes"
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 msgid "Accept all types"
 msgstr "Aanvaard alle types"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr "gzip"
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr "deflatie"
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr "compress"
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr "bzip2"
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr "Allemaal"
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Gebruik %s om naar het Opties-menu te gaan!"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr "(opties gemerkt met (!) zullen niet worden bewaard)"
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Algemene voorkeuren"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "Gebruiker-modus"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "Zoekmethode"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr "Veiligheid en Privacy"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Koekjes"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr "Ongeldige Koekjesprompt"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr "SSL-prompt"
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "Toetsenbordinvoer"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Gedrag van numeriek eiland"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Emacs toetsen"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "VI toetsen"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr "Regelbewerkingsstijl"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "Toetsenbordindeling"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Weergave en Karakterset"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 msgid "Use locale-based character set"
 msgstr "Gebruik op locale-gebaseerde karakterset"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Karakterset op beeldscherm"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "Veronderstelde karakterset"
 
@@ -4810,173 +4837,173 @@ msgstr "Veronderstelde karakterset"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "CJK modus"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "Kale 8-bit"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X Display"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "Uitzicht Document"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Toon kleur"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Toon cursor"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 msgid "Underline links"
 msgstr "Onderlijn links"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "Toon schuifbalk"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "Menuutjes voor keuzevelden"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "HTML foutcorrectie"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Afbeeldingen laten zien als"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Naam van afbeeldingen vermelden"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "Headers Overgedragen naar andere Servers"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Persoonlijk e-mail adres"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Wachtwoord voor nieuws host '%s':"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 msgid "Preferred media type"
 msgstr "Geprefereerd mediatype"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 msgid "Preferred encoding"
 msgstr "Geprefereerde codering"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Voorkeur voor karakterset"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Voorkeur voor taal van document"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "User-Agent header"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "Lijsten van en Toegang tot Bestanden"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "sorteercriteria voor FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Sorteercriteria lokale mappen"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "Lokale mappensorteervolgorde"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Toon .-bestanden"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "verwijzingen die programma's starten"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Toon overdrachtverhouding"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "Speciale Bestanden en Schermen"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "Meervoudige boekenleggers"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "Bekijk/wijzig Boekenlegger bestanden"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Ga naar multi-boekenlegger menu"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "Boekenlegger bestand"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Bezochte Pagina's"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr "Bestand bekijken"
 
@@ -5096,38 +5123,38 @@ msgstr "Lynx: kan niet starten, CERN reglement bestand %s is niet beschikbaar\n"
 msgid "(no name)"
 msgstr "(naamloos)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Meer dan %d geneste lynx.cfg insluitingen -- misschien een lus?!?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "De laatste insluiting die geprobeerd is, was '%s',\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "ingevoegd vanuit '%s'.\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "Het volgende wordt gelezen uit uw lynx.cfg bestand."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Lees a.u.b. de meegeleverde versie"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "voor meer opmerkingen."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "HERLAAD DE VERANDERINGEN"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "Uw primaire configuratie"
 
@@ -5396,33 +5423,33 @@ msgstr "Zenden naar:"
 msgid "Upload options:"
 msgstr "Zend opties:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr "Document afhalings-URL op klembord geplaatst."
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "Onverwacht toegangsprotocol voor dit URL methode"
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "Teveel tijdelijke bestanden"
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "Onbekende beperking"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "Er zijn geen beperkingen gesteld.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Gestelde beperkingen:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "Kan HOME-map niet vinden"
 
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 44e1266a..061ec834 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 1999-07-30 09:47-03:00\n"
 "Last-Translator: Ricardo Soares Guimarães <ricardo@conectiva.com.br>\n"
 "Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
@@ -2242,7 +2242,7 @@ msgstr "(Sem nome.)"
 msgid "(No value.)"
 msgstr "(Sem valor.)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Vazio"
 
@@ -2549,143 +2549,148 @@ msgstr "Impossível repetir sem uma autorização de proxy. Contate o WebMaster."
 msgid "Retrying with proxy authorization information."
 msgstr "Repetindo com informações de autorização para o proxy."
 
+#: LYMessages.c:796
+#, c-format
+msgid "SSL error:%s-Continue?"
+msgstr ""
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: Mensagem de retorno muito grande."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Entre com a requisição de WAIS: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Repetindo com requisição HTTPO."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "Transferidos %d bytes."
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Transferência completada"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Erro processando linha %d de %s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Pagina de endereços"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Arquivo do Livro de Marcações"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Definições de configuração"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Cookie Jar"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Mapa de teclado corrente"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Opções de gerenciamento de arquivos"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Opções de cópia"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Página de histórico"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Listas"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Informações do Lynx.cfg"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Livro de amrcações convertido do Mosaic"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Menu de Opções"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Opções de permissão de arquivos"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Opções de imporessão"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Informações sobre este documento"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "Sua linha de mensagens de estado atual"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Opções de Envio"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Página de ligações visitadas"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Veja mais"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "seu"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "para opções de execução"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "Opções de tempo de compilação"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 #, fuzzy
 msgid "color-style configuration"
 msgstr "Sua configuração inicial"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "ultimo apresentado"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "versão em desenvolvimento"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "versão em desenvolvimento"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2696,7 +2701,7 @@ msgstr ""
 "cópia desta página."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2705,53 +2710,53 @@ msgstr ""
 "compilação quando esta cópia do Lynx foi criada."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "C) Criar D) Copiar E) Editar F) Menu inteiro M) Alterar R) Remover T) Tag U) Enviar arquivo \n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Falha obtendo o estado atual desta ligação!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "Acesso a URLs especiais só válidas pelo menu de permissões de arquivos."
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "Suporte externo está desabilitado."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 #, fuzzy
 msgid "Changing working-directory is currently disabled."
 msgstr "Chamadas estão atualmente desabilitadas."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 #, fuzzy
 msgid "Linewrap OFF!"
 msgstr "Traçador de rotas desligado!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr ""
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 #, fuzzy
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Modo Raw 8-bit ou CJK estão desativados. Atualizando..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 #, fuzzy
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Modo Raw 8-bit ou CJK estão ativados. Atualizando..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr ""
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 #, fuzzy
 msgid "Trace not supported"
 msgstr "O terminal não suporta cores."
@@ -2761,24 +2766,24 @@ msgstr "O terminal não suporta cores."
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "Usuário de '%s' em %s '%s%s':"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "Este programa não está preparado para compor autorização proxy neste esquema."
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "Este programa não está preparado para compor autorizações neste esquema."
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Cabeçalho inválido '%s%s%s%s%s'"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "Autorização de proxy requerida -- repetindo"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Acesso sem autorização não permitido -- repetindo"
 
@@ -2794,7 +2799,7 @@ msgstr "Documento com ação de postagem não encontrado no cache. Reenviar?"
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Leitura incompleta"
 
@@ -2817,7 +2822,7 @@ msgstr "HTAccess: Retorno de estado foi: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Não foi possível acessar"
 
@@ -3014,15 +3019,15 @@ msgstr "Lendo objetos de NEWS."
 msgid "Sorry, could not load requested news."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "Comprimento do endereço parece estar errado"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "Comprimento do endereço parece estar errado"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Imposs;ivel localizar servidor remoto %s."
@@ -3031,91 +3036,112 @@ msgstr "Imposs;ivel localizar servidor remoto %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Servidor inválido %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Conectando com %s em %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "Falha na conecção do socket."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Não foi possível criar conecção."
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "Conecção falhou apos 180,000 tentativas."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "Impossível restaurar socket para blocagem."
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "Leitura do socket falhou após 180,000 tentativas."
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Este programa não suporta URLs com HTTPS"
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "Impossível conectar ao servidor remoto."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 #, fuzzy
 msgid "Retrying connection without TLS."
 msgstr "Conectando com %s em %s."
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "O cookie foi destruido!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+msgid "Can't find common name in certificate"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "Enviando requisição HTTP."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Erro inesperado de gravação na rede; conecção abortada."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "Enviada requisição HTTP; aguardando resposta."
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Erro inesperado de leitura na rede; conecção abortada."
 
@@ -3128,7 +3154,7 @@ msgstr "Erro inesperado de leitura na rede; conecção abortada."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "Recebido informação de estado não solicitada."
 
@@ -3138,7 +3164,7 @@ msgstr "Recebido informação de estado não solicitada."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "Estouro de requisição. Limpando pedido."
 
@@ -3148,27 +3174,27 @@ msgstr "Estouro de requisição. Limpando pedido."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Recebida resposta de valor 304."
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "Redirecionamento de postagem requer autorização do usuário."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Há uma ação de postagem.Tratando redirecionamento permanente como temporário.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Repetindo com informações de autorização de acesso."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "Mostra o corpo da mensagem 401?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "Mostra o corpo da mensagem 407?"
 
@@ -3176,7 +3202,7 @@ msgstr "Mostra o corpo da mensagem 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "Resposta desconhecida de estado do servidor!"
 
@@ -3364,140 +3390,140 @@ msgstr "Mantenedor"
 msgid "Host"
 msgstr "Servidor"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "Memória exaurida, apresentação interrompida!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Memória exaurida, srá interrompida a transferência!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr "*** MEMÓRIA EXAURIDA ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "Campo ou ligacão desconhecidos."
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "Campo de entrada de texto"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "Campo de entrada de senha"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "Caixa de checagem"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "Botão de rádio"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "Botão de envio"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "Botão de limpar"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "Menu de pop-up"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "Campo de formulário escondido"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "Área de entrada de texto"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "Faixa de entrada de texto"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "Campo de entrada de arquivo"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "Campo de envio de texto"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "Botão de imagem de envio de formulário"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "Campo de 'chave'"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "Campo desconhecido"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 #, fuzzy
 msgid "Can't open file for uploading"
 msgstr "Impossóvel abrir arquivo para descompressão!"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "Enviando %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr ""
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr ""
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr ""
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "bytes"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "Lido %s de %s dos dados."
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "Lido %s dos dados"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/sec."
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr ""
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, fuzzy, c-format
 msgid ", ETA %s"
 msgstr ", ETA %ld sec."
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (Pressione 'z' para abortar)"
 
@@ -3526,11 +3552,11 @@ msgstr " (Pressione 'z' para abortar)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "sim"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "não"
 
@@ -3550,7 +3576,7 @@ msgstr "não"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -3684,31 +3710,31 @@ msgstr "(interno)"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr ""
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Inicialização do terminal falhou - Terminal de tipo desconhecido?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminal ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Você deve usar um terminal vt100, 200, etc... com este programa."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "O tipo do seu terminal é desconhecido!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Entre com o tipo do terminal:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "TERMINAL ESTÁ CONFIGURADO PARA"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3717,7 +3743,7 @@ msgstr ""
 "\n"
 "Um erro fatal ocorreu em %s Ver. %s\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4197,30 +4223,30 @@ msgstr "Esta mensagem foi gerada automaticamente por"
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Não foi encontrado o Winsock, desculpe."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "Você deve definir uma área TMP ou TEMP válida!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr " diretório"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Arquivo %s de configuração não está disponível.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4231,7 +4257,7 @@ msgstr ""
 "Não foi declarada uma coleção de caracteres Lynx.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4242,170 +4268,170 @@ msgstr ""
 "Editor de mapas Lynx não foi declarado.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Arquivo Lynx %s não está disponível.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr ""
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "O estado dos cookies permanentes será alterado na próxima seção."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr ""
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, fuzzy, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s Versão %s (%s)\n"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Criado em %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "Copyrights mantidos pela University of Kansas, CERN, e outros colaboradores."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "Distribuido pela GNU General Public License."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Veja http://lynx.isc.org/ e o help on-line para mais informações."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "USO: %s [opções] [arquivo]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Opções são:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: Opção inválida: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr ""
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "Uma URL especificada pelo usuário"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "multipart/form-data não é suportado ainda! Impossível enviar."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "Tela de Ajuda"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Indexador de sistema"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Entrada na tela principal"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr ""
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "O mapa de caracteres deve ser explicito no documento, desculpe..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr " para "
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr ""
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "Impossível acessar diretório."
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "Reinterpretando documento pelas opções atuais..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Erro fatal - não foi possível abrir arquivo %s\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 #, fuzzy
 msgid "Current URL is empty."
 msgstr "Diretório corrente:"
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr ""
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr " index"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: Não foi possível acessar o arquivo principal"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: Arquivo inicial não pode ser encontrado ou não é texto/HTML"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      Saindo..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr ""
 
@@ -4469,356 +4495,356 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "Mensagem não tem texto original!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "rever/editar B) Livro de Marcações"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "B) Livro de Marcações:"
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 #, fuzzy
 msgid "Novice"
 msgstr "Vazio"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 #, fuzzy
 msgid "Intermediate"
 msgstr "(interno)"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 #, fuzzy
 msgid "as links"
 msgstr "esta ligação"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 #, fuzzy
 msgid "show filename"
 msgstr " (Nome incorreto de arquivo)"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 #, fuzzy
 msgid "Directories first"
 msgstr "Subdiretórios:"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 #, fuzzy
 msgid "Files first"
 msgstr " primeiro."
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr ""
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 #, fuzzy
 msgid "By Name"
 msgstr "Nome:"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 #, fuzzy
 msgid "By Size"
 msgstr "Tamanho em bytes:"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 #, fuzzy
 msgid "By Date"
 msgstr "Data:"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 #, fuzzy
 msgid "By Group"
 msgstr "Grupo"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, fuzzy, c-format
 msgid "Show %s/sec rate"
 msgstr "Transferência completada"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 #, fuzzy
 msgid "Accept all types"
 msgstr "Aceitar mudanças"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr ""
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Preferências pessoais"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "Modo usuário"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr ""
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Cookies"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr ""
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Modo Keypad"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Teclas Emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "Teclas VI"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr ""
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Mostra mapa de caracteres"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "Assumindo mapa de caracteres do documento"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Mostra mapa de caracteres"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "Assumindo mapa de caracteres do documento"
 
@@ -4827,178 +4853,178 @@ msgstr "Assumindo mapa de caracteres do documento"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "Modo CJK"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "Raw 8-bit"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "Visual X"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr ""
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Mostra cor"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Mostra cursor"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 #, fuzzy
 msgid "Underline links"
 msgstr "Ligações escondidas:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 #, fuzzy
 msgid "Show scrollbar"
 msgstr "Mostra cor"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "Pop-ups para os campos selecionados"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "Erro recuperando HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Mostra imagens"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Imagens explicitadas"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "Cabeçalhos tranferidos ao servidor remoto"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Endereço pessoal de email"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Senha para o servidor NEWS '%s':"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 #, fuzzy
 msgid "Preferred media type"
 msgstr "Transferidos %d bytes."
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Preferência de linguagem do documento."
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Preferências de mapa de caracteres do documento"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Preferência de linguagem do documento."
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "Cabeçalho de Agente de Usuário"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr ""
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "Critérios de organização do FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Critérios de organizações dos diretórios locais"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 #, fuzzy
 msgid "Local directory sort order"
 msgstr "Critérios de organizações dos diretórios locais"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Monstre arquivos de pontos"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "Ligações de execução"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Transferência completada"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr ""
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "Multiplos Livros de Marcações"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "Rever/editar arquivos de Livro de Marcações"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Ir para menu de multiplos livros de marcações"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "Arquivo de Livro de marcações"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Página de ligações visitadas"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 #, fuzzy
 msgid "View the file "
 msgstr "Enviar arquivo por email"
@@ -5119,38 +5145,38 @@ msgstr "Lynx: Impossível iniciar,CERN arquivo de regulamento %s não está disponí
 msgid "(no name)"
 msgstr "(sem nome)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Mais de %d aninhados nos arquivos incluídos do lynx.cfg -- talvez seja um loop???\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Ultimo arquivo incluso chamado foi '%s',\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "incluído a partir de '%s'\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "O seguinte foi lido em seu arquivo lynx.cfg."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Por favor veja a distribuição"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "para mais comentários."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "RELER AS ALTERAÇÕES"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "Sua configuração inicial"
 
@@ -5424,34 +5450,34 @@ msgstr "Enviar para:"
 msgid "Upload options:"
 msgstr "Opções de envio de arquivos:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr ""
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr ""
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 #, fuzzy
 msgid "unknown restriction"
 msgstr "Campo ou ligacão desconhecidos."
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr ""
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Descrição:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr ""
 
diff --git a/po/ru.po b/po/ru.po
index b73f6534..7742e52e 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.5pre15\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2003-06-03 17:40+0400\n"
 "Last-Translator: Dmitry S. Sivachenko <mitya@cavia.pp.ru>\n"
 "Language-Team: Russian <ru@li.org>\n"
@@ -2244,7 +2244,7 @@ msgstr "(îÅÔ ÉÍÅÎÉ.)"
 msgid "(No value.)"
 msgstr "(îÅÔ ÚÎÁÞÅÎÉÑ.)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "îÅÔ"
 
@@ -2551,143 +2551,148 @@ msgstr "îÅ ÕÄÁÅÔÓÑ ÐÏ×ÔÏÒÉÔØ ÐÒÏ×ÅÒËÕ ÐÏÌÎÏÍÏÞÉÊ ÞÅÒÅÚ ÐÒÏËÓÉ! ó×ÑÖÉÔÅÓØ Ó ×ÅÂÍÁ
 msgid "Retrying with proxy authorization information."
 msgstr "ðÏ×ÔÏÒ Ó ÉÎÆÏÒÍÁÃÉÅÊ ÐÒÏ×ÅÒËÉ ÐÏÌÎÏÍÏÞÉÊ ÄÌÑ ÐÒÏËÓÉ."
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "ïÛÉÂËÁ SSL:host(%s)!=cert(%s)-ðÒÏÄÏÌÖÉÔØ?"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: ÷ÏÚ×ÒÁÝÅÎÎÏÅ ÓÏÏÂÝÅÎÉÅ ÓÌÉÛËÏÍ ×ÅÌÉËÏ."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "÷×ÅÄÉÔÅ ÚÁÐÒÏÓ WAIS: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "ðÏ×ÔÏÒ ËÁË ÚÁÐÒÏÓ HTTP0."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "ðÅÒÅÄÁÎÏ %d ÂÁÊÔ"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "ðÅÒÅÄÁÞÁ ÄÁÎÎÙÈ ÚÁ×ÅÒÛÅÎÁ"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "ïÛÉÂËÁ ÐÒÉ ÏÂÒÁÂÏÔËÅ ÓÔÒÏËÉ %d ÉÚ %s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "óÔÒÁÎÉÃÁ ÓÐÉÓËÁ ÁÄÒÅÓÏ×"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "æÁÊÌ ÚÁËÌÁÄÏË"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "ïÐÒÅÄÅÌÅÎÉÑ ËÏÎÆÉÇÕÒÁÃÉÉ"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "óÐÉÓÏË cookie"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "ôÅËÕÝÅÅ ÏÔÏÂÒÁÖÅÎÉÅ ËÌÁ×ÉÛ"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "ïÐÃÉÉ ÒÁÂÏÔÙ Ó ÆÁÊÌÁÍÉ"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "ïÐÃÉÉ ÓËÁÞÉ×ÁÎÉÑ"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "óÔÒÁÎÉÃÁ ÉÓÔÏÒÉÉ"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "óÔÒÁÎÉÃÁ ÓÐÉÓËÁ"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "éÎÆÏÒÍÁÃÉÑ lynx.cfg"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "ðÒÅÏÂÒÁÚÏ×ÁÎÎÙÅ ÚÁËÌÁÄËÉ Mosaic"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "íÅÎÀ ïÐÃÉÊ"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "ïÐÃÉÉ ÐÒÁ× ÄÏÓÔÕÐÁ Ë ÆÁÊÌÁÍ"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "ïÐÃÉÉ ÐÅÞÁÔÉ"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "éÎÆÏÒÍÁÃÉÑ Ï ÔÅËÕÝÅÍ ÄÏËÕÍÅÎÔÅ"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "÷ÁÛÉ ÐÏÓÌÅÄÎÉÅ ÓÏÏÂÝÅÎÉÑ ÓÔÒÏËÉ ÓÔÁÔÕÓÁ"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "ïÐÃÉÉ ÚÁÇÒÕÚËÉ"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "óÔÒÁÎÉÃÁ ÐÏÓÅÝÅÎÎÙÈ ÓÓÙÌÏË"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "óÍ. ÔÁËÖÅ"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "×ÁÛ"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "ÄÌÑ ÏÐÃÉÊ ×ÒÅÍÅÎÉ ×ÙÐÏÌÎÅÎÉÑ"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "ÏÐÃÉÉ ÓÔÁÄÉÉ ËÏÍÐÉÌÑÃÉÉ"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 #, fuzzy
 msgid "color-style configuration"
 msgstr "÷ÁÛÁ ÏÓÎÏ×ÎÁÑ ËÏÎÆÉÇÕÒÁÃÉÑ"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "ÐÏÓÌÅÄÎÑÑ ÓÔÁÂÉÌØÎÁÑ ×ÅÒÓÉÑ"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "ÐÏÞÔÉ ÓÔÁÂÉÌØÎÁÑ ×ÅÒÓÉÑ"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "ÎÅÓÔÁÂÉÌØÎÁÑ ×ÅÒÓÉÑ"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2698,7 +2703,7 @@ msgstr ""
 "×ËÌÀÞÉÔÅ ËÏÐÉÀ ÜÔÏÊ ÓÔÒÁÎÉÃÙ."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2707,49 +2712,49 @@ msgstr ""
 "ÏÐÒÅÄÅÌÅÎÉÑ ÓÔÁÄÉÉ ËÏÍÐÉÌÑÃÉÉ ÐÒÉ ÓÂÏÒËÅ ÜÔÏÊ ËÏÐÉÉ Lynx."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "  C)ÏÚÄÁÔØ  D)úÁÇÒ  E)òÅÄÁËÔ  F)ðÏÌÎ ÍÅÎÀ  M)éÚÍÅÎ  R)õÄÁÌ  T)ïÔÍ  U)úÁÇÒ    \n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "îÅ ÕÄÁÅÔÓÑ ÐÏÌÕÞÉÔØ ÓÔÁÔÕÓ ÔÅËÕÝÅÊ ÓÓÙÌËÉ!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "óÐÅÃÉÁÌØÎÙÊ URL ÄÅÊÓÔ×ÉÔÅÌÅÎ ÔÏÌØËÏ ÉÚ ÔÅËÕÝÅÇÏ ÍÅÎÀ ðÒÁ× äÏÓÔÕÐÁ Ë æÁÊÌÁÍ!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "÷ÎÅÛÎÑÑ ÐÏÄÄÅÒÖËÁ ÓÅÊÞÁÓ ÏÔËÌÀÞÅÎÁ."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "éÚÍÅÎÅÎÉÅ ÒÁÂÏÞÅÇÏ ËÁÔÁÌÏÇÁ ÓÅÊÞÁÓ ÚÁÐÒÅÝÅÎÏ."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "ðÅÒÅÎÏÓ ÓÔÒÏË ïôëìàþåî!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "ðÅÒÅÎÏÓ ÓÔÒÏË ÷ëìàþåî!"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "òÁÚÂÏÒ ×ÌÏÖÅÎÎÙÈ ÔÁÂÌÉà ïôëìàþåî!  ïÂÎÏ×ÌÅÎÉÅ..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "òÁÚÂÏÒ ×ÌÏÖÅÎÎÙÈ ÔÁÂÌÉà ÷ëìàþåî!  ïÂÎÏ×ÌÅÎÉÅ..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr "óÄ×ÉÇ ÚÁÐÒÅÝÅÎ ÐÏËÁ ÄÅÊÓÔ×ÕÅÔ ÐÅÒÅÎÏÓ ÓÔÒÏË"
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "ôÒÁÓÓÉÒÏ×ËÁ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ"
 
@@ -2758,24 +2763,24 @@ msgstr "ôÒÁÓÓÉÒÏ×ËÁ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "éÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÄÌÑ '%s' ÎÁ %s '%s%s':"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "üÔÏÔ ËÌÉÅÎÔ ÎÅ ÚÎÁÅÔ, ËÁË ÓÏÓÔÁ×ÉÔØ ÉÎÆÏÒÍÁÃÉÀ ÐÒÏ×ÅÒËÉ ÐÒÁ× ÄÌÑ ÐÒÏËÓÉ ÄÌÑ ÓÈÅÍÙ"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "üÔÏÔ ËÌÉÅÎÔ ÎÅ ÚÎÁÅÔ, ËÁË ÓÏÓÔÁ×ÉÔØ ÉÎÆÏÒÍÁÃÉÀ ÐÒÏ×ÅÒËÉ ÐÒÁ× ÄÌÑ ÓÈÅÍÙ"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "îÅ×ÅÒÎÙÊ ÚÁÇÏÌÏ×ÏË '%s%s%s%s%s'"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "ôÒÅÂÕÅÔÓÑ ÐÒÏ×ÅÒËÁ ÐÒÁ× ÄÌÑ ÐÒÏËÓÉ -- ÐÏ×ÔÏÒ"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "äÏÓÔÕÐ ÂÅÚ ÐÒÏ×ÅÒËÉ ÐÒÁ× ÚÁÐÒÅÝÅÎ -- ÐÏ×ÔÏÒ"
 
@@ -2791,7 +2796,7 @@ msgstr "äÏËÕÍÅÎÔ Ó ÓÏÄÅÒÖÉÍÙÍ POST ÎÅ ÎÁÊÄÅÎ × ËÜÛÅ.  ðÏÓÌÁÔØ ÓÎÏ×Á?"
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "úÁÇÒÕÚËÁ ÚÁ×ÅÒÛÅÎÁ ÎÅ ÐÏÌÎÏÓÔØÀ."
 
@@ -2814,7 +2819,7 @@ msgstr "**** HTAccess: ÷ÏÚ×ÒÁÝÅÎÎÙÊ ÓÔÁÔÕÓ: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "îÅÔ ÄÏÓÔÕÐÁ"
 
@@ -3011,15 +3016,15 @@ msgstr "þÔÅÎÉÅ ÓÔÁÔØÉ ÎÏ×ÏÓÔÅÊ."
 msgid "Sorry, could not load requested news."
 msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÇÒÕÚÉÔØ ÚÁÐÒÏÛÅÎÎÙÅ ÎÏ×ÏÓÔÉ, ÉÚ×ÉÎÉÔÅ."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "îÅ×ÅÒÎÙÊ ÐÏÒÔ Õ ÁÄÒÅÓÁ"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "äÌÉÎÁ ÁÄÒÅÓÁ ×ÙÇÌÑÄÉÔ ÎÅ×ÅÒÎÏÊ"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "îÅ ÕÄÁÅÔÓÑ ÏÂÎÁÒÕÖÉÔØ ÕÄÁÌÅÎÎÕÀ ÍÁÛÉÎÕ %s."
@@ -3028,90 +3033,111 @@ msgstr "îÅ ÕÄÁÅÔÓÑ ÏÂÎÁÒÕÖÉÔØ ÕÄÁÌÅÎÎÕÀ ÍÁÛÉÎÕ %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "îÅÐÒÁ×ÉÌØÎÏÅ ÉÍÑ ÍÁÛÉÎÙ %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s ÓÏÅÄÉÎÅÎÉÅ Ó %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "ÏÛÉÂËÁ ÓÏËÅÔÁ."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "ÏÛÉÂËÁ ÓÏËÅÔÁ: ÓÅÍÅÊÓÔ×Ï %d ÁÄÒÅÓ %s ÐÏÒÔ %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "îÅ ÕÄÁÅÔÓÑ ÕÓÔÁÎÏ×ÉÔØ ÓÏÅÄÉÎÅÎÉÅ (ÓÌÉÛËÏÍ ÍÎÏÇÏ ÐÏÐÙÔÏË)."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "ïÛÉÂËÁ ÐÒÉ ÞÔÅÎÉÉ ÓÏËÅÔÁ × ÔÅÞÅÎÉÅ 180,000 ÐÏÐÙÔÏË."
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr "áÄÒÅÓ ÓÏÄÅÒÖÉÔ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ: %s"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "üÔÏÔ ËÌÉÅÎÔ ÎÅ ÓÏÄÅÒÖÉÔ ÐÏÄÄÅÒÖËÉ ÄÌÑ URL HTTPS."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "îÅ ÕÄÁÅÔÓÑ ÕÓÔÁÎÏ×ÉÔØ ÓÏÅÄÉÎÅÎÉÅ Ó ÕÄÁÌÅÎÎÏÊ ÍÁÛÉÎÏÊ."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "ðÏÐÙÔËÁ ÕÓÔÁÎÏ×ÉÔØ ÓÏÅÄÉÎÅÎÉÅ ÂÅÚ TLS."
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "Cookie ÕÄÁÌÅÎ!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+msgid "Can't find common name in certificate"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "ïÛÉÂËÁ SSL:host(%s)!=cert(%s)-ðÒÏÄÏÌÖÉÔØ?"
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "âÅÚÏÐÁÓÎÏÅ HTTP-ÓÏÅÄÉÎÅÎÉÅ: %d ÂÉÔ %s (%s)"
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "ðÏÓÙÌËÁ HTTP-ÚÁÐÒÏÓÁ."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "îÅÏÖÉÄÁÎÎÁÑ ÏÛÉÂËÁ ÚÁÐÉÓÉ ÐÏ ÓÅÔÉ; ÓÏÅÄÉÎÅÎÉÅ ÐÒÅÒ×ÁÎÏ."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP-ÚÁÐÒÏÓ ÐÏÓÌÁÎ; ÏÖÉÄÁÅÔÓÑ ÏÔ×ÅÔ."
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "îÅÏÖÉÄÁÎÎÁÑ ÏÛÉÂËÁ ÞÔÅÎÉÑ ÐÏ ÓÅÔÉ; ÓÏÅÄÉÎÅÎÉÅ ÐÒÅÒ×ÁÎÏ."
 
@@ -3124,7 +3150,7 @@ msgstr "îÅÏÖÉÄÁÎÎÁÑ ÏÛÉÂËÁ ÞÔÅÎÉÑ ÐÏ ÓÅÔÉ; ÓÏÅÄÉÎÅÎÉÅ ÐÒÅÒ×ÁÎÏ."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "ðÏÌÕÞÅÎ ÎÅÏÖÉÄÁÎÎÙÊ éÎÆÏÒÍÁÃÉÏÎÎÙÊ óÔÁÔÕÓ."
 
@@ -3134,7 +3160,7 @@ msgstr "ðÏÌÕÞÅÎ ÎÅÏÖÉÄÁÎÎÙÊ éÎÆÏÒÍÁÃÉÏÎÎÙÊ óÔÁÔÕÓ."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "úÁÐÒÏÓ ×ÙÐÏÌÎÅÎ.  ïÂÎÏ×ÌÅÎÉÅ óÏÄÅÒÖÉÍÏÇÏ."
 
@@ -3144,27 +3170,27 @@ msgstr "úÁÐÒÏÓ ×ÙÐÏÌÎÅÎ.  ïÂÎÏ×ÌÅÎÉÅ óÏÄÅÒÖÉÍÏÇÏ."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "ðÏÌÕÞÅÎ ÎÅÏÖÉÄÁÎÎÙÊ ÓÔÁÔÕÓ 304 (îÅ íÏÄÉÆÉÃÉÒÏ×ÁÎÏ)."
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "ðÅÒÅÎÁÐÒÁ×ÌÅÎÉÅ ÓÏÄÅÒÖÉÍÏÇÏ POST ÔÒÅÂÕÅÔ ÐÏÄÔ×ÅÒÖÄÅÎÉÑ ÐÏÌØÚÏ×ÁÔÅÌÑ."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "éÍÅÅÔÓÑ ÓÏÄÅÒÖÉÍÏÅ POST. ôÒÁËÔÏ×ËÁ ðÏÓÔÏÑÎÎÏÇÏ ðÅÒÅÎÁÐÒÁ×ÌÅÎÉÑ ËÁË ÷ÒÅÍÅÎÎÏÇÏ.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "ðÏ×ÔÏÒÅÎÉÅ Ó ÉÎÆÏÒÍÁÃÉÅÊ Ï ÐÒÁ×ÁÈ ÄÏÓÔÕÐÁ."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "ðÏËÁÚÙ×ÁÔØ ÔÅÌÏ ÓÏÏÂÝÅÎÉÑ 401?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "ðÏËÁÚÙ×ÁÔØ ÔÅÌÏ ÓÏÏÂÝÅÎÉÑ 407?"
 
@@ -3172,7 +3198,7 @@ msgstr "ðÏËÁÚÙ×ÁÔØ ÔÅÌÏ ÓÏÏÂÝÅÎÉÑ 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÓÔÁÔÕÓ ÏÔ×ÅÔÁ ÏÔ ÓÅÒ×ÅÒÁ!"
 
@@ -3360,139 +3386,139 @@ msgstr "ïÔ×ÅÔÓÔ×ÅÎÎÙÊ"
 msgid "Host"
 msgstr "íÁÛÉÎÁ"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "ðÁÍÑÔØ ÉÓÞÅÒÐÁÎÁ, ÏÔÏÂÒÁÖÅÎÉÅ ÐÒÅÒ×ÁÎÏ!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "ðÁÍÑÔØ ÉÓÞÅÒÐÁÎÁ, ÐÅÒÅÄÁÞÁ ÄÁÎÎÙÈ ÂÕÄÅÔ ÐÒÅÒ×ÁÎÁ!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** ðáíñôø éóþåòðáîá ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "ÎÅÉÚ×ÅÓÔÎÏÅ ÐÏÌÅ ÉÌÉ ÓÓÙÌËÁ"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "ÐÏÌÅ ××ÏÄÁ ÔÅËÓÔÁ"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "ÐÏÌÅ ××ÏÄÁ ÐÁÒÏÌÑ"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "ÎÅÚÁ×ÉÓÉÍÁÑ ËÎÏÐËÁ"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "ÚÁ×ÉÓÉÍÁÑ ËÎÏÐËÁ"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "ËÎÏÐËÁ ÐÏÓÙÌËÉ"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "ËÎÏÐËÁ ÏÞÉÓÔËÉ"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "×ÓÐÌÙ×ÁÀÝÅÅ ÍÅÎÀ"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "ÓËÒÙÔÏÅ ÐÏÌÅ ÆÏÒÍÙ"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "ÏÂÌÁÓÔØ ××ÏÄÁ ÔÅËÓÔÁ"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "ÐÏÌÅ ××ÏÄÁ ÄÉÁÐÁÚÏÎÁ"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "ÐÏÌÅ ××ÏÄÁ ÆÁÊÌÁ"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "ÔÅËÓÔÏ×ÏÅ ÐÏÌÅ ÐÏÓÙÌËÉ"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "ÇÒÁÆÉÞÅÓËÁÑ ËÎÏÐËÁ ÐÏÓÙÌËÉ"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "ÐÏÌÅ keygen"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "ÎÅÉÚ×ÅÓÔÎÏÅ ÐÏÌÅ ÆÏÒÍÙ"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "îÅ ÕÄÁÅÔÓÑ ÏÔËÒÙÔØ ÆÁÊÌ ÄÌÑ ÚÁÇÒÕÚËÉ!"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "ðÏÓÙÌËÁ %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "ðÅÒÅÎÅÓÔÉ ÓÔÒÏËÉ, ÞÔÏÂÙ ÐÏÐÁÓÔØ × ÏÂÌÁÓÔØ ÏÔÏÂÒÁÖÅÎÉÑ?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "ïÞÅÎØ ÄÌÉÎÎÙÅ ÓÔÒÏËÉ ÂÙÌÉ ÐÅÒÅÎÅÓÅÎÙ!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "ïÞÅÎØ ÄÌÉÎÎÙÅ ÓÔÒÏËÉ ÂÙÌÉ ÕÓÅÞÅÎÙ!"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "ÂÁÊÔ"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "ðÒÏÞÉÔÁÎÏ %s ÉÚ %s ÄÁÎÎÙÈ"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "ðÒÏÞÉÔÁÎÏ %s ÄÁÎÎÙÈ"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/ÓÅË"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr " (ÚÁÄÅÒÖÁÎÏ ÎÁ %s)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ", ETA %s"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (îÁÖÍÉÔÅ 'z' ÞÔÏÂÙ ÐÒÅÒ×ÁÔØ)"
 
@@ -3521,11 +3547,11 @@ msgstr " (îÁÖÍÉÔÅ 'z' ÞÔÏÂÙ ÐÒÅÒ×ÁÔØ)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "yes"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "no"
 
@@ -3545,7 +3571,7 @@ msgstr "no"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -3683,31 +3709,31 @@ msgstr "÷ÎÕÔÒÅÎÎÉÊ"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "ÏÛÉÂËÁ cookie_domain_flag_set error, ÐÒÅÇÒÁÍÍÁ ÐÒÅÒÙ×ÁÅÔÓÑ"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "ïÛÉÂËÁ ÐÒÉ ÉÎÉÃÉÁÌÉÚÁÃÉÉ ÔÅÒÍÉÎÁÌÁ - ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ ÔÅÒÍÉÎÁÌÁ?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "ôÅÒÍÉÎÁÌ ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "ó ÜÔÏÊ ÐÒÏÇÒÁÍÍÏÊ ×Ù ÄÏÌÖÎÙ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÅÒÍÉÎÁÌ vt100, 200, É Ô.Ä."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "ôÉÐ ×ÁÛÅÇÏ ôÅÒÍÉÎÁÌÁ ÎÅÉÚ×ÅÓÔÅÎ!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "÷×ÅÄÉÔÅ ÔÉÐ ÔÅÒÍÉÎÁÌÁ:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "ôéð ôåòíéîáìá õóôáîï÷ìåî ÷"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3716,7 +3742,7 @@ msgstr ""
 "\n"
 " ÷ %s ÷ÅÒ. %s ÐÒÏÉÚÏÛÌÁ ÆÁÔÁÌØÎÁÑ ÏÛÉÂËÁ.\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4196,30 +4222,30 @@ msgstr "üÔÏ ÓÏÏÂÝÅÎÉÅ ÂÙÌÏ Á×ÔÏÍÁÔÉÞÅÓËÉ ÓÇÅÎÅÒÉÒÏ×ÁÎÏ"
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "ë ÓÏÖÁÌÅÎÉÀ Winsock ÎÅ ÎÁÊÄÅÎ."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "÷Ù äïìöîù ÏÐÒÅÄÅÌÉÔØ ÐÒÁ×ÉÌØÎÕÀ ÏÂÌÁÓÔØ TMP ÉÌÉ TEMP!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "îÅÔ ËÁÔÁÌÏÇÁ"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "ëÏÎÆÉÇÕÒÁÃÉÏÎÎÙÊ ÆÁÊÌ %s ÎÅ ÄÏÓÔÕÐÅÎ.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4230,7 +4256,7 @@ msgstr ""
 "ëÏÄÉÒÏ×ËÉ Lynx ÎÅ ÏÐÒÅÄÅÌÅÎÙ.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4238,169 +4264,169 @@ msgid ""
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "æÁÊÌ Lynx %s ÎÅ ÄÏÓÔÕÐÅÎ.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "ðÒÅÄÕÐÒÅÖÄÅÎÉÅ:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "ÓÏÓÔÏÑÎÉÅ ÐÏÓÔÏÑÎÎÙÈ cookie ÂÕÄÅÔ ÉÚÍÅÎÅÎÏ ÔÏÌØËÏ × ÓÌÅÄÕÀÝÅÍ ÓÅÁÎÓÅ."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx: ÎÅÒÁÓÐÏÚÎÁÎÎÁÑ ËÏÄÉÒÏ×ËÁ=%s ÉÇÎÏÒÉÒÕÅÔÓÑ\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, fuzzy, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s ÷ÅÒÓÉÑ %s (%s)\n"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "óÏÂÒÁÎÏ %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "á×ÔÏÒÓËÉÅ ÐÒÁ×Á ÐÒÉÎÁÄÌÅÖÁÔ ÕÎÉ×ÅÒÓÉÔÅÔÕ ëÁÎÚÁÓÁ, CERN, É ÄÒÕÇÉÍ ÕÞÁÓÔÎÉËÁÍ."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "òÁÓÐÒÏÓÔÒÁÎÑÅÔÓÑ × ÒÁÍËÁÈ õÎÉ×ÅÒÓÁÌØÎÏÊ ïÂÝÅÓÔ×ÅÎÎÏÊ ìÉÃÅÎÚÉÉ GNU."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "óÍ. http://lynx.isc.org/ É ÐÏÍÏÝØ ÄÌÑ ÄÏÐÏÌÎÉÔÅÌØÎÏÊ ÉÎÆÏÒÍÁÃÉÉ."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "éóðïìøúï÷áîéå: %s [ËÌÀÞÉ] [ÆÁÊÌ]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "ëÌÀÞÉ:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: îÅ×ÅÒÎÁÑ ÏÐÃÉÑ: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ: îÅ×ÅÒÎÁÑ ÓÓÙÌËÁ ÍÙÛÉ %d!"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "URL, ÕËÁÚÁÎÎÙÊ ÐÏÌØÚÏ×ÁÔÅÌÅÍ"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "Enctype multipart/form-data ÅÝÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ!  îÅ ÕÄÁÅÔÓÑ ÐÏÓÌÁÔØ."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "üËÒÁÎ ðÏÍÏÝÉ"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "óÉÓÔÅÍÎÙÊ éÎÄÅËÓ"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "÷ÈÏÄ ÎÁ ÇÌÁ×ÎÙÊ ÜËÒÁÎ"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr "óÌÅÄÕÀÝÉÊ ÄÏËÕÍÅÎÔ ÏÔÓÕÔÓÔ×ÕÅÔ"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "ÉÚ×ÉÎÉÔÅ, ËÏÄÉÒÏ×ËÁ ÄÌÑ ÜÔÏÇÏ ÄÏËÕÍÅÎÔÁ ÕËÁÚÁÎÁ Ñ×ÎÏ..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "ÐÅÒÅÊÔÉ ×:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "ëÏÍÐÏÎÅÎÔÁ ÐÕÔÉ ÎÅ Ñ×ÌÑÅÔÓÑ ËÁÔÁÌÏÇÏÍ"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "ÎÅ ÕÄÁÌÏÓØ ÉÚÍÅÎÉÔØ ËÁÔÁÌÏÇ"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "äÏËÕÍÅÎÔ ÒÁÚÂÉÒÁÅÔÓÑ ÚÁÎÏ×Ï Ó ÕÞÅÔÏÍ ÔÅËÕÝÉÈ ÕÓÔÁÎÏ×ÏË..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "æÁÔÁÌØÎÁÑ ÏÛÉÂËÁ - ÎÅ ÕÄÁÅÔÓÑ ÏÔËÒÙÔØ ×ÙÈÏÄÎÏÊ ÆÁÊÌ %s\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 msgid "Current URL is empty."
 msgstr "ôÅËÕÝÉÊ URL ÐÕÓÔ."
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr "ïÝÉÂËÁ ÐÒÉ ËÏÐÉÒÏ×ÁÎÉÉ × ÂÕÆÅÒ ÏÂÍÅÎÁ."
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr "URL ÄÏËÕÍÅÎÔÁ ÐÏÍÅÝÅÎ × ÂÕÆÅÒ ÏÂÍÅÎÁ."
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr "URL ÓÓÙÌËÉ ÐÏÍÅÝÅÎ × ÂÕÆÅÒ ÏÂÍÅÎÁ."
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr "URL × ÂÕÆÅÒÅ ÏÂÍÅÎÁ ÏÔÓÕÔÓÔ×ÕÅÔ."
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-ÉÎÄÅËÓ-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: îÅÔ ÄÏÓÔÕÐÁ Ë ÎÁÞÁÌØÎÏÍÕ ÆÁÊÌÕ"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: îÁÞÁÌØÎÙÊ ÆÁÊÌ ÌÉÂÏ ÎÅ ÕÄÁÅÔÓÑ ÎÁÊÔÉ, ÌÉÂÏ ÏÎ ÎÅ text/html ÉÌÉ text/plain"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      ÷ÙÈÏÄ..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-ÄÁÌÅÅ-"
 
@@ -4464,357 +4490,357 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "óÏÏÂÝÅÎÉÅ ÎÅ ÉÍÅÅÔ ÐÅÒ×ÏÎÁÞÁÌØÎÏÇÏ ÔÅËÓÔÁ!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "ÐÒÏÓÍÏÔÒÅÔØ/ÏÔÒÅÄÁËÔÉÒÏ×ÁÔØ ÆÁÊÌÙ B)ÚÁËÌÁÄÏË"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "æÁÊÌ B)ÚÁËÌÁÄÏË: "
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 #, fuzzy
 msgid "Novice"
 msgstr "îÅÔ"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 #, fuzzy
 msgid "Intermediate"
 msgstr "÷ÎÕÔÒÅÎÎÉÊ"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 #, fuzzy
 msgid "as links"
 msgstr "ÜÔÕ ÓÓÙÌËÕ"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 #, fuzzy
 msgid "show filename"
 msgstr " (ÎÅ×ÅÒÎÏÅ ÉÍÑ ÆÁÊÌÁ)"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 #, fuzzy
 msgid "Directories first"
 msgstr "ðÏÄËÁÔÁÌÏÇÉ:"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 #, fuzzy
 msgid "Files first"
 msgstr " ÓÎÁÞÁÌÁ"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 #, fuzzy
 msgid "Mixed style"
 msgstr "óÔÉÌØ ÒÅÄÁËÔÉÒÏ×ÁÎÉÑ ÓÔÒÏË"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 #, fuzzy
 msgid "By Name"
 msgstr "éÍÑ:"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 #, fuzzy
 msgid "By Size"
 msgstr "òÁÚÍÅÒâÁÊÔÁ:"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 #, fuzzy
 msgid "By Date"
 msgstr "äÁÔÁ:"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 #, fuzzy
 msgid "By Group"
 msgstr "çÒÕÐÐÁ"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, fuzzy, c-format
 msgid "Show %s/sec rate"
 msgstr "ðÏËÁÚÙ×ÁÔØ ÓËÏÒÏÓÔØ ÐÅÒÅÄÁÞÉ"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 #, fuzzy
 msgid "Accept all types"
 msgstr "ðÒÉÎÑÔØ ÉÚÍÅÎÅÎÉÑ"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "éÓÐÏÌØÚÕÊÔÅ %s ÄÌÑ ×ÙÚÏ×Á ÍÅÎÀ ðÁÒÁÍÅÔÒÏ×!"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr "(ÐÁÒÁÍÅÔÒÙ, ÏÔÍÅÞÅÎÎÙÅ (!) ÓÏÈÒÁÎÅÎÙ ÎÅ ÂÕÄÕÔ)"
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "ïÂÝÉÅ ðÒÅÄÐÏÞÔÅÎÉÑ"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "òÅÖÉÍ ÐÏÌØÚÏ×ÁÔÅÌÑ"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "òÅÄÁËÔÏÒ"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "ôÉÐ ÐÏÉÓËÁ"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Cookie"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "÷×ÏÄ Ó ËÌÁ×ÉÁÔÕÒÙ"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "òÅÖÉÍ ÄÏÐÏÌÎÉÔÅÌØÎÏÊ ËÌÁ×ÉÁÔÕÒÙ"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "ëÌÁ×ÉÛÉ Emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "ëÌÁ×ÉÛÉ VI"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr "óÔÉÌØ ÒÅÄÁËÔÉÒÏ×ÁÎÉÑ ÓÔÒÏË"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "òÁÓËÌÁÄËÁ ËÌÁ×ÉÁÔÕÒÙ"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "ïÔÏÂÒÁÖÅÎÉÅ É îÁÂÏÒ óÉÍ×ÏÌÏ×"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "ðÏÄÒÁÚÕÍÅ×ÁÅÍÁÑ ËÏÄÉÒÏ×ËÁ ÄÏËÕÍÅÎÔÁ"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "ëÏÄÉÒÏ×ËÁ ÏÔÏÂÒÁÖÅÎÉÑ"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "ðÏÄÒÁÚÕÍÅ×ÁÅÍÁÑ ËÏÄÉÒÏ×ËÁ ÄÏËÕÍÅÎÔÁ"
 
@@ -4823,176 +4849,176 @@ msgstr "ðÏÄÒÁÚÕÍÅ×ÁÅÍÁÑ ËÏÄÉÒÏ×ËÁ ÄÏËÕÍÅÎÔÁ"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "òÅÖÉÍ CJK"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "îÅÏÂÒÁÂÏÔÁÎÎÙÊ 8-ÂÉÔÎÙÊ ÒÅÖÉÍ"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "üËÒÁÎ X"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "÷ÎÅÛÎÉÊ ×ÉÄ ÄÏËÕÍÅÎÔÁ"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "ðÏËÁÚÙ×ÁÔØ Ã×ÅÔ"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "ðÏËÁÚÙ×ÁÔØ ËÕÒÓÏÒ"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 #, fuzzy
 msgid "Underline links"
 msgstr "óËÒÙÔÙÈ ÓÓÙÌÏË:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "ðÏËÁÚÙ×ÁÔØ ÐÏÌÏÓÕ ÐÒÏËÒÕÔËÉ"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "÷ÓÐÌÙ×ÁÀÝÉÅ ÍÅÎÀ ÄÌÑ ×ÙÂÒÁÎÎÙÈ ÐÏÌÅÊ"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "÷ÏÓÓÔÁÎÏ×ÌÅÎÉÅ ÏÔ ÏÛÉÂÏË × HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "ðÏËÁÚÁÔØ ÉÚÏÂÒÁÖÅÎÉÑ"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "úÁÍÅÎÑÔØ ÉÚÏÂÒÁÖÅÎÉÑ ÎÁ ÁÄÒÅÓÁ"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "úÁÇÏÌÏ×ËÉ, ÐÅÒÅÄÁÎÎÙÅ ÎÁ ÕÄÁÌÅÎÎÙÅ ÓÅÒ×ÅÒÙ"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "ðÅÒÓÏÎÁÌØÎÙÊ ÐÏÞÔÏ×ÙÊ ÁÄÒÅÓ"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "ðÁÒÏÌØ ÄÌÑ ÕÚÌÁ ÎÏ×ÏÓÔÅÊ '%s':"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 #, fuzzy
 msgid "Preferred media type"
 msgstr "ðÅÒÅÄÁÎÏ %d ÂÁÊÔ"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "ðÒÅÄÐÏÞÉÔÁÅÍÙÊ ÑÚÙË ÄÏËÕÍÅÎÔÁ"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "ðÒÅÄÐÏÞÉÔÁÅÍÁÑ ËÏÄÉÒÏ×ËÁ ÄÏËÕÍÅÎÔÁ"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "ðÒÅÄÐÏÞÉÔÁÅÍÙÊ ÑÚÙË ÄÏËÕÍÅÎÔÁ"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "úÁÇÏÌÏ×ÏË User-Agent"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "÷Ù×ÏÄ ÓÐÉÓËÁ ÆÁÊÌÏ× É ÄÏÓÔÕÐ Ë ÎÉÍ"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "ëÒÉÔÅÒÉÊ ÓÏÒÔÉÒÏ×ËÉ FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "ëÒÉÔÅÒÉÊ ÓÏÒÔÉÒÏ×ËÉ ÌÏËÁÌØÎÏÇÏ ËÁÔÁÌÏÇÁ"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "ëÒÉÔÅÒÉÊ ÓÏÒÔÉÒÏ×ËÉ ÌÏËÁÌØÎÏÇÏ ËÁÔÁÌÏÇÁ"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "ðÏËÁÚÙ×ÁÔØ dot-ÆÁÊÌÙ"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "÷ÙÐÏÌÎÅÎÉÅ ÓÓÙÌÏË"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "ðÏËÁÚÙ×ÁÔØ ÓËÏÒÏÓÔØ ÐÅÒÅÄÁÞÉ"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "óÐÅÃÉÁÌØÎÙÅ ÆÁÊÌÙ É ÜËÒÁÎÙ"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "íÎÏÖÅÓÔ×ÅÎÎÙÅ ÚÁËÌÁÄËÉ"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "ðÒÏÓÍÏÔÒÅÔØ/ÏÔÒÅÄÁËÔÉÒÏ×ÁÔØ ÆÁÊÌÁ ÚÁËÌÁÄÏË"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "ðÅÒÅÈÏÄ Ë ÍÅÎÀ ÍÎÏÖÅÓÔ×ÅÎÎÙÈ ÚÁËÌÁÄÏË"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "æÁÊÌ ÚÁËÌÁÄÏË"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "ðÏÓÅÝÅÎÎÙÅ ÓÔÒÁÎÉÃÙ"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr "ðÒÏÓÍÏÔÒÅÔØ ÆÁÊÌ"
 
@@ -5112,38 +5138,38 @@ msgstr "Lynx: ÏÛÉÂËÁ ÓÔÁÒÔÁ, ÆÁÊÌ Ó ÐÒÁ×ÉÌÁÍÉ CERN %s ÎÅ ÄÏÓÔÕÐÅÎ\n"
 msgid "(no name)"
 msgstr "(ÎÅÔ ÉÍÅÎÉ)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "âÏÌØÛÅ ÞÅÍ %d ×ÌÏÖÅÎÎÙÈ ×ËÌÀÞÅÎÉÊ lynx.cfg -- ×ÏÚÍÏÖÎÏ ÃÉËÌ?!?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "ðÏÓÌÅÄÎÑÑ ÐÏÐÙÔËÁ ×ËÌÀÞÅÎÉÑ ÂÙÌÁ '%s',\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "×ËÌÀÞÅÎÏ ÉÚ '%s'.\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "óÌÅÄÕÀÝÅÅ ÞÉÔÁÅÔÓÑ ÉÚ ×ÁÛÅÇÏ ÆÁÊÌÁ lynx.cfg."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "ðÏÖÁÌÕÊÓÔÁ, ÐÒÏÞÉÔÁÊÔÅ ÉÓÈÏÄÎÙÊ"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "ÄÌÑ ÐÏÌÕÞÅÎÉÑ ÄÏÐÏÌÎÉÔÅÌØÎÙÈ ËÏÍÍÅÎÔÁÒÉÅ×."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "ïâîï÷éôø éúíåîåîéñ"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "÷ÁÛÁ ÏÓÎÏ×ÎÁÑ ËÏÎÆÉÇÕÒÁÃÉÑ"
 
@@ -5417,33 +5443,33 @@ msgstr "úÁÇÒÕÚÉÔØ ×:"
 msgid "Upload options:"
 msgstr "ïÐÃÉÉ ÚÁÇÒÕÚËÉ:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "îÅÏÖÉÄÁÎÎÙÊ ÐÒÏÔÏËÏÌ ÄÏÓÔÕÐÁ ÄÌÑ ÜÔÏÊ ÓÈÅÍÙ URL."
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ×ÒÅÍÅÎÎÙÈ ÆÁÊÌÏ×"
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "ÎÅÉÚ×ÅÓÔÎÏÅ ÏÇÒÁÎÉÞÅÎÉÅ"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "ïÇÒÁÎÉÞÅÎÉÊ ÎÅ ÕÓÔÁÎÏ×ÌÅÎÙ.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "õÓÔÁÎÏ×ÌÅÎÎÙÅ ÏÇÒÁÎÉÞÅÎÉÑ:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "äÏÍÁÛÎÉÊ ËÁÔÁÌÏÇ ÎÅ ÎÁÊÄÅÎ"
 
diff --git a/po/rw.po b/po/rw.po
index 78b4f829..60ed52cc 100644
--- a/po/rw.po
+++ b/po/rw.po
@@ -16,7 +16,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.5pre9\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2005-04-04 10:55-0700\n"
 "Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n"
 "Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
@@ -2661,7 +2661,7 @@ msgstr "(Izina:"
 msgid "(No value.)"
 msgstr "(Agaciro"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Ntacyo"
 
@@ -3036,155 +3036,160 @@ msgstr "Ongera ugerageze Na: Porogisi i"
 msgid "Retrying with proxy authorization information."
 msgstr "Na: Porogisi Ibisobanuro"
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "Ikosa Ubuturo Dukomeza"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 #, fuzzy
 msgid "HTWAIS: Return message too large."
 msgstr "Ubutumwa Binini"
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 #, fuzzy
 msgid "Enter WAIS query: "
 msgstr "Ikibazo#"
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 #, fuzzy
 msgid "Retrying as HTTP0 request."
 msgstr "Nka Kubaza..."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, fuzzy, c-format
 msgid "Transferred %d bytes"
 msgstr "Bayite"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 #, fuzzy
 msgid "Data transfer complete"
 msgstr "Byuzuye"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, fuzzy, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Inonosora Umurongo Bya"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr ""
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Idosiye y'ibirango"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr ""
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr ""
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr ""
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 #, fuzzy
 msgid "File Management Options"
 msgstr "Idosiye"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr ""
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr ""
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr ""
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr ""
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr ""
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr ""
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 #, fuzzy
 msgid "File Permission Options"
 msgstr "Idosiye"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr ""
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 #, fuzzy
 msgid "Information about the current document"
 msgstr "Ibyerekeye i KIGEZWEHO Inyandiko"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 #, fuzzy
 msgid "Your recent statusline messages"
 msgstr "Ubutumwa"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr ""
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr ""
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr ""
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr ""
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 #, fuzzy
 msgid "for runtime options"
 msgstr "kugirango Amahitamo"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 #, fuzzy
 msgid "compile time options"
 msgstr "Gukusanya Igihe Amahitamo"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 #, fuzzy
 msgid "color-style configuration"
 msgstr "Iboneza"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr ""
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 #, fuzzy
 msgid "pre-release version"
 msgstr "Byahawe imiterere mbere Verisiyo"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 #, fuzzy
 msgid "development version"
 msgstr "Verisiyo"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 #, fuzzy
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
@@ -3193,7 +3198,7 @@ msgid ""
 msgstr "Ibyatanzwe i Byikoresha Iboneza Bya iyi Gukoporora Bya a Gushyiramo a iyi Ipaji"
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 #, fuzzy
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
@@ -3201,57 +3206,57 @@ msgid ""
 msgstr "Ibyatanzwe Nka ku buryo bwikora Gukusanya Ryari: iyi Gukoporora Bya"
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 #, fuzzy
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "C E Ibikubiyemo U"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 #, fuzzy
 msgid "Failed to obtain status of current link!"
 msgstr "Kuri Imimerere Bya KIGEZWEHO Ihuza"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 #, fuzzy
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "Byemewe Bivuye KIGEZWEHO Idosiye Ibikubiyemo"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 #, fuzzy
 msgid "External support is currently disabled."
 msgstr "Gushigikira ni Yahagaritswe"
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 #, fuzzy
 msgid "Changing working-directory is currently disabled."
 msgstr "bushyinguro ni Yahagaritswe"
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr ""
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr ""
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 #, fuzzy
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Imbonerahamwe"
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 #, fuzzy
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Imbonerahamwe"
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 #, fuzzy
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr "ni Yahagaritswe Umurongo Gufunika ni in INGARUKA"
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 #, fuzzy
 msgid "Trace not supported"
 msgstr "OYA"
@@ -3261,27 +3266,27 @@ msgstr "OYA"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "kugirango ku"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 #, fuzzy
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "Umukiriya Kuri Himba: Porogisi Ibisobanuro kugirango Igishusho"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 #, fuzzy
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "Umukiriya Kuri Himba: Ibisobanuro kugirango Igishusho"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, fuzzy, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Umutwempangano"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 #, fuzzy
 msgid "Proxy authorization required -- retrying"
 msgstr "Bya ngombwa"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr ""
 
@@ -3299,7 +3304,7 @@ msgstr "Na: Ibikubiyemo OYA Byabonetse in Ubwihisho"
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr ""
 
@@ -3322,7 +3327,7 @@ msgstr ""
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr ""
 
@@ -3538,17 +3543,17 @@ msgstr "Amakuru Ingingo"
 msgid "Sorry, could not load requested news."
 msgstr "OYA Ibirimo Amakuru"
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 #, fuzzy
 msgid "Address has invalid port"
 msgstr "Sibyo Umuyoboro"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 #, fuzzy
 msgid "Address length looks invalid"
 msgstr "Uburebure Sibyo"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, fuzzy, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Kuri Ubuturo"
@@ -3557,101 +3562,121 @@ msgstr "Kuri Ubuturo"
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, fuzzy, c-format
 msgid "Invalid hostname %s"
 msgstr "Izina ry'inturo:"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, fuzzy, c-format
 msgid "Making %s connection to %s"
 msgstr "Ukwihuza Kuri"
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 #, fuzzy
 msgid "socket failed."
 msgstr "Byanze"
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, fuzzy, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "Byanze Aderesi Umuyoboro"
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 #, fuzzy
 msgid "Could not make connection non-blocking."
 msgstr "OYA Ubwoko Ukwihuza"
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 #, fuzzy
 msgid "Connection failed (too many retries)."
 msgstr "Byanze"
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 #, fuzzy
 msgid "Could not restore socket to blocking."
 msgstr "OYA Kugarura Kuri"
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 #, fuzzy
 msgid "Socket read failed for 180,000 tries."
 msgstr "Gusoma Byanze kugirango 000"
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, fuzzy, c-format
 msgid "Address contains a username: %s"
 msgstr "Kirimo a Izina ry'ukoresha"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 #, fuzzy
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Umukiriya OYA Gushigikira kugirango"
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 #, fuzzy
 msgid "Unable to connect to remote host."
 msgstr "Kuri Kwihuza Kuri Ubuturo"
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 #, fuzzy
 msgid "Retrying connection without TLS."
 msgstr "Ukwihuza"
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+msgid "the certificate has been revoked"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+msgid "Can't find common name in certificate"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, fuzzy, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "Ikosa Ubuturo Dukomeza"
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, fuzzy, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Ukwihuza"
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 #, fuzzy
 msgid "Sending HTTP request."
 msgstr "Kubaza..."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 #, fuzzy
 msgid "Unexpected network write error; connection aborted."
 msgstr "urusobe Kwandika Ikosa Ukwihuza"
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 #, fuzzy
 msgid "HTTP request sent; waiting for response."
 msgstr "Kubaza... Yoherejwe: Tegereza kugirango"
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 #, fuzzy
 msgid "Unexpected network read error; connection aborted."
 msgstr "urusobe Gusoma Ikosa Ukwihuza"
@@ -3665,7 +3690,7 @@ msgstr "urusobe Gusoma Ikosa Ukwihuza"
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3675,7 +3700,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3685,32 +3710,32 @@ msgstr ""
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 #, fuzzy
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Imimerere"
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 #, fuzzy
 msgid "Redirection of POST content requires user approval."
 msgstr "Bya Ibikubiyemo Ukoresha:"
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 #, fuzzy
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Ibikubiyemo Nka"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 #, fuzzy
 msgid "Retrying with access authorization information."
 msgstr "Na: Ibisobanuro"
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 #, fuzzy
 msgid "Show the 401 message body?"
 msgstr "i Ubutumwa Umubiri"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 #, fuzzy
 msgid "Show the 407 message body?"
 msgstr "i Ubutumwa Umubiri"
@@ -3719,7 +3744,7 @@ msgstr "i Ubutumwa Umubiri"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 #, fuzzy
 msgid "Unknown status reply from server!"
 msgstr "Imimerere Subiza Bivuye Seriveri"
@@ -3927,163 +3952,163 @@ msgstr ""
 msgid "Host"
 msgstr "Ubuturo"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 #, fuzzy
 msgid "Memory exhausted, display interrupted!"
 msgstr "Kugaragaza"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 #, fuzzy
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Hagarikira aho"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr ""
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 #, fuzzy
 msgid "unknown field or link"
 msgstr "Kitazwi Umwanya Cyangwa Ihuza"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 #, fuzzy
 msgid "text entry field"
 msgstr "Umwandiko Icyinjijwe Umwanya"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 #, fuzzy
 msgid "password entry field"
 msgstr "Ijambobanga... Icyinjijwe Umwanya"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr ""
 
 # svx/source\form\fmexpl.src:RID_FMSHELL_CONVERSIONMENU.SID_FM_CONVERTTO_RADIOBUTTON.text
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 #, fuzzy
 msgid "radio button"
 msgstr "Buto Radiyo"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 #, fuzzy
 msgid "submit button"
 msgstr "akabuto ko gutanga"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 #, fuzzy
 msgid "reset button"
 msgstr "akabuto ko gutangira bushya"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 #, fuzzy
 msgid "popup menu"
 msgstr "Ibikubiyemo"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 #, fuzzy
 msgid "hidden form field"
 msgstr "gihishwe Ifishi Umwanya"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 #, fuzzy
 msgid "text entry area"
 msgstr "Umwandiko Icyinjijwe Ubuso"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 #, fuzzy
 msgid "range entry field"
 msgstr "Urutonde Icyinjijwe Umwanya"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 #, fuzzy
 msgid "file entry field"
 msgstr "IDOSIYE Icyinjijwe Umwanya"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 #, fuzzy
 msgid "text-submit field"
 msgstr "Umwandiko Tanga Umwanya"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 #, fuzzy
 msgid "image-submit button"
 msgstr "Ishusho Tanga Akabuto"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 #, fuzzy
 msgid "keygen field"
 msgstr "Umwanya"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 #, fuzzy
 msgid "unknown form field"
 msgstr "Kitazwi Ifishi Umwanya"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 #, fuzzy
 msgid "Can't open file for uploading"
 msgstr "Gufungura IDOSIYE kugirango"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr ""
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 #, fuzzy
 msgid "Wrap lines to fit displayed area?"
 msgstr "Imirongo Kuri Ubuso"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 #, fuzzy
 msgid "Very long lines have been wrapped!"
 msgstr "Imirongo"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 #, fuzzy
 msgid "Very long lines have been truncated!"
 msgstr "Imirongo"
 
 # sfx2/source\appl\sfx.src:STR_BYTES.text
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 #, fuzzy
 msgid "bytes"
 msgstr "Bayite"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, fuzzy, c-format
 msgid "Read %s of %s of data"
 msgstr "Bya Bya Ibyatanzwe"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, fuzzy, c-format
 msgid "Read %s of data"
 msgstr "Bya Ibyatanzwe"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, fuzzy, c-format
 msgid ", %s/sec"
 msgstr ",%s/isogonda"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, fuzzy, c-format
 msgid " (stalled for %s)"
 msgstr "(kugirango"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ""
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 #, fuzzy
 msgid " (Press 'z' to abort)"
 msgstr "(Kuri Kureka"
@@ -4113,11 +4138,11 @@ msgstr "(Kuri Kureka"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "Yego"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 #, fuzzy
 msgid "no"
 msgstr "Oya"
@@ -4138,7 +4163,7 @@ msgstr "Oya"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -4278,42 +4303,42 @@ msgstr "By'imbere"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "Ikosa Porogaramu"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 #, fuzzy
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Byanze Kitazwi Ubwoko"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr ""
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 #, fuzzy
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Gukoresha a 200 Na: iyi Porogaramu"
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 #, fuzzy
 msgid "Your Terminal type is unknown!"
 msgstr "Ubwoko ni Kitazwi"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 #, fuzzy
 msgid "Enter a terminal type:"
 msgstr "a Ubwoko"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr ""
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, fuzzy, c-format
 msgid ""
 "\n"
 "A Fatal error has occurred in %s Ver. %s\n"
 msgstr "A Ikosa in"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, fuzzy, c-format
 msgid ""
 "\n"
@@ -4865,30 +4890,30 @@ msgstr "Ubutumwa ku buryo bwikora ku"
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 #, fuzzy
 msgid "No Winsock found, sorry."
 msgstr "Byabonetse"
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 #, fuzzy
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "Kugaragaza... a Byemewe Cyangwa Ubuso"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 #, fuzzy
 msgid "No such directory"
 msgstr "bushyinguro"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, fuzzy, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr "IDOSIYE ni OYA Bihari"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, fuzzy, c-format
 msgid ""
 "\n"
@@ -4896,7 +4921,7 @@ msgid ""
 "\n"
 msgstr "Inyuguti OYA"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, fuzzy, c-format
 msgid ""
 "\n"
@@ -4904,80 +4929,80 @@ msgid ""
 "\n"
 msgstr "Guhindura OYA"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, fuzzy, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr "IDOSIYE ni OYA Bihari"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Iburira:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 #, fuzzy
 msgid "persistent cookies state will be changed in next session only."
 msgstr "Inyandikonyakwirema Leta Byahinduwe in Komeza>> Umukoro"
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr ""
 
 # goodies/source\filter.vcl\eps\dlgeps.src:DLG_EXPORT_EPS.GRP_VERSION.text
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, fuzzy, c-format
 msgid "%s Version %s (%s)"
 msgstr "Verisiyo"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, fuzzy, c-format
 msgid "Built on %s %s %s\n"
 msgstr "ku"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 #, fuzzy
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "ku i Bya Na Ikindi Abaterankunga"
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 #, fuzzy
 msgid "Distributed under the GNU General Public License."
 msgstr "i"
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 #, fuzzy
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Mucukumbuzi."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, fuzzy, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "Amahitamo IDOSIYE"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr ""
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr ""
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, fuzzy, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "Ikosa Imbeba Ihuza"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 #, fuzzy
 msgid "A URL specified by the user"
 msgstr "A ku i Ukoresha:"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 #, fuzzy
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "Ifishi Ibyatanzwe OYA Tanga"
@@ -4985,102 +5010,102 @@ msgstr "Ifishi Ibyatanzwe OYA Tanga"
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr ""
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr ""
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 #, fuzzy
 msgid "Entry into main screen"
 msgstr "Mugaragaza"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 #, fuzzy
 msgid "No next document present"
 msgstr "Komeza>> Inyandiko"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 #, fuzzy
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "kugirango iyi Inyandiko"
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 #, fuzzy
 msgid "cd to:"
 msgstr "Kuri"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 #, fuzzy
 msgid "A component of path is not a directory"
 msgstr "A Bya Inzira ni OYA a bushyinguro"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 #, fuzzy
 msgid "failed to change directory"
 msgstr "Byanze Kuri Guhindura>> bushyinguro"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 #, fuzzy
 msgid "Reparsing document under current settings..."
 msgstr "Inyandiko KIGEZWEHO Amagenamiterere"
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, fuzzy, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Ikosa OYA Gufungura Ibisohoka IDOSIYE"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 #, fuzzy
 msgid "Current URL is empty."
 msgstr "bushyinguro"
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr ""
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 #, fuzzy
 msgid "-index-"
 msgstr "-Umubarendanga"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr ""
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 #, fuzzy
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "Gutangira IDOSIYE OYA Byabonetse Cyangwa ni OYA Umwandiko HTML Cyangwa Umwandiko Byuzuye"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr ""
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 #, fuzzy
 msgid "-more-"
 msgstr "-Birenzeho"
@@ -5139,344 +5164,344 @@ msgstr "Injiza Ubutumwa munsi"
 msgid "Message has no original text!"
 msgstr "Oya Umwimerere Umwandiko"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 #, fuzzy
 msgid "review/edit B)ookmarks files"
 msgstr "Isubiramo Guhindura Idosiye"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 #, fuzzy
 msgid "B)ookmark file: "
 msgstr "IDOSIYE"
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 #, fuzzy
 msgid "Novice"
 msgstr "Ntacyo"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 #, fuzzy
 msgid "Intermediate"
 msgstr "By'imbere"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 #, fuzzy
 msgid "as links"
 msgstr "iyi Ihuza"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 #, fuzzy
 msgid "show filename"
 msgstr "(IDOSIYE Izina:"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
 # svx/source\gallery2\gallery.src:RID_SVXDLG_GALLERY_CBX.text
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 #, fuzzy
 msgid "Directories first"
 msgstr "Ububiko bwungirije"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 #, fuzzy
 msgid "Files first"
 msgstr "Itangira"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 #, fuzzy
 msgid "Mixed style"
 msgstr "Guhindura IMISUSIRE"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 #, fuzzy
 msgid "By Name"
 msgstr "Izina:"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr ""
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 #, fuzzy
 msgid "By Date"
 msgstr "Itariki:"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 #, fuzzy
 msgid "By Group"
 msgstr "Itsinda"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, fuzzy, c-format
 msgid "Show %s/sec rate"
 msgstr "Igipimo"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 #, fuzzy
 msgid "Accept all types"
 msgstr "emera ibihindutse/ibyahindutse"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, fuzzy, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Kuri i Ibikubiyemo"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 #, fuzzy
 msgid "(options marked with (!) will not be saved)"
 msgstr "(Amahitamo cy/ byagarajwe Na: OYA"
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr ""
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 #, fuzzy
 msgid "User mode"
 msgstr "Ubwoko"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "umwanditsi"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 #, fuzzy
 msgid "Type of Search"
 msgstr "Bya"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Cookie"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr ""
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 #, fuzzy
 msgid "Keypad mode"
 msgstr "Ubwoko"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 #, fuzzy
 msgid "Emacs keys"
 msgstr "Utubuto"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 #, fuzzy
 msgid "VI keys"
 msgstr "Utubuto"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 #, fuzzy
 msgid "Line edit style"
 msgstr "Guhindura IMISUSIRE"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 #, fuzzy
 msgid "Keyboard layout"
 msgstr "Imigaragarire"
@@ -5484,24 +5509,24 @@ msgstr "Imigaragarire"
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 #, fuzzy
 msgid "Display and Character Set"
 msgstr "Na"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "Inyandiko Inyuguti Gushyiraho"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 #, fuzzy
 msgid "Display character set"
 msgstr "Inyuguti Gushyiraho"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 #, fuzzy
 msgid "Assumed document character set"
 msgstr "Inyandiko Inyuguti Gushyiraho"
@@ -5511,71 +5536,71 @@ msgstr "Inyandiko Inyuguti Gushyiraho"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 #, fuzzy
 msgid "CJK mode"
 msgstr "Ubwoko"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 #, fuzzy
 msgid "Raw 8-bit"
 msgstr "8"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr ""
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr ""
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 #, fuzzy
 msgid "Show color"
 msgstr "Ibara"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 #, fuzzy
 msgid "Show cursor"
 msgstr "indanga"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 #, fuzzy
 msgid "Underline links"
 msgstr "amahuza"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 #, fuzzy
 msgid "Show scrollbar"
 msgstr "Agafashsagenda"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 #, fuzzy
 msgid "Popups for select fields"
 msgstr "kugirango Guhitamo Imyanya"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 #, fuzzy
 msgid "HTML error recovery"
 msgstr "Ikosa"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 #, fuzzy
 msgid "Show images"
 msgstr "Ishusho"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 #, fuzzy
 msgid "Verbose images"
 msgstr "Ishusho"
@@ -5583,49 +5608,49 @@ msgstr "Ishusho"
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 #, fuzzy
 msgid "Headers Transferred to Remote Servers"
 msgstr "Kuri"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 #, fuzzy
 msgid "Personal mail address"
 msgstr "Ubutumwa Aderesi"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "kugirango Amakuru Ubuturo"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 #, fuzzy
 msgid "Preferred media type"
 msgstr "Bayite"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Inyandiko Ururimi"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 #, fuzzy
 msgid "Preferred document character set"
 msgstr "Inyandiko Inyuguti Gushyiraho"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 #, fuzzy
 msgid "Preferred document language"
 msgstr "Inyandiko Ururimi"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 #, fuzzy
 msgid "User-Agent header"
 msgstr "Umutwempangano"
@@ -5633,42 +5658,42 @@ msgstr "Umutwempangano"
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 #, fuzzy
 msgid "Listing and Accessing Files"
 msgstr "Na"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 #, fuzzy
 msgid "FTP sort criteria"
 msgstr "Ishungura Ibigenderwaho"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 #, fuzzy
 msgid "Local directory sort criteria"
 msgstr "bushyinguro Ishungura Ibigenderwaho"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 #, fuzzy
 msgid "Local directory sort order"
 msgstr "bushyinguro Ishungura Itondekanya"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 #, fuzzy
 msgid "Show dot files"
 msgstr "Akadomo Idosiye"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 #, fuzzy
 msgid "Execution links"
 msgstr "amahuza"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 #, fuzzy
 msgid "Show transfer rate"
 msgstr "Igipimo"
@@ -5676,37 +5701,37 @@ msgstr "Igipimo"
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 #, fuzzy
 msgid "Special Files and Screens"
 msgstr "Na"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 #, fuzzy
 msgid "Multi-bookmarks"
 msgstr "Ibirango"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 #, fuzzy
 msgid "Review/edit Bookmarks files"
 msgstr "Guhindura Idosiye"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 #, fuzzy
 msgid "Goto multi-bookmark menu"
 msgstr "Akamenyetso Ibikubiyemo"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 #, fuzzy
 msgid "Bookmarks file"
 msgstr "IDOSIYE"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr ""
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 #, fuzzy
 msgid "View the file "
 msgstr "i IDOSIYE"
@@ -5838,7 +5863,7 @@ msgstr "Gutangira IDOSIYE ni OYA"
 msgid "(no name)"
 msgstr "(Oya Izina:"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, fuzzy, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr ""
@@ -5851,36 +5876,36 @@ msgstr ""
 "X- Generator: KBabel 1. 0\n"
 "."
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, fuzzy, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Gushyiramo"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, fuzzy, c-format
 msgid "included from '%s'.\n"
 msgstr "Bivuye"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 #, fuzzy
 msgid "The following is read from your lynx.cfg file."
 msgstr "ni Gusoma Bivuye IDOSIYE"
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 #, fuzzy
 msgid "Please read the distribution"
 msgstr "Gusoma i Ikwirakwiza..."
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 #, fuzzy
 msgid "for more comments."
 msgstr "kugirango Birenzeho Ibisobanuro"
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr ""
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 #, fuzzy
 msgid "Your primary configuration"
 msgstr "Iboneza"
@@ -6202,35 +6227,35 @@ msgstr ""
 msgid "Upload options:"
 msgstr "Amahitamo"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 #, fuzzy
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "Porotokole kugirango iyi Igishusho"
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr ""
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 #, fuzzy
 msgid "unknown restriction"
 msgstr "Kitazwi"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, fuzzy, c-format
 msgid "No restrictions set.\n"
 msgstr "Amabwiriza Gushyiraho"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, fuzzy, c-format
 msgid "Restrictions set:\n"
 msgstr "Gushyiraho"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 #, fuzzy
 msgid "Cannot find HOME directory"
 msgstr "Gushaka bushyinguro"
diff --git a/po/sl.po b/po/sl.po
index e7df26f0..f84805ba 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,14 +1,14 @@
 # Slovenian translation of Lynx WWW browser.
 # Copyright (C) 1999 Free Software Foundation, Inc.
 # Roman Maurer <roman.maurer@hermes.si>, 1999.
-# @Id: sl.po 1.25 Mon, 29 May 2006 15:44:54 -0700 dickey @
+# @Id: sl.po 1.26 Thu, 31 Aug 2006 16:37:53 -0700 dickey @
 # @Source: po/sl.po @
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 1999-12-29 12:30 +0200\n"
 "Last-Translator: Roman Maurer <roman.maurer@hermes.si>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
@@ -2244,7 +2244,7 @@ msgstr "(Brez imena.)"
 msgid "(No value.)"
 msgstr "(Brez vrednosti.)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Niè"
 
@@ -2551,142 +2551,147 @@ msgstr "Ne moremo ponovno poskusiti brez avtorizacije za proxy!  Povpra¹ajte upr
 msgid "Retrying with proxy authorization information."
 msgstr "Posku¹amo ponovno z avtorizacijo za proxy."
 
+#: LYMessages.c:796
+#, c-format
+msgid "SSL error:%s-Continue?"
+msgstr ""
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: Sporoèilo z odgovorom je predolgo."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Vnesite zahtevek za WAIS: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Ponovno posku¹amo z zahtevkom HTTP0."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "Preneseno %d zlogov"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Prenos podatkov konèan"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Napaka pri obdelavi vrstice %d datoteke %s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Stran z imenikom naslovov"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Datoteka z zaznamki"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Definicije nastavitev"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Posoda s pi¹koti"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Trenutna tipkovnica"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Izbire upravljanja datotek"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Izbire za jemanje"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Stran z zgodovino"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Stran s seznamom"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Informacije o Lynx.cfg"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr ""
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Menu izbir"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Izbire za dovoljenja datotek"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Izbire tiskanja"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Informacije o trenutnem dokumentu"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "Novej¹a sporoèila v vrstici stanja"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Izbire po¹iljanja"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Stran z obiskanimi povezavami"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Glejte tudi"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "va¹"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "za izbire med tekom"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "izbire ob prevajanju"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 msgid "color-style configuration"
 msgstr ""
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "zadnjo razlièico"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "razvojno razlièico"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "razvojno razlièico"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2694,58 +2699,58 @@ msgid ""
 msgstr ""
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
 msgstr ""
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr ""
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Nismo mogli dobiti stanja trenutne povezave!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr ""
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "Zunanja podpora je trenutno onemogoèena."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 #, fuzzy
 msgid "Changing working-directory is currently disabled."
 msgstr "Ukaz natisni (p) je trenutno onemogoèen."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 #, fuzzy
 msgid "Linewrap OFF!"
 msgstr "Sledenje IZKLJUÈENO!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr ""
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr ""
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr ""
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr ""
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 #, fuzzy
 msgid "Trace not supported"
 msgstr "Terminal ne podpira barv"
@@ -2755,24 +2760,24 @@ msgstr "Terminal ne podpira barv"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "Uporabni¹ko ime za ,%s` na %s ,%s%s`:"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Neveljavna glava ,%s%s%s%s%s`"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr ""
 
@@ -2788,7 +2793,7 @@ msgstr ""
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Nalaganje nepopolno."
 
@@ -2811,7 +2816,7 @@ msgstr ""
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Ne moremo dostopati"
 
@@ -3003,15 +3008,15 @@ msgstr "Beremo novièarski èlanek."
 msgid "Sorry, could not load requested news."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr ""
@@ -3020,90 +3025,111 @@ msgstr ""
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Neveljavno ime gostitelja %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "vtiènici je spodletelo."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "Pi¹kot smo pojedli!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+msgid "Can't find common name in certificate"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "Po¹iljamo zahtevek HTTP."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr ""
 
@@ -3116,7 +3142,7 @@ msgstr ""
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3126,7 +3152,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3136,27 +3162,27 @@ msgstr ""
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr ""
 
@@ -3164,7 +3190,7 @@ msgstr ""
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr ""
 
@@ -3348,140 +3374,140 @@ msgstr "Vzdr¾evalec"
 msgid "Host"
 msgstr "Gostitelj"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "Pomnilnik izèrpan, prikaz prekinjen!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Pomnilnik izèrpan, prekinili bomo prenos!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr "*** POMNILNIK IZÈRPAN ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "neznano polje ali povezava"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "tekstovno vnosno polje"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "vnosno polje za geslo"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr ""
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "radijski gumb"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr ""
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr ""
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr ""
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr ""
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr ""
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr ""
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr ""
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr ""
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "gumb za po¹iljanje slike"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "polje za generiranje kljuèa"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr ""
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 #, fuzzy
 msgid "Can't open file for uploading"
 msgstr "Ne moremo odpreti izhodne datoteke!  Prekinitev!"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr ""
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr ""
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr ""
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr ""
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "zlogov"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "Prebrano %s od %s podatkov"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "Prebrano %s podatkov"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/sek."
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr ""
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, fuzzy, c-format
 msgid ", ETA %s"
 msgstr ", ETA %ld sek."
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (Pritisnite ,z` za prenehanje)"
 
@@ -3510,11 +3536,11 @@ msgstr " (Pritisnite ,z` za prenehanje)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "da"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "ne"
 
@@ -3534,7 +3560,7 @@ msgstr "ne"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -3656,31 +3682,31 @@ msgstr " (notranji)"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr ""
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr ""
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminal ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "V tem programu morate uporabljati terminal vt100, 200, ipd."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "Vrsta va¹ega terminala je neznana!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Vnesite vrsto terminala:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "VRSTA TERMINALA JE NASTAVLJENA NA"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3689,7 +3715,7 @@ msgstr ""
 "\n"
 "Usodna napaka se je pojavila v %s Ver. %s\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4169,30 +4195,30 @@ msgstr ""
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Vtiènica Winsock ¾al ni bila najdena."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "MORATE nastaviti veljavno podroèje TMP ali TEMP!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr " imenik"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Nastavitvena datoteka %s ni dostopna.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4203,7 +4229,7 @@ msgstr ""
 "Nabor znakov za Lynx ni bil doloèen.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4214,170 +4240,170 @@ msgstr ""
 "Urejevalna preslikava za Lynx ni bila doloèena.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Datoteka %s za Lynx< ni dostopna.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr ""
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "stanje obstojnih pi¹kotov bo spremenjeno le v naslednji seji."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr ""
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, fuzzy, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s Razlièica %s (%s)\n"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Zgrajena na %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "Pravice raz¹irjanja imajo Univerza v Kansasu, CERN in drugi sodelavci."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "Raz¹irjano pod Splo¹no licenco GNU."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr ""
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr ""
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr ""
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr ""
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr ""
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr ""
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr ""
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr ""
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr ""
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr ""
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr ""
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr ""
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr " v "
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr ""
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "Ne moremo dostopati do imenika."
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr ""
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr ""
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 #, fuzzy
 msgid "Current URL is empty."
 msgstr "Trenutni imenik:"
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr ""
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr " stvarno kazalo"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr ""
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr ""
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr ""
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr ""
 
@@ -4429,354 +4455,354 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr ""
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr ""
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr ""
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 #, fuzzy
 msgid "Novice"
 msgstr "Niè"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 #, fuzzy
 msgid "Intermediate"
 msgstr " (notranji)"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 #, fuzzy
 msgid "as links"
 msgstr "te povezave"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 #, fuzzy
 msgid "show filename"
 msgstr " (slabo ime datoteke)"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 #, fuzzy
 msgid "Directories first"
 msgstr "Podimeniki:"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 #, fuzzy
 msgid "Files first"
 msgstr " najprej."
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr ""
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 #, fuzzy
 msgid "By Name"
 msgstr "Ime:"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 #, fuzzy
 msgid "By Size"
 msgstr "Velikost zlogov:"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 msgid "By Date"
 msgstr ""
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 #, fuzzy
 msgid "By Group"
 msgstr "Skupina"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, fuzzy, c-format
 msgid "Show %s/sec rate"
 msgstr "Prenos podatkov konèan"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 #, fuzzy
 msgid "Accept all types"
 msgstr "Sprejmimo spremembe"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr ""
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Sklici"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr ""
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr ""
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr ""
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr ""
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr ""
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr ""
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr ""
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr ""
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr ""
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr ""
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 msgid "Use locale-based character set"
 msgstr ""
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr ""
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr ""
 
@@ -4785,176 +4811,176 @@ msgstr ""
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr ""
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr ""
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr ""
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr ""
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr ""
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr ""
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 #, fuzzy
 msgid "Underline links"
 msgstr "Skrite povezave:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr ""
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr ""
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr ""
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr ""
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr ""
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr ""
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr ""
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Geslo za novièarski stre¾nik ,%s`:"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 #, fuzzy
 msgid "Preferred media type"
 msgstr "Preneseno %d zlogov"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 msgid "Preferred encoding"
 msgstr ""
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr ""
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr ""
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr ""
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr ""
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr ""
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr ""
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 #, fuzzy
 msgid "Local directory sort order"
 msgstr "Tega imenika ni mogoèe brati."
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr ""
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr ""
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Prenos podatkov konèan"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr ""
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr ""
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr ""
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr ""
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr ""
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Stran z obiskanimi povezavami"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr ""
 
@@ -5068,38 +5094,38 @@ msgstr ""
 msgid "(no name)"
 msgstr "(brez imena)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr ""
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr ""
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Prosim, preberite dokumentacijo v distribuciji"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "za veè pripomb."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr ""
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr ""
 
@@ -5364,34 +5390,34 @@ msgstr ""
 msgid "Upload options:"
 msgstr ""
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr ""
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr ""
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 #, fuzzy
 msgid "unknown restriction"
 msgstr "neznano polje ali povezava"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr ""
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Opis:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr ""
 
diff --git a/po/sv.po b/po/sv.po
index a27aa905..51d96c72 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.6-dev8\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2004-11-27 12:30+0100\n"
 "Last-Translator: Peter Karlsson <peter@softwolves.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -2242,7 +2242,7 @@ msgstr "(Inget namn)"
 msgid "(No value.)"
 msgstr "(Inget värde)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Ingen"
 
@@ -2549,142 +2549,147 @@ msgstr "Kan ej försöka igen utan mellanserverauktorisering! Kontakta serverns an
 msgid "Retrying with proxy authorization information."
 msgstr "Försöker igen med mellanserverauktoriseringsinformation."
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "SSL-fel:värd(%s)!=cert(%s)-Fortsätta?"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: Returmeddelande för stort."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Ange WAIS-fråga: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Försöker ingen som HTTP0-fråga."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "Överförde %d byte"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Dataöverföring färdig"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Fel vid tolkning av rad %d i %s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Adresslistesida"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Bokmärkesfil"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Konfigurationsdefinitioner"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Kakburk"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Aktuella tangentbordsbindningar"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Filhanteringsalternativ"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Hämtningalternativ"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Historiksida"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Listsida"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Lynx.cfg-information"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Konverterade Mosaicbokmärken"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Alternativmeny"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Filbehörighetsalternativ"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Utskriftsalternativ"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Information om det aktuella dokumentet"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "Dina senaste statusradmeddelanden"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Insändningsalternativ"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Använda länkar"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Se även"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "din"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "för körningsalternativ"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "kompileringsalternativ"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 msgid "color-style configuration"
 msgstr "konfigurering av color-style"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "senaste utgåva"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "förhandsversion"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "utvecklingsversion"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2695,7 +2700,7 @@ msgstr ""
 "inkludera en kopia av denna sida."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2704,49 +2709,49 @@ msgstr ""
 "när denna kopia av Lynx kompilerades."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "C=Skapa  D=Hämta  E=Redigera  F=Full meny  M=Ändra  R=Radera  T=Märk  U=Skicka\n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Kunde inte hämta status för aktuell länk!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "Speciell adress endast giltig i menyn för filbehörigheter!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "Externt stöd är just nu deaktiverat."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "Byte av arbetskatalog tillåts ej just nu."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "Radbrytning AV!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "Radbrytning PÅ!"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Tolkning av nästlade tabeller AV! Hämtar om..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Tolkning av nästlade tabeller PÅ! Hämtar om..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr "Skiftning är deaktiverad när radbrytning är aktiv"
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "Spårning stöds ej"
 
@@ -2755,24 +2760,24 @@ msgstr "Spårning stöds ej"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "Användar-id för \"%s\" på %s \"%s%s\":"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "Denna klient kan inte skapa mellanserverauktoriseringsinformation för protokolltyp"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "Denna klient kan inte skapa auktoriseringsinformation för protokolltyp"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Felaktigt huvud \"%s%s%s%s%s\""
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "Mellanserverauktorisering krävs -- försöker igen"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Åtkomst utan auktorisering avvisad -- försöker igen"
 
@@ -2788,7 +2793,7 @@ msgstr "Dokument med POST-data hittades ej i cache. Skicka in igen?"
 msgid "Loading failed, use a previous copy."
 msgstr "Hämtningen misslyckades, använder tidigare exemplar."
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Hämtning ej komplett."
 
@@ -2811,7 +2816,7 @@ msgstr "**** HTAccess: Returnerad status var: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Kan inte komma åt"
 
@@ -3008,15 +3013,15 @@ msgstr "Läser artikel."
 msgid "Sorry, could not load requested news."
 msgstr "Kunde inte hämta begärda artiklar."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "Adressen har en ogiltig port"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "Adresslängden verkar ogiltig"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Kan inte hitta värd %s."
@@ -3025,68 +3030,90 @@ msgstr "Kan inte hitta värd %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Ogiltigt värdnamn %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Kopplar upp %s-anslutning till %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "uttag misslyckades."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "uttag misslyckades: familj %d adress %s port %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Kunde inte koppla upp icke-blockerande anslutning."
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "Uppkoppling misslyckades (för många försök)."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "Kunde inte återställa blockering i uttag."
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "Läsning från uttag misslyckades 180.000 gånger."
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr "Adress innehåller användar-id: %s"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Denna klient innehåller inte stöd för HTTPS-adresser."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "Kan inte ansluta till värd."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "Gör nytt försök; ansluter utan TLS."
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "Kakan har ätits upp!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+#, fuzzy
+msgid "Can't find common name in certificate"
 msgstr "SSL-fel:Hittar inte vanligt namn i certifikat-Fortsätta?"
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL-fel:värd(%s)!=cert(%s)-Fortsätta?"
@@ -3094,24 +3121,24 @@ msgstr "SSL-fel:värd(%s)!=cert(%s)-Fortsätta?"
 # %d = SSL_get_cipher_bits(handle,NULL)
 # %s = SSL_get_cipher_version(handle)
 # %s = SSL_get_cipher(handle)
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Säker %d-bitars HTTP-anslutning med %s (%s)"
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "Sänder HTTP-fråga."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Oväntat skrivfel på nätverket; uppkopplingen avbröts."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP-fråga sänd; väntar på svar."
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Oväntat läsfel på nätverket; uppkopplingen avbröts."
 
@@ -3124,7 +3151,7 @@ msgstr "Oväntat läsfel på nätverket; uppkopplingen avbröts."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "Fick oväntad informationsstatus."
 
@@ -3134,7 +3161,7 @@ msgstr "Fick oväntad informationsstatus."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "Frågan slutförd. Nollställ innehåll."
 
@@ -3144,27 +3171,27 @@ msgstr "Frågan slutförd. Nollställ innehåll."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Fick oväntad \"ej modifierad\"-(304)-status."
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "Omdirigering av POST-innehåll kräver användarens samtycke."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Har POST-innehåll. Behandlar permanent omdirigering som temporär.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Försöker igen med auktoriseringsinformation."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "Visa kroppen för 401-meddelandet?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "Via kroppen för 407-meddelandet?"
 
@@ -3172,7 +3199,7 @@ msgstr "Via kroppen för 407-meddelandet?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "Okänt statussvar från server!"
 
@@ -3360,139 +3387,139 @@ msgstr "Ansvarig"
 msgid "Host"
 msgstr "Värd"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "Minnet slut, visning avbruten!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Minnet slut, avbryter överföring!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** MINNET SLUT ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "okänt fält eller länk"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "textinmatningsfält"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "lösenordsinmatningsfält"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "kryssruta"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "radioknapp"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "sändknapp"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "nollställningsknapp"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "popup-meny"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "dolt formulärfält"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "textinmatningsområde"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "områdesinmatningsfält"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "filinmatningsfält"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "textsändfält"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "bildsändfält"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "nyckelgenerering misslyckades"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "okänt formulärfält"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "Kan inte öppna fil för sändning"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "Skickar %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Hängning upptäckt: TextAnchor-struktur förstörd - föreslår avbrott!"
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "Ombryt rader så att de passar i visat fält?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "Mycket långa rader har ombrutits!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "mycket långa rader har trunkerats!"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "byte"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "Läste %s av %s data"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "Läste %s data"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/s"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr " (avstannad i %s)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ", %s kvar"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (\"z\" avbryter)"
 
@@ -3521,11 +3548,11 @@ msgstr " (\"z\" avbryter)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "ja"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "nej"
 
@@ -3545,7 +3572,7 @@ msgstr "nej"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr "J/N/A/L"
 
@@ -3683,31 +3710,31 @@ msgstr "Intern"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "\"cookie_domain_flag_set\"-fel, avbryter programmet"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Terminalinitiering misslyckades - okänd terminaltyp?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminal ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Du måste använda en vt100-, -200-, etc. -terminal med detta program."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "Din terminaltyp är okänd!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Ange en terminaltyp:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "TERMINALTYP SATT TILL"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3716,7 +3743,7 @@ msgstr ""
 "\n"
 "Ett fatalt fel har uppstått i %s ver. %s\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4193,30 +4220,30 @@ msgstr "Detta meddelande automatgenererades av"
 msgid "No system mailer configured"
 msgstr "E-postprogram inte konfigurerat i systemet"
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Ingen Winsock hittades, ursäkta."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "Du MÅSTE ange ett giltigt TMP- eller TEMP-område!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "Katalogen finns ej"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Konfigurationsfil %s ej tillgänglig.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4227,7 +4254,7 @@ msgstr ""
 "Lynxteckenuppsättningar ej deklarerade.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4238,171 +4265,171 @@ msgstr ""
 "Lynxredigeringskarta ej deklarerad.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Lynxfil %s ej tillgänglig.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Varning:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "varaktiga kakinställningar ändras endast i nästa session."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx: ignorerar okänd teckenuppsättning %s\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s version %s (%s)"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Byggd %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "Upphovsrätten ägs av University of Kansas, CERN, och andra bidragslämnare."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "Distribuerad enligt GNU General Public License."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Se http://lynx.isc.org/ och direkthjälpen för ytterligare information."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "ANVÄNDNING: %s [flaggor] [fil]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Flaggorna är:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: Okänd flagga: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "Internt fel: Ogiltig muslänk %d!"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "En adress angiven av användaren"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "Kodningen multiport/form-data stöds inte ännu! Kan inte skicka."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "Hjälpskärm"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Systemindex"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Ingång till huvudskärm"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr "Det finns inget nästa dokument"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "teckenuppsättning för detta dokumentet explicit deklarerat, ursäkta..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "byt katalog till:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "En del av sökvägen är inte en katalog"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "lyckades inte byta katalog"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "Tolkar om dokumentet med aktuella inställningar..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Fatalt fel - kunde inte öppna utdatafil %s\n"
 
 # Kollas!
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr "Tabellcentrering aktiverad."
 
 # Kollas!
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr "Tabellcentrering inaktiverad."
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 msgid "Current URL is empty."
 msgstr "Nuvarande adress är tom."
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr "Misslyckades kopiera till urklipp."
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr "Dokumentadress lagd i urklipp."
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr "Länkadress lagd i urklipp."
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr "Ingen adress i urklipp."
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-index-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: Kan inte komma åt startfil"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: Startfilen hittades inte eller är varken text/html eller text/plain"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      Avslutar..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-mer-"
 
@@ -4466,345 +4493,345 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "Inlägget har ingen ursprunglig text!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "se/redigera B)okmärkesfiler"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "B)okmärkesfil: "
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr "PÅ"
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr "AV"
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr "ALDRIG"
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr "ALLTID"
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr "ignorera"
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr "fråga användaren"
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr "ta emot alla"
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr "ALLTID AV"
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr "ENDAST FÖR LOKALA FILER"
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr "ALLTID PÅ"
 
 # Numeriskt tangentbord
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr "Siffror som pilar"
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr "Numrerade länkar"
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr "Numrerade länkar och formulärfält"
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr "Numrerade formulärfält"
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr "Skilj inte VERSALER och gemener"
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr "Skilj VERSALER och gemener"
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr "fråga som vanligt"
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr "svara alltid ja"
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr "svara alltid nej"
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 msgid "Novice"
 msgstr "Nybörjare"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 msgid "Intermediate"
 msgstr "Amatör"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr "Avancerad"
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr "Efter första besök"
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr "Efter första användning, omvänt"
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr "Som besöksträd"
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr "Efter senaste besök"
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr "Efter senaste besök, omvänt"
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr "avslappnad (TagSoup-läge)"
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr "strikt (SortaSGML-läge)"
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr "som etiketter"
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 msgid "as links"
 msgstr "som länkar"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 msgid "show filename"
 msgstr "visa filnamn"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr "NORMAL"
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr "AVANCERAD"
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 msgid "Directories first"
 msgstr "Kataloger först"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 msgid "Files first"
 msgstr "Filer först"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr "Blandad visning"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 msgid "By Name"
 msgstr "Efter namn"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr "Efter typ"
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr "Efter storlek"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 msgid "By Date"
 msgstr "Efter datum"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr "Efter läge"
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr "Efter användare"
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 msgid "By Group"
 msgstr "Efter grupp"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr "Visa inte hastighe"
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, c-format
 msgid "Show %s/sec rate"
 msgstr "Visa hastighet som %s/s"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr "Visa %s/s, tid kvar"
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr "Godta lynx interna typer"
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr "Godta även typer från lynx.cfg"
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr "Godta även användarens typer"
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr "Godta även systemets typer"
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 msgid "Accept all types"
 msgstr "Godta alla typer"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr "gzip"
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr "deflate"
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr "compress"
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr "bzip2"
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr "Alla"
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Använd %s för att nå alternativmenyn!"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr "(inställningar markerade med (!) kommer ej att sparas)"
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Allmänna inställningar"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "Användarläge"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Redigeringsprogram"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "Söktyp"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr "Säkerhet och personlig integritet"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Kakor"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr "Fråga för ogiltiga kakor"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr "Fråga för SSL"
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "Tangentbordsindata"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Numeriskt tangentbord"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Emacstangenter"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "VI-tangenter"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr "Radredigeringsstil"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "Tangentbordsmall"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Visning och teckenuppsättning"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 msgid "Use locale-based character set"
 msgstr "Lokalbaserad teckenuppsättning"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Teckenuppsättning för visning"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "Förvald dokumentteckenuppsättning"
 
@@ -4813,173 +4840,173 @@ msgstr "Förvald dokumentteckenuppsättning"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "CJK-läge"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "Rå 8-bitars"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X-display"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "Dokumentutseende"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Visa färg"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Visa markör"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 msgid "Underline links"
 msgstr "Stryk under länkar"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "Visa rullningslist"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "Popup för valfält"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "HTML-felåterhämtning"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Visa bilder"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Pratsamma bilder"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "Frågehuvud överfört till fjärrservrar"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Egen e-postadress"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Lösenord för diskussionsvärd \"%s\":"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 msgid "Preferred media type"
 msgstr "Önskad mediatyp"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 msgid "Preferred encoding"
 msgstr "Önskade kodningsform"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Önskad dokumentteckenuppsättning"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Önskade dokumentspråk"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "Webbläsaridentifiering"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "Visning av och åtkomst till filer"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "Sortering för ftp-kataloger"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Sortering för lokala kataloger"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "Sortering för lokala kataloger"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Visa punktfiler"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "Exekveringslänkar"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Visa överföringshastighet"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "Speciella filer och skärmar"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "Multibokmärken"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "Se/ändra bokmärkesfiler"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Gå till multibokmärkesmenyn"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "Bokmärkesfil"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Besökta sidor"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr "Visa filen "
 
@@ -5099,38 +5126,38 @@ msgstr "Lynx: kan inte börja, CERN-regelfilen %s ej tillgänglig\n"
 msgid "(no name)"
 msgstr "(inget namn)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Mer än %d staplade lynx.cfg-inkluderingar -- kanske en slinga?!?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Sista försökta inkludering var \"%s\",\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "inkluderad från \"%s\".\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "Följande läses från din lynx.cfg-fil."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Se distributionens"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "för ytterligare kommentarer."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "HÄMTA OM ÄNDRINGARNA"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "Din primära konfiguration"
 
@@ -5399,33 +5426,33 @@ msgstr "Skicka till:"
 msgid "Upload options:"
 msgstr "Insändningsalternativ:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr "Adress till hämtat dokument lagt i urklipp."
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "Oväntat åtkomstprotokoll för denna adresstyp."
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "För många temporärfiler"
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "okänd begränsning"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "Inga begränsningar satta.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Satta begränsningar:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "Hittar inte hemkatalogen (HOME)"
 
diff --git a/po/tr.po b/po/tr.po
index 76b49025..9aeb3e5e 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx-2.8.6-dev8\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2004-11-19 22:25+0200\n"
 "Last-Translator: Eyüp Hakan Duran <hakan_duran@hotmail.com>\n"
 "Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
@@ -2244,7 +2244,7 @@ msgstr "(Ýsim yok.)"
 msgid "(No value.)"
 msgstr "(Deðer yok.)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Hiçbiri"
 
@@ -2551,142 +2551,147 @@ msgstr "Vekil(proxy) yetkilendirmesi yeniden denenemez! Sunucunun site yöneticis
 msgid "Retrying with proxy authorization information."
 msgstr "Vekil(proxy) yetkilendirme bilgisiyle yeniden deneniyor."
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "SSL hatasý:makina(%s)!=sert(%s)-Devam edilsin mi?"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: Dönüþ mesajý çok büyük."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "WAIS sorgusu giriniz: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "HTTP0 istemi olarak yeniden deneniyor."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "%d bayt aktarýldý"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Veri aktarýmý tamamlandý"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "%2$s satýrdan %1$d.'sinin iþlenmesinde hata\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Adres Listesi Sayfasý"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Yer imi dosyasý"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Ayar Tanýmlarý"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Çerez kavanozu"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Mevcut Tuþ Eþlemi"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Dosya Yönetim Seçenekleri"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Ýndirme Seçenekleri"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Tarihçe Sayfasý"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Liste Sayfasý"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Lynx.cfg Bilgileri"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Dönüþtürülmüþ Mosaic Sýcaklistesi"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Seçenekler Menüsü"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Dosya Ýzin Seçenekleri"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Yazdýrma Seçenekleri"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Mevcut dosya bilgileri"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "Son durumsatýrý mesajlarýnýz"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Yükleme Seçenekleri"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Uðranmýþ Linkler Sayfasý"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Ayrýca bakýnýz"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "sizin"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "yürütüm süresi seçenekleri için"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "derleme süresi seçenekleri"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 msgid "color-style configuration"
 msgstr "renk stili ayarlama"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "son daðýtým"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "daðýtým öncesi sürüm"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "geliþtirme sürümü"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2697,7 +2702,7 @@ msgstr ""
 "kopyasýný da dahil ediniz."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2706,49 +2711,49 @@ msgstr ""
 "derleme süresi tanýmlarý olarak kullanýlmýþtýr."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "..Oluþtur(C)  Ýndir(D)  Düzenle(E)  Tam menü(F)  Deðiþtir(M)  Çýkart(R)  Ýþaretle(T)  Yükle(U)     \n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Mevcut linkin durumu elde edilemedi!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "Özel URL yalnýzca güncel Dosya Ýzin menüsünden geçerlidir!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "Harici destek halen devre dýþý..."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "Çalýþma dizinini deðiþtirme þu an devre dýþý."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "Satýrsarma KAPALI!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "Satýrsarma AÇIK!"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Ýçice geçmiþ-tablo ayrýþtýrma KAPATILDI!  Yeniden yükleniyor..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Ýçice geçmiþ-tablo ayrýþtýrma AÇILDI!  Yeniden yükleniyor..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr "Satýr-sarma etkinken kaydýrma (shifting) devre dýþýdýr"
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "Ýz(leme) desteklenmiyor"
 
@@ -2757,24 +2762,24 @@ msgstr "Ýz(leme) desteklenmiyor"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "%2$s '%3$s%4$s'deki '%1$s' için kullanýcý adý:"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "Bu istemci þema için vekil(proxy) yetkilendirme bilgisi oluþturmayý bilmiyor"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "Bu istemci þema için yetkilendirme bilgisi oluþturmayý bilmiyor"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Geçersiz baþlýk '%s%s%s%s%s'"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "Vekil(proxy) yetkilendirmesi gerekli -- yeniden deneniyor"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Yetkilendirilmeden eriþim reddedildi -- yeniden deneniyor"
 
@@ -2790,7 +2795,7 @@ msgstr "Önbellekte POST içerikli belge bulunmadý.  Yeniden gönderilsin mi?"
 msgid "Loading failed, use a previous copy."
 msgstr "Yükleme baþarýsýz, önceki bir kopyayý kullanýn."
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Yükleme tamamlanmadý."
 
@@ -2813,7 +2818,7 @@ msgstr "**** HTAccess: Dönen durum: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Eriþilemiyor"
 
@@ -3010,15 +3015,15 @@ msgstr "Haber mesajý okunuyor."
 msgid "Sorry, could not load requested news."
 msgstr "Üzgünüm, istenen haber yüklenemedi."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "Adres portu geçersiz"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "Adres uzunluðu geçersiz görünüyor"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "%s adlý karþý makina konumlandýrýlamýyor."
@@ -3027,90 +3032,112 @@ msgstr "%s adlý karþý makina konumlandýrýlamýyor."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Geçersiz makina adý %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "%2$s'e %1$s baðlantýsý kuruluyor"
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "soket baþarýsýz."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "soket baþarýsýz: aile %d adres %s port %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Baðlantý engelsizleþtirilemedi (non-blocking)."
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "Baðlantý baþarýsýz (çok sayýda yeniden deneme)."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "Soket engellemeye (blocking) geri yüklenemedi."
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "Soket okunmasý 180,000 kez baþarýsýz."
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr "Adres bir kullanýcý adý içeriyor: %s"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Bu istemci HTTPS URL'ler için destek içermiyor."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "Karþý makinaya baðlanýlamadý."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "Baðlantý, TLS'siz tekrar deneniyor."
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "Çerez yendi!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+#, fuzzy
+msgid "Can't find common name in certificate"
 msgstr "SSL hatasý:sertifikada ortak ad bulunamadý-Devam?"
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL hatasý:makina(%s)!=sert(%s)-Devam edilsin mi?"
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Güvenli %d-bit %s (%s) HTTP baðlantýsý"
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "HTTP istemi gönderiliyor."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Umulmadýk aða yazma hatasý; baðlantý yarýda kesildi."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP istemi gönderildi; yanýt bekleniyor."
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Umulmadýk aða yazma hatasý; baðlantý yarýda kesildi."
 
@@ -3123,7 +3150,7 @@ msgstr "Umulmadýk aða yazma hatasý; baðlantý yarýda kesildi."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "Umulmadýk Bilgisel Durum alýndý."
 
@@ -3133,7 +3160,7 @@ msgstr "Umulmadýk Bilgisel Durum alýndý."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "Ýstem karþýlandý.  Ýçeriði temizle."
 
@@ -3143,27 +3170,27 @@ msgstr "Ýstem karþýlandý.  Ýçeriði temizle."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Umulmadýk 304 Deðiþtirilmedi durumu alýndý."
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "POST içeriðinin yeniden yönlendirilmesi kullanýcý onayý gerektirir."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "POST içeriði mevcut.  Kalýcý Yeniden Yönlendirmeye Geçici muamelesi yapýlýyor.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Eriþim yetkilendirme bilgisiyle yeniden deneniyor."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "401 mesaj gövdesi gösterilsin mi?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "407 mesaj gövdesi gösterilsin mi?"
 
@@ -3171,7 +3198,7 @@ msgstr "407 mesaj gövdesi gösterilsin mi?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "Sunucudan bilinmeyen durum yanýtý!"
 
@@ -3359,139 +3386,139 @@ msgstr "Yönetici"
 msgid "Host"
 msgstr "Bilgisayar"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "Bellek tükendi, görüntü kesildi!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Bellek tükendi, aktarým kesilecek!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** BELLEK TÜKENDÝ ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "bilinmeyen alan ya da link"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "metin giriþ alaný"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "parola giriþ alaný"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "onay kutusu"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "radyo düðmesi"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "gönderme düðmesi"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "temizleme düðmesi"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "açýlýr menü"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "gizli form alaný"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "metin giriþ alaný"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "erim giriþ alaný"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "dosya giriþ alaný"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "metin-gönderme alaný"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "resim-gönderme alaný"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "keygen alaný"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "bilinmeyen form alaný"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "Yüklemek için dosya açýlamýyor."
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "%s gönderiliyor"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Takýlma Saptandý: TextAnchor struct bozuk - sonlandýrmanýz önerilir!"
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "Görüntülenen alana sýðmak üzere satýrlar sarmalansýn mý?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "Çok uzun satýrlar sarmalandý!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "Çok uzun satýrlarýn sonundan kýrpýldý!"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "bayt"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "%2$s verinin %1$s'i okundu"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "Verinin %s'i okundu"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/sn"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr " (%s süresince durakladý)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ", ETA %s"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (Yarýda kesmek için 'z'ye basýnýz)"
 
@@ -3520,11 +3547,11 @@ msgstr " (Yarýda kesmek için 'z'ye basýnýz)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "evet"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "hayýr"
 
@@ -3544,7 +3571,7 @@ msgstr "hayýr"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr "(E/H/Daima/Asla)"
 
@@ -3681,31 +3708,31 @@ msgstr "Dahili"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "cookie_domain_flag_set hatasý, program yarýda kesiliyor"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Uçbirim ön deðer atamasý baþarýsýz - bilinmeyen uçbirim türü?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Uçbirim ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Bu programla bir vt100, 200 vb. uçbirim kullanmalýsýnýz."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "Uçbirim türünüz bilinmiyor!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Bir uçbirim türü giriniz:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "UÇBÝRÝM TÜRÜ AYARI"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3714,7 +3741,7 @@ msgstr ""
 "\n"
 "%2$s Sür. %1$s'de ölümcül bir hata oluþtu\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4191,30 +4218,30 @@ msgstr "Bu mesajý otomatik olarak oluþturan"
 msgid "No system mailer configured"
 msgstr "Ayarlanmýþ sistem postacýsý yok"
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Winsock bulunamadý, üzgünüm."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "Geçerli bir TMP ya da TEMP alaný tanýmlamalýsýnýz!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "Böyle bir dizin yok"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Ayarlama dosyasý %s temin edilemiyor.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4225,7 +4252,7 @@ msgstr ""
 "Lynx karakter kümeleri bildirilmemiþ.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4236,169 +4263,169 @@ msgstr ""
 "Lynx düzenleme eþlemi bildirilmemiþ.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Lynx dosyasý %s temin edilemiyor.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Uyarý:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "kalýcý çerezler durumu, yalnýzca gelecek oturumda deðiþecek."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx: tanýnmayan karakterkümesi=%s yoksayýlýyor\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s Sürüm %s (%s)"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "%s %s %s üzerine yapýlandýrýldý\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "Telif hakklarý Kansas Üniversitesi, CERN ve diðer katýlýmcýlar tarafýndan (saklý) tutulmaktadýr."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "GNU Genel Kamu Lisansý altýnda daðýtýlmaktadýr."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Daha fazla bilgi için http://lynx.isc.org/ ve çevrim içi yardýma bakýnýz."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "KULLANIM: %s [seçenekler] [dosya]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Seçenekler:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: Geçersiz Seçenek: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "Dahili hata: Geçersiz fare linki %d!"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "Kullanýcý tarafýndan belirtilmiþ bir URL"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "Enctip çok parçalý/form verisi henüz desteklenmiyor!  Gönderilemez."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "Yardým Ekraný"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Sistem Ýndeksi"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Ana ekrana giriþ"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr "Sonrasýnda baþka belge yok"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "bu belge için karakterkümesi özgün þekilde belirtilmiþtir, üzgünüm..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "hangi dizine cd:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "Yolun bileþenlerinden biri dizin deðildir"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "dizin deðiþtirme baþarýsýz"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "Mevcut ayarlarla belge yeniden ayrýþtýrýlýyor..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Ölümcül hata - çýktý dosyasý %s açýlamýyor\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr "TABLO ortala(mayý) etkinleþtir."
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr "TABLO ortala(mayý) devre dýþý býrak."
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 msgid "Current URL is empty."
 msgstr "Mevcut URL boþ."
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr "Panoya kopyalama baþarýsýz."
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr "Belge URL'sini panoya koy."
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr "Link URL'sini panoya koy."
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr "Panoda URL yok."
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-indeks-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: baþlat dosyasýna (startfile) eriþilemiyor"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: Baþlat dosyasý bulunamýyor ya da html-metin ya da salt-metin deðil"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      Kapanýyor..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-devam-"
 
@@ -4462,344 +4489,344 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "Mesajda orijinal metin yok!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "Yer imi(B) dosyalarýný gözden geçir/düzenle"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "Yer imi(B) dosyasý: "
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr "AÇIK"
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr "KAPALI"
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr "ASLA"
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr "HER ZAMAN"
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr "yoksay"
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr "kullanýcýya sor"
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr "tümünü kabul et"
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr "HER ZAMAN KAPALI"
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr "YALNIZCA YEREL DOSYALAR ÝÇÝN"
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr "HER ZAMAN AÇIK"
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr "Rakamlar oklar gibi davranýrlar"
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr "Linkler numaralandý"
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr "Linkler ve form alanlarý numaralandý"
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr "Form alanlarý numaralandý"
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr "Büyük/küçük harf duyarsýz"
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr "Büyük/küçük harf duyarlý"
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr "normal bilgi istemi"
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr "evet-yanýtýna zorla"
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr "hayýr-yanýtýna zorla"
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 msgid "Novice"
 msgstr "Acemi"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 msgid "Intermediate"
 msgstr "Orta düzey"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr "Ýleri düzey"
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr "Ýlk Ziyaretle"
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr "Ýlk Ziyaretle-Tersten"
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr "Ziyaret Aðacý Gibi"
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr "Son Ziyaretle"
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr "Son Ziyaretle-Tersten"
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr "gevþek (TagSoup kipi)"
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr "katý (SortaSGML kipi)"
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr "etiket gibi"
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 msgid "as links"
 msgstr "link gibi"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 msgid "show filename"
 msgstr "dosya adýný göster"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr "STANDART"
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr "ÝLERÝ DÜZEY"
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 msgid "Directories first"
 msgstr "Önce dizinler"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 msgid "Files first"
 msgstr "Önce dosyalar"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr "Karýþýk stil"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 msgid "By Name"
 msgstr "Ýsimle"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr "Türle"
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr "Boyutla"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 msgid "By Date"
 msgstr "Tarihle"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr "Kiple"
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr "Kullanýcýyla"
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 msgid "By Group"
 msgstr "Grupla"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr "Hýzý gösterme"
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, c-format
 msgid "Show %s/sec rate"
 msgstr "%s/sn hýzýný göster"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr "%s/sn'yi göster, ETA"
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr "Lynx'in dahili türlerini kabul et"
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr "Lynx cfg'nin türlerini de kabul et"
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr "Kullanýcýnýn türlerini de kabul et"
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr "Sistemin türlerini de kabul et"
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 msgid "Accept all types"
 msgstr "Tüm türleri kabul et"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr "gzip"
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr "söndür"
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr "sýkýþtýr"
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr "bzip2"
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr "Tümü"
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Seçenekler menüsünü çaðýrmak için %s kullanýnýz!"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr "((!) ile iþaretlenmiþ seçenekler kaydedilmeyecek)"
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Genel Tercihler"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "Kullanýcý kipi"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Düzenleyici"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "Arama Tipi"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr "Güvenlik ve Mahremiyet"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Çerezler"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr "Geçersiz Çerez Bilgi Ýstemi"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr "SSL Bilgi Ýstemi"
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "Klavye Girdisi"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Mini klavye(keypad) kipi"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Emacs tuþlarý"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "VI tuþlarý"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr "Satýr düzenleme stili"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "Klavye yerleþimi"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Görüntüleme ve Karakter Kümesi"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 msgid "Use locale-based character set"
 msgstr "Yerel tabanlý karakter kümesini kullan"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Karakter kümesini görüntüle"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "Varsayýlan belge karakter kümesi"
 
@@ -4808,173 +4835,173 @@ msgstr "Varsayýlan belge karakter kümesi"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "CJK kipi"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "Ham 8-bit"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X Görüntüleme"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "Belge Görünümü"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Renkleri göster"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Ýmleci göster"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 msgid "Underline links"
 msgstr "Linklerin altý çizili"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "Kaydýrma çubuðunu göster"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "Seçme alanlar için açýlýrlar(popups)"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "HTML hata kurtarma"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Resimleri göster"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Resimleri dillendir"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "Baþlýklar Karþý Sunuculara Aktarýldý"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Kiþisel mektup adresi"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "'%s' adlý haber makinasý için parola:"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 msgid "Preferred media type"
 msgstr "Tercih edilen ortam türü"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 msgid "Preferred encoding"
 msgstr "Tercih edilen kodlama"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Tercih edilen belge karakter kümesi"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Tercih edilen belge dili"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "Kullanýcý-Ajaný baþlýðý"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "Dosya Listeleme ve Eriþim"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "FTP sýralama ölçütleri"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Yerel dizin sýralama ölçütleri"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "Yerel dizin sýralama ölçütleri"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Nokta dosyalarý göster"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "Ýcra linkleri"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Aktarým hýzýný göster"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "Özel Dosyalar ve Ekranlar"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "Çoklu-yer imleri"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "Yer Ými dosyalarýný gözden geçir/düzenle"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Çoklu-yer imi menüsüne git"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "Yer Ýmleri dosyasý"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Uðranan Sayfalar"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr "Dosyayý görüntüle"
 
@@ -5094,38 +5121,38 @@ msgstr "Lynx: baþlayamýyor, CERN kurallarý dosyasý %s temin edilemiyor\n"
 msgid "(no name)"
 msgstr "(isimsiz)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "lynx.cfg içermeleri, %d'den çok içiçe geçmiþ -- belki bir döngü olmasýn?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Son kalkýþýlan içerme '%s' idi,\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "'%s'den içerilmiþti.\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "Aþaðýdaki, lynx.cfg dosyanýzdan okunmuþtur."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Lütfen daha fazla yorum için"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "daðýtýmý okuyunuz."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "DEÐÝÞÝKLÝKLERÝ YENÝDEN YÜKLE"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "Birincil ayarlarýnýz"
 
@@ -5394,33 +5421,33 @@ msgstr "Yüklenecek yer:"
 msgid "Upload options:"
 msgstr "Yükleme seçenekleri:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr "Belge indirme URL'sini panoya koy."
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "Bu URL þemasý için umulmadýk eriþim protokolü."
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "Çok sayýda geçici dosya"
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "bilinmeyen kýsýtlama"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "Hiçbir kýsýtlama kurulmamýþ.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Kurulmuþ kýsýtlamalar:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "EV dizini bulunamýyor"
 
diff --git a/po/uk.po b/po/uk.po
index b500d4aa..3cb13217 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,13 +3,13 @@
 # Volodymyr M. Lisivka <lvm@mystery.lviv.net>, 2003
 # Dmytro O. Redchuk <dor@kiev-online.net>, 2001-2002
 # Olexander Kunytsa <kunia@snark.ukma.kiev.ua>, 2000-2001
-# @Id: uk.po 1.18 Mon, 29 May 2006 15:44:54 -0700 dickey @
+# @Id: uk.po 1.19 Thu, 31 Aug 2006 16:37:53 -0700 dickey @
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.5pre9\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2003-01-22 18:21EEST\n"
 "Last-Translator: Volodymyr M. Lisivka <lvm@mystery.lviv.net>\n"
 "Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
@@ -2310,7 +2310,7 @@ msgstr "(âÅÚ ¦ÍÅΦ.)"
 msgid "(No value.)"
 msgstr "(âÅÚ ÚÎÁÞÅÎÎÑ.)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "î¦ÞÏÇÏ"
 
@@ -2621,150 +2621,155 @@ msgstr "îÅÍÏÖÌÉ×Ï ÐÏ×ÔÏÒÉÔÉ ÐÒÏËÓ¦-Á×ÔÏÒÉÚÁæÀ!  ú×ÅÒΦÔØÓÑ ÄÏ ×ÅÂÍÁÊÓÔÒÁ."
 msgid "Retrying with proxy authorization information."
 msgstr ""
 
+#: LYMessages.c:796
+#, c-format
+msgid "SSL error:%s-Continue?"
+msgstr ""
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr ""
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "÷×ÅĦÔØ ÚÁÐÉÔ WAIS: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "ðÏ×ÔÏÒÀ¤ÍÏ ÑË HTTP0 ÚÁÐÉÔ."
 
 # ÐÅÒÅËÁÞÁÎÏ - ÂÏ ÎÅ ÚÎÁÀ, ËÕÄÉ, Õ ÑËÉÊ Â¦Ë.
 # ÐÅÒÅËÁÞÁÎÏ - ÂÏ ÎÅ ÚÎÁÀ, ËÕÄÉ, Õ ÑËÉÊ Â¦Ë.
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "ðÅÒÅËÁÞÁÎÏ %d ÂÁÊÔ¦×"
 
 # ÐÅÒÅËÁÞÕ×ÁÎÎÑ - ÂÏ ÎÅ ÚÎÁÀ, ËÕÄÉ, Õ ÑËÉÊ Â¦Ë.
 # (×ÖÅ ËÒÁÝÅ "ÐÅÒÅÄÁ×ÁÎÎÑ", ÂÏ ÐÅÒÅÄÁÞÁ - ÎÅ ÚÏ×Ó¦Í ÐÒÏÃÅÓ, ÎÁÞÅ)
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "ðÅÒÅËÁÞÕ×ÁÎÎÑ ÄÁÎÉÈ ÚÁ×ÅÒÛÅÎÏ."
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "ðÏÍÉÌËÁ ÏÐÒÁÃØÏ×Õ×ÁÎÎÑ ÒÑÄËÁ %d Ú %s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "óÔÏÒ¦ÎËÁ ÓÐÉÓËÕ ÁÄÒÅÓ"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "æÁÊÌ ÚÁËÌÁÄÉÎÏË"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "ëÏÎƦÇÕÒÁæÊΦ ×ÉÚÎÁÞÅÎÎÑ"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Jar ÄÌÑ ëÏÒÖÉ˦×"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr ""
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "ïÐÅÒÁæ§ Ú ÆÁÊÌÁÍÉ"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "ðÁÒÁÍÅÔÒÉ óËÁÞÕ×ÁÎÎÑ"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "óÔÏÒ¦ÎËÁ ¶ÓÔÏÒ¦§"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "óÔÏÒ¦ÎËÁ ÓÐÉÓËÕ"
 
 # msgstr "IÎÆÏÒÍÁÃ¦Ñ lynx.cfg"
 # msgstr "IÎÆÏÒÍÁÃ¦Ñ lynx.cfg"
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "¶ÎÆÏÒÍÁÃ¦Ñ ÝÏÄÏ Lynx.cfg"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "úËÏÎ×ÅÒÔÏ×ÁÎÉÊ Mosaic Hotlist"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "íÅÎÀ ÐÁÒÁÍÅÔÒ¦×"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "ðÁÒÁÍÅÔÒÉ ÐÒÁ× ÄÏÓÔÕÐÕ ÄÏ ÆÁÊ̦×"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "ðÁÒÁÍÅÔÒÉ ÄÒÕËÕ"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "¶ÎÆÏÒÍÁÃ¦Ñ ÐÒÏ ÐÏÔÏÞÎÉÊ ÄÏËÕÍÅÎÔ"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "ïÓÔÁÎΦ ÐÏצÄÏÍÌÅÎÎÑ ÓÔÁÔÕÓÎÏÇÏ ÒÑÄËÕ"
 
 # * Yuri Syrota <rasta@renome.rovno.ua>
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "ðÁÒÁÍÅÔÒÉ ×É×ÁÎÔÁÖÅÎÎÑ"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "óÔÏÒ¦ÎËÁ צÄצÄÁÎÉÈ ÐÏÓÉÌÁÎØ"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "äÉ×. ÔÁËÏÖ"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "÷ÁÛ"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr ""
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "ÐÁÒÁÍÅÔÒÉ ÞÁÓÕ ËÏÍЦÌÑæ§"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 #, fuzzy
 msgid "color-style configuration"
 msgstr "÷ÁÛÁ ÏÓÎÏ×ÎÁ ËÏÎƦÇÕÒÁæÑ"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "ÏÓÔÁÎÎ¦Ê ÒÅ̦Ú"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "ÐÏÐÅÒÅÄÎÑ ×ÅÒÓ¦Ñ"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "ÒÏÚÒÏÂÎÉÃØËÁ ×ÅÒÓ¦Ñ"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2772,58 +2777,58 @@ msgid ""
 msgstr ""
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
 msgstr ""
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr ""
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr ""
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr ""
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr ""
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "úÁÐÕÓË Ð¦ÄÐÒÏÃÅÓ¦× ÎÁÒÁÚ¦ ÚÁÂÏÒÏÎÅÎÏ."
 
 # "ÚÁ×ÅÒÔÁÎÎÑ" - ÃÅ *ÎÁÚÁÄ*, Á ÐÅÒÅÎÏÓ ÐÏÇÁÎÏ
 # (ÂÏ ËÒÁÝÅ ÐÅÒÅÎÅÓÅÎÎÑ, ÁÌÅ ÐÅÒÅÎÅÓÅÎÎÑ ÔÅÖ ÐÏÇÁÎÏ)
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "ðÅÒÅÎÏÓ ÒÑÄË¦× ÷éíëîåîï!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "ðÅÒÅÎÏÓ ÒÑÄË¦× õ÷¶íëîåîï!"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "òÅÖÉÍ Raw 8-bit ÞÉ CJK ÷éíëîåîï! ðÅÒÅÚÁ×ÁÎÔÁÖÕ¤ÍÏ..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "òÅÖÉÍ Raw 8-bit ÞÉ CJK õ÷¶íëîåîï! ðÅÒÅÚÁ×ÁÎÔÁÖÕ¤ÍÏ..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr ""
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "ôÅÒͦÎÁÌ ÎŠЦÄÔÒÉÍÕ¤ ËÏÌØÏÒÉ"
 
@@ -2832,24 +2837,24 @@ msgstr "ôÅÒͦÎÁÌ ÎŠЦÄÔÒÉÍÕ¤ ËÏÌØÏÒÉ"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "¶Í'Ñ ËÏÒÉÓÔÕ×ÁÞÁ ÄÌÑ '%s' ÎÁ %s '%s%s':"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "îÅצÒÎÉÊ ÚÁÇÏÌÏ×ÏË '%s%s%s%s%s'"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "ðÏÔÒ¦ÂÎÁ Á×ÔÏÒÉÚÁÃ¦Ñ ÎÁ ÐÒÏËÓ¦ -- ÐÒÏÂÕ¤ÍÏ ÝÅ"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "äÏÓÔÕÐ ÂÅÚ Á×ÔÏÒÉÚÁæ§ ÚÁÂÏÒÏÎÅÎÉÊ -- ÐÒÏÂÕ¤ÍÏ ÝÅ"
 
@@ -2865,7 +2870,7 @@ msgstr ""
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "úÁ×ÁÎÔÁÖÅÎÎÑ ÎÅ ÚÁ×ÅÒÛÅÎÏ."
 
@@ -2888,7 +2893,7 @@ msgstr ""
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "îÅ ÍÏÖÕ Ä¦ÓÔÁÔÉÓÑ"
 
@@ -3089,15 +3094,15 @@ msgstr "ïÔÒÉÍÕ¤ÍÏ ÓÔÁÔÔÀ."
 msgid "Sorry, could not load requested news."
 msgstr "÷ÉÂÁÞÔÅ, ÎÅ ×ÄÁÌÏÓÑ ×ÉÔÑÇÔÉ ÂÁÖÁΦ ÎÏ×ÉÎÉ."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "áÄÒÅÓÁ ÍÁ¤ ÎÅצÒÎÏÇÏ ÐÏÒÔÕ"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "äÏ×ÖÉÎÁ ÁÄÒÅÓÉ, ÓÈÏÖÅ, ÎÅצÒÎÁ"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "îÅ ÍÏÖÕ ÚÎÁÊÔÉ ×¦ÄÄÁÌÅÎÉÊ ÓÅÒ×ÅÒ %s."
@@ -3106,90 +3111,111 @@ msgstr "îÅ ÍÏÖÕ ÚÎÁÊÔÉ ×¦ÄÄÁÌÅÎÉÊ ÓÅÒ×ÅÒ %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "îÅÐÒÁ×ÉÌØÎÅ ¦Í'Ñ ÍÁÛÉÎÉ %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "÷ÓÔÁÎÏ×ÌÀ¤ÍÏ %s Ú'¤ÄÎÁÎÎÑ ÄÏ %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "ú'¤ÄÎÁÔÉÓÑ ÎÅ ×ÄÁÌÏÓÑ (ÚÁÂÁÇÁÔÏ ÓÐÒÏÂ)."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "ãÅÊ Ë̦¤ÎÔ ÎÅ ÍÁ¤ ЦÄÔÒÉÍËÉ ÄÌÑ HTTPS URL'¦×."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "îÅÍÏÖÌÉ×Ï Ð¦Ä'¤ÄÎÁÔÉÓÑ ÄÏ ×¦ÄÄÁÌÅÎÏÇÏ ÓÅÒ×ÅÒÁ."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "÷ÓÔÁÎÏ×ÌÀ¤ÍÏ %s Ú'¤ÄÎÁÎÎÑ ÄÏ %s"
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "ðÒÏËÏ×ÔÎÕÌÉ ËÏÒÖÉËÁ!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+msgid "Can't find common name in certificate"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "îÁÄÓÉÌÁ¤ÍÏ ÚÁÐÉÔ HTTP."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "îÅÓÐÏĦ×ÁÎÁ ÐÏÍÉÌËÁ ÚÁÐÉÓÕ ÄÏ ÍÅÒÅÖ¦; Ú'¤ÄÎÁÎÎÑ Ï¦Ò×ÁÎÅ."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP ÚÁÐÉÔÁ ÎÁĦÓÌÁÎÏ; ÞÅËÁ¤ÍÏ ÎÁ צÄÐÏצÄØ."
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "îÅÓÐÏĦ×ÁÎÁ ÐÏÍÉÌËÁ ÞÉÔÁÎÎÑ ¦Ú ÍÅÒÅÖ¦; Ú'¤ÄÎÁÎÎÑ Ï¦Ò×ÁÎÅ."
 
@@ -3202,7 +3228,7 @@ msgstr "îÅÓÐÏĦ×ÁÎÁ ÐÏÍÉÌËÁ ÞÉÔÁÎÎÑ ¦Ú ÍÅÒÅÖ¦; Ú'¤ÄÎÁÎÎÑ Ï¦Ò×ÁÎÅ."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3212,7 +3238,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3222,27 +3248,27 @@ msgstr ""
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "ïÔÒÉÍÁÎÏ ÎÅÓÐÏĦ×ÁÎÏÇÏ ÓÔÁÔÕÓÁ 304 Not Modified."
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "ðÅÒÅÎÁÐÒÁ×ÌÅÎÎÑ ×ͦÓÔÕ POST ×ÉÍÁÇÁ¤ ÄÏÚ×ÏÌÕ ËÏÒÉÓÔÕ×ÁÞÁ."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "ðÏËÁÚÁÔÉ ÐÏצÄÏÍÌÅÎÎÑ ËÏÄÕ 401?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "ðÏËÁÚÁÔÉ ÐÏצÄÏÍÌÅÎÎÑ ËÏÄÕ 407?"
 
@@ -3250,7 +3276,7 @@ msgstr "ðÏËÁÚÁÔÉ ÐÏצÄÏÍÌÅÎÎÑ ËÏÄÕ 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "îÅצÄÏÍÉÊ ×¦ÄÇÕË ÓÔÁÔÕÓÕ ×¦Ä ÓÅÒ×ÅÒÁ!"
 
@@ -3440,141 +3466,141 @@ msgstr "óÕÐÒÏצÄ"
 msgid "Host"
 msgstr "èÏÓÔ"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr ""
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr ""
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** ðáí'ñôø ÷éþåòðáîï ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "ÎÅצÄÏÍÅ ÐÏÌÅ ÞÉ ÐÏÓÉÌÁÎÎÑ"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "ÔÅËÓÔÏ×Å ÐÏÌÅ"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "ÐÏÌÅ ××ÏÄÕ ÐÁÒÏÌÑ"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "ÐÅÒÅÍÉËÁÞ"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "ÒÁĦÏËÎÏÐËÁ"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "ËÎÏÐËÁ ÚÁÔ×ÅÒÄÖÅÎÎÑ"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "ËÌÁצÛÁ צÄͦÎÉ ÚͦÎ"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "×ÓÐÌÉ×ÁÀÞÅ ÍÅÎÀ"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "ÐÒÉÈÏ×ÁÎÅ ÐÏÌÅ ÆÏÒÍÉ"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "ÔÅËÓÔÏ×Á ÏÂÌÁÓÔØ"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr ""
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "ÐÏÌÅ ××ÏÄÕ ÆÁÊÌÕ"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr ""
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "ÚÏÂÒÁÖÅÎÎÑ-ËÎÏÐËÁ ÄÌÑ ×¦ÄÓÉÌËÉ"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr ""
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "ÎÅצÄÏÍÅ ÐÏÌÅ ÆÏÒÍÉ"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "îÅÍÏÖÌÉ×Ï ×¦ÄËÒÉÔÉ ÆÁÊÌ ÄÌÑ ÞÉÔÁÎÎÑ."
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "úÁÔ×ÅÒÄÖÕ¤ÍÏ %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr ""
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "äÕÖÅ ÄÏ×Ǧ ÒÑÄËÉ ÂÕÌÉ ÚÁ×ÅÒÎÕÔ¦!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr ""
 
 # @ Gnome-find KDat karchiver karchiver.po kwuftpd lynx red-carpet
 # * Yuri Syrota <rasta@renome.rovno.ua>
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "ÂÁÊÔÉ"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "ðÒÏÞÉÔÁÎÏ %s Ú %s ÄÁÎÉÈ"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "ðÒÏÞÉÔÁÎÏ %s ÄÁÎÉÈ"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/ÓÅË"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, fuzzy, c-format
 msgid " (stalled for %s)"
 msgstr " (ÐÒÉÚÕÐÉÎÅÎÏ ÎÁ %ld ÓÅË)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, fuzzy, c-format
 msgid ", ETA %s"
 msgstr ", ETA %ld ÓÅË"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (îÁÔÉÓΦÔØ 'z' ÝÏ ÚÕÐÉÎÉÔÉ)"
 
@@ -3605,11 +3631,11 @@ msgstr " (îÁÔÉÓΦÔØ 'z' ÝÏ ÚÕÐÉÎÉÔÉ)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "ÔÁË"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "Φ"
 
@@ -3629,7 +3655,7 @@ msgstr "Φ"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -3766,31 +3792,31 @@ msgstr "÷ÎÕÔÒ¦ÛΦÊ"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "ÐÏÍÉÌËÁ Õ cookie_domain_flag_set, ÕÒÉ×Á¤ÍÏ ÐÒÏÇÒÁÍÕ"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "îÅ ×ÄÁÌÏÓÑ ¦Î¦Ã¦Á̦ÚÕ×ÁÔÉ ÔÅÒͦÎÁÌ - ÎÅצÄÏÍÉÊ ÔÉÐ ÔÅÒͦÎÁÌÕ?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "ôÅÒͦÎÁÌ ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "÷É ÍÁ¤ÔÅ ×ÉËÏÒÉÓÔÏ×Õ×ÁÔÉ Ú Ã¦¤À ÐÒÏÇÒÁÍÏÀ ÔÅÒͦÎÁÌÉ vt100, 200 ÔÏÝÏ."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "ôÉÐ ×ÁÛÏÇÏ ÔÅÒͦÎÁÌÕ ÎÅצÄÏÍÉÊ!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "÷×ÅĦÔØ ÔÉÐ ÔÅÒͦÎÁÌÕ:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "ôéð ôåòí¶îáìõ ÷óôáîï÷ìåîï õ"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3799,7 +3825,7 @@ msgstr ""
 "\n"
 "æÁÔÁÌØÎÁ ÐÏÍÉÌËÁ × %s, ×ÅÒÓ¦Ñ %s\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4301,32 +4327,32 @@ msgstr "ãÅ ÐÏצÄÏÍÌÅÎÎÑ ÚÇÅÎÅÒÏ×ÁÎÏ Á×ÔÏÍÁÔÉÞÎÏ ÍÎÏÀ,"
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "äÁÒÕÊÔÅ, Winsock ÎÅ ÚÎÁÊÄÅÎÏ."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "÷É íõóéôå ×ËÁÚÁÔÉ TMP ÞÉ TEMP!"
 
 # ôåòí¶îïìïç¶ñ
 # msgstr "îÅÍÁ¤ ÔÁËÏÇÏ ËÁÔÁÌÏÇÕ"
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "ôÁËÏÇÏ ËÁÔÁÌÏÇÕ ÎÅÍÁ¤"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "æÁÊÌ ËÏÎƦÇÕÒÁÃ¦Ê %s ÎÅÄÏÓÔÕÐÎÉÊ.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4334,7 +4360,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4342,172 +4368,172 @@ msgid ""
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "æÁÊÌ Lynx %s ÎÅÄÏÓÔÕÐÎÉÊ.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "õ×ÁÇÁ:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr ""
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr ""
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, fuzzy, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s ÷ÅÒÓ¦Ñ %s (%s)\n"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "ú¦ÂÒÁÎÏ ÎÁ %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr ""
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "òÏÚÐÏ×ÓÀÄÖÕ¤ÔØÓÑ ÚǦÄÎÏ Ú GNU General Public License."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "äÉ× http://lynx.isc.org/ ÔÁ ÏÎÌÁÊÎ-ÄÏÐÏÍÏÇÕ, ÝÏ ×ÚÎÁÔÉ Â¦ÌØÛÅ."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "÷éëïòéóôáîîñ: %s [ÐÁÒÁÍÅÔÒÉ] [ÆÁÊÌ]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "ðÁÒÁÍÅÔÒÉ:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: îÅצÒÎÉÊ ÐÁÒÁÍÅÔÒ: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr ""
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "URL ×ËÁÚÁÎÉÊ ËÏÒÉÓÔÕ×ÁÞÅÍ"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr ""
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "åËÒÁÎ äÏÐÏÍÏÇÉ"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr ""
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr ""
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr ""
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr ""
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "ÐÅÒÅÊÔÉ ÄÏ:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr ""
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "îÅ ÍÏÖÕ Ä¦ÓÔÁÔÉÓÑ ÄÏ ËÁÔÁÌÏÇÕ."
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "ïÐÒÁÃØÏ×Õ¤ÍÏ ÄÏËÕÍÅÎÔ ÚǦÄÎÏ Ú ÐÏÔÏÞÎÉÍÉ ÕÓÔÁÎÏ×ËÁÍÉ..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "æÁÔÁÌØÎÁ ÐÏÍÉÌËÁ - ÎÅÍÏÖÌÉ×Ï ×¦ÄËÒÉÔÉ ×ÉȦÄÎÉÊ ÆÁÊÌ %s\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
 # ôåòí¶îïìïç¶ñ
 # ôåòí¶îïìïç¶ñ
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 #, fuzzy
 msgid "Current URL is empty."
 msgstr "ðÏÔÏÞÎÉÊ ËÁÔÁÌÏÇ:"
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr ""
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-¦ÎÄÅËÓ-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: îÅÍÏÖÌÉ×Ï ÚÁ×ÁÎÔÁÖÉÔÉ ÓÔÁÒÔÏ×ÉÊ ÆÁÊÌ"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: óÔÁÒÔÏ×ÏÇÏ ÆÁÊÌÕ ÎÅÍÁ, ÞÉ ×¦Î ÎÅ Õ ÆÏÒÍÁÔ¦ text/html (text/plain)"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "     ÷ÉÈÏÄÉÍÏ..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-ÄÁ̦-"
 
@@ -4571,279 +4597,279 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr ""
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "ÐÒÏÇÌÑÎÕÔÉ/ÚͦÎÉÔÉ ÆÁÊÌ úÁËÌÁÄÉÎÏË (B)"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "B) ÆÁÊÌ ÚÁËÌÁÄÉÎÏË: "
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 #, fuzzy
 msgid "Novice"
 msgstr "î¦ÞÏÇÏ"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 #, fuzzy
 msgid "Intermediate"
 msgstr "÷ÎÕÔÒ¦ÛΦÊ"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 #, fuzzy
 msgid "as links"
 msgstr "ÃÅ ÐÏÓÉÌÁÎÎÑ"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 #, fuzzy
 msgid "show filename"
 msgstr " (ÐÏÇÁÎÅ ¦Í'Ñ ÆÁÊÌÕ)"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
 # ôåòí¶îïìïç¶ñ
 # ôåòí¶îïìïç¶ñ
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 #, fuzzy
 msgid "Directories first"
 msgstr "ð¦ÄËÁÔÁÌÏÇÉ:"
 
 # ôÑÇÎÅÍÏ http://enigma.x-telecom.net/ ×ÐÅÒÛÅ (ÍÉ ÔÁÍ ÝÅ ÎÅ ÂÕÌÉ)
 # ôÑÇÎÅÍÏ http://enigma.x-telecom.net/ ×ÐÅÒÛÅ (ÍÉ ÔÁÍ ÝÅ ÎÅ ÂÕÌÉ)
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 #, fuzzy
 msgid "Files first"
 msgstr " ×ÐÅÒÛÅ"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr ""
 
 # @ Dia GIMP Gabber Galeon- Ximian-setup-tools balsa control-center evolution gimp gimp-std-plugins- glade- gnome-core gnome-libs gnome-pim gnomeicu gphoto graphite guppi kandy kandy.po kateprojectmanager.po kcmemail kcmkio kde-i18n_4:2.2.2-2_kdeprintfax.po kdelibs kmail kmenuedit knode koffice korganizer ksysguard kword lynx pybliographer red-carpet rpmdrake screem userdrake xchat
 # * Yuriy Syrota <yuri@renome.rovno.ua>
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 #, fuzzy
 msgid "By Name"
 msgstr "îÁÚ×Á:"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 #, fuzzy
 msgid "By Size"
 msgstr "âÁÊÔ¦×:"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 #, fuzzy
 msgid "By Date"
 msgstr "äÁÔÁ:"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 #, fuzzy
 msgid "By Group"
 msgstr "çÒÕÐÁ"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
 # ÐÅÒÅËÁÞÕ×ÁÎÎÑ - ÂÏ ÎÅ ÚÎÁÀ, ËÕÄÉ, Õ ÑËÉÊ Â¦Ë.
 # (×ÖÅ ËÒÁÝÅ "ÐÅÒÅÄÁ×ÁÎÎÑ", ÂÏ ÐÅÒÅÄÁÞÁ - ÎÅ ÚÏ×Ó¦Í ÐÒÏÃÅÓ, ÎÁÞÅ)
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, fuzzy, c-format
 msgid "Show %s/sec rate"
 msgstr "ðÅÒÅËÁÞÕ×ÁÎÎÑ ÄÁÎÉÈ ÚÁ×ÅÒÛÅÎÏ."
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
 # msgstr "ðÒÉÊÎÑÔÉ"
 # ÍÍÍÍ... ÎÅ ÚÎÁÀ. (ËÏÎÔÒ)ÁÒÇÕÍÅÎÔÉ?
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 #, fuzzy
 msgid "Accept all types"
 msgstr "úÁÐÒÏ×ÁÄÉÔÉ ÚͦÎÉ"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "%s ×ÉËÌÉËÁ¤ íÅÎÀ îÁÌÁÛÔÕ×ÁÎØ!"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr "(ÐÁÒÁÍÅÔÒÉ ×¦ÄͦÅΦ (!) ÎÅ ÂÕÄÕÔØ ÚÁÐÉÓÁΦ)"
 
 # @ GIMP lynx
 # * Yuri Syrota <rasta@renome.rovno.ua>
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "úÁÇÁÌØΦ ÎÁÌÁÛÔÕ×ÁÎÎÑ"
 
@@ -4851,82 +4877,82 @@ msgstr "úÁÇÁÌØΦ ÎÁÌÁÛÔÕ×ÁÎÎÑ"
 # ¦ÌØÛÅ ÐÏÄÏÂÁ¤ÔØÓÑ "ËÏÒÉÓÔÕ×ÁÎÎÑ"
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "òÅÖÉÍ ËÏÒÉÓÔÕ×ÁÎÎÑ"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "òÅÄÁËÔÏÒ"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "ôÉÐ ÐÏÛÕËÕ"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "ëÏÒÖÉËÉ"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "÷×¦Ä Ú ËÌÁצÁÔÕÒÉ"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "ãÉÆÒÏ×Á ËÌÁצÁÔÕÒÁ"
 
 # msgstr "ëÌÁצۦ Emacs"
 # msgstr "ëÌÁצۦ Emacs"
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "ëÌÀÞ¦ Emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "ëÌÀÞ¦ VI"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "òÏÚËÌÁÄËÁ ËÌÁצÁÔÕÒÉ"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "äÉÓÐÌÅÊ ÔÁ ÎÁÂ¦Ò ÓÉÍ×Ï̦×"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "÷×ÁÖÁÔÉ ËÏÄÕ×ÁÎÎÑÍ ÄÏËÕÍÅÎÔÁ"
@@ -4936,11 +4962,11 @@ msgstr "÷×ÁÖÁÔÉ ËÏÄÕ×ÁÎÎÑÍ ÄÏËÕÍÅÎÔÁ"
 # ???
 # msgstr "îÁÂ¦Ò ÓÉÍ×ÏÌ¦× ÄÉÓÐÌÅÀ"
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "îÁÂ¦Ò ÓÉÍ×ÏÌ¦× ÄÉÓÐÌÅÑ"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "÷×ÁÖÁÔÉ ËÏÄÕ×ÁÎÎÑÍ ÄÏËÕÍÅÎÔÁ"
 
@@ -4949,72 +4975,72 @@ msgstr "÷×ÁÖÁÔÉ ËÏÄÕ×ÁÎÎÑÍ ÄÏËÕÍÅÎÔÁ"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "òÅÖÉÍ CJK"
 
 # msgstr "óÐÒÁ×ÖΦ 8¦Ô"
 # ÍÏÖÅ "8-bit - ÑË ¤" ?-)
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "òÅÖÉÍ Raw 8-bit"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X äÉÓÐÌÅÊ"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "÷ÉÇÌÑÄ ÄÏËÕÍÅÎÔÁ"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "ðÏËÁÚÕ×ÁÔÉ ËÏÌØÏÒÉ"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "ðÏËÁÚÕ×ÁÔÉ ËÕÒÓÏÒ"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 #, fuzzy
 msgid "Underline links"
 msgstr "ðÒÉÈÏ×ÁΦ ÐÏÓÉÌÁÎÎÑ:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "ðÏËÁÚÕ×ÁÔÉ ËÏÌØÏÒÉ"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "òÏÚËÒÉÔÔÑ ÐÏÌ¦× ×ÉÂÏÒÕ"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "÷ÉÐÒÁ×ÌÑÎÎÑ ÐÏÍÉÌÏË HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "ðÏËÁÚÕ×ÁÔÉ ÚÏÂÒÁÖÅÎÎÑ"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "äÏÄÁÔËÏ×Ï ÐÒÏ ÚÏÂÒÁÖÅÎÎÑ"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "úÁÇÏÌÏ×ËÉ ÄÌÑ îÁÄÓÉÌÁÎÎÑ ÎÁ óÅÒ×ÅÒÉ"
 
@@ -5024,12 +5050,12 @@ msgstr "úÁÇÏÌÏ×ËÉ ÄÌÑ îÁÄÓÉÌÁÎÎÑ ÎÁ óÅÒ×ÅÒÉ"
 # msgstr "áÄÒÅÓÁ ÅÌÅËÔÒÏÎÎϧ ÐÏÛÔÉ"
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "ðÅÒÓÏÎÁÌØÎÁ ÐÏÛÔÏ×Á ÁÄÒÅÓÁ"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "ðÁÒÏÌØ ËÏÒÉÓÔÕ×ÁÞÁ ÎÁ ÓÅÒ×ÅÒ¦ ÎÏ×ÉÎ '%s':"
@@ -5037,28 +5063,28 @@ msgstr "ðÁÒÏÌØ ËÏÒÉÓÔÕ×ÁÞÁ ÎÁ ÓÅÒ×ÅÒ¦ ÎÏ×ÉÎ '%s':"
 # ÐÅÒÅËÁÞÁÎÏ - ÂÏ ÎÅ ÚÎÁÀ, ËÕÄÉ, Õ ÑËÉÊ Â¦Ë.
 # ÐÅÒÅËÁÞÁÎÏ - ÂÏ ÎÅ ÚÎÁÀ, ËÕÄÉ, Õ ÑËÉÊ Â¦Ë.
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 #, fuzzy
 msgid "Preferred media type"
 msgstr "ðÅÒÅËÁÞÁÎÏ %d ÂÁÊÔ¦×"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "õÌÀÂÌÅÎÁ ÍÏ×Á ÄÏËÕÍÅÎÔÁ"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "õÌÀÂÌÅÎÉÊ ÎÁÂ¦Ò ÓÉÍ×Ï̦×"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "õÌÀÂÌÅÎÁ ÍÏ×Á ÄÏËÕÍÅÎÔÁ"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "úÁÇÏÌÏ×ÏË User-Agent"
 
@@ -5069,70 +5095,70 @@ msgstr "úÁÇÏÌÏ×ÏË User-Agent"
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "óÐÉÓËÉ ÔÁ äÏÓÔÕÐ ÄÏ æÁÊ̦×"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "ëÒÉÔÅÒ¦Ê ÓÏÒÔÕ×ÁÎÎÑ ËÁÔÁÌÏÇ¦× FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "ëÒÉÔÅÒ¦Ê ÓÏÒÔÕ×ÁÎÎÑ ÌÏËÁÌØÎÉÈ ËÁÔÁÌÏǦ×"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "ðÏÒÑÄÏË ÓÏÒÔÕ×ÁÎÎÑ ÌÏËÁÌØÎÉÈ ËÁÔÁÌÏǦ×"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "ðÏËÁÚÕ×ÁÔÉ ÐÒÉÈÏ×ÁΦ ÆÁÊÌÉ"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "úÁÐÕÓËÁÎÎÑ ÐÒÏÇÒÁÍ ÚÁ ÐÏÓÉÌÁÎÎÑÍÉ"
 
 # ÐÅÒÅËÁÞÕ×ÁÎÎÑ - ÂÏ ÎÅ ÚÎÁÀ, ËÕÄÉ, Õ ÑËÉÊ Â¦Ë.
 # (×ÖÅ ËÒÁÝÅ "ÐÅÒÅÄÁ×ÁÎÎÑ", ÂÏ ÐÅÒÅÄÁÞÁ - ÎÅ ÚÏ×Ó¦Í ÐÒÏÃÅÓ, ÎÁÞÅ)
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "ðÅÒÅËÁÞÕ×ÁÎÎÑ ÄÁÎÉÈ ÚÁ×ÅÒÛÅÎÏ."
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "óÐÅæÁÌØΦ æÁÊÌÉ ÔÁ åËÒÁÎÉ"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "þÉÓÅÌØΦ ÆÁÊÌÉ ÚÁËÌÁÄÉÎÏË"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "ðÒÏÄÉ×ÉÔÉÓÑ/òÅÄÁÇÕ×ÁÔÉ ÚÁËÌÁÄÉÎËÉ"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "ðÅÒÅÊÔÉ ÄÏ ÍÅÎÀ multi-bookmar"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "æÁÊÌ ÚÁËÌÁÄÉÎÏË"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "ðÒÏÇÌÑÎÕÔ¦ ÓÔÏÒ¦ÎËÉ"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr "ðÅÒÅÇÌÑÎÕÔÉ ÆÁÊÌ "
 
@@ -5246,38 +5272,38 @@ msgstr ""
 msgid "(no name)"
 msgstr "(ÎÅÍÁ ¦ÍÅΦ)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "×ËÌÀÞÅÎÏÍÕ Ú '%s'.\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "ïÓØ ÔÁËÅ ÂÕÌÏ ÚÎÁÊÄÅÎÏ Õ ×ÁÛÏÍÕ ÆÁÊ̦ lynx.cfg."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "ú×ÅÒΦÔØÓÑ ÄÏ ÄÉÓÔÒÉÂÕÔÉ×Á"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "ÐÏ ÄÏÄÁÔËÏ×Õ ¦ÎÆÏÒÍÁæÀ."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "ðåòåþéôáôé"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "÷ÁÛÁ ÏÓÎÏ×ÎÁ ËÏÎƦÇÕÒÁæÑ"
 
@@ -5558,33 +5584,33 @@ msgstr "÷¦Ä×ÁÎÔÁÖÉÔÉ ÄÏ:"
 msgid "Upload options:"
 msgstr "ðÁÒÁÍÅÔÒÉ ×¦Ä×ÁÎÔÁÖÅÎÎÑ:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr ""
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr ""
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "ÎÅצÄÏÍÅ ÏÂÍÅÖÅÎÎÑ"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "ïÂÍÅÖÅÎÎÑ ×¦ÄÓÕÔΦ.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "îÁÂ¦Ò ÏÂÍÅÖÅÎØ:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "îÅ ÍÏÖÕ ÚÎÁÊÔÉ ÄÏÍÁÛÎ¦Ê ËÁÔÁÌÏÇ"
 
diff --git a/po/vi.po b/po/vi.po
index fb7eb616..31cd0aaa 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx-2.8.6-dev8\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2005-05-07 01:43+0400\n"
 "Last-Translator: Phan Vinh Thinh <teppi82@gmail.com>\n"
 "Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
@@ -2244,7 +2244,7 @@ msgstr "(Không tên.)"
 msgid "(No value.)"
 msgstr "(Không giá trị.)"
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr "Không"
 
@@ -2551,142 +2551,147 @@ msgstr "Không thá»­ xác thá»±c proxy lại được!  Liên hệ WebMaster cá»
 msgid "Retrying with proxy authorization information."
 msgstr "Äang thá»­ lại vá»›i thông tin xác thá»±c proxy."
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "Lỗi SSL:máy(%s)!=cert(%s)-Tiếp tục?"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS: Thông báo gửi lại quá lớn."
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr "Nhập câu há»i WAIS: "
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "Äang thá»­ nhÆ° má»™t yêu cầu HTTP0."
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "Äã truyá»n %d byte"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "Hoàn thành truyá»n tải dữ liệu"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr "Lỗi thực hiện dòng %d của %s\n"
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr "Trang Danh sách địa chỉ"
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "Tập tin Ưa thích"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr "Xác định Cấu hình"
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr "Giá» Cookie"
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "Ãnh xạ phím hiện thá»i"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Tùy chá»n quản lý Tập tin"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "Tùy chá»n Tải xuống"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "Trang Lịch sử"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Trang Danh sách"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Thông tin Lynx.cfg"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr "Danh sách nóng Mosaic đã chuyển đổi"
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "Trình Ä‘Æ¡n tùy chá»n"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "Tùy chá»n Quyá»n trên tập tin"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "Tùy chá»n in ấn"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "Thông tin vá» tài liệu hiện thá»i"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "Thông báo dòng trạng thái hiện thá»i"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "Tùy chá»n Tải lên"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr "Trang Liên kết đã xem"
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr "Äồng thá»i xem"
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr "của bạn"
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr "để tùy chá»n runtime"
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "tùy chá»n biên dịch"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 msgid "color-style configuration"
 msgstr "cấu hình màu sắc"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "phát hành mới nhất"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "phiên bản trước phát hành"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "phiên bản phát triển"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2696,7 +2701,7 @@ msgstr ""
 "bản Lynx này.  Khi báo cáo lỗi, xin hãy thêm nội dung của trang này."
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
@@ -2705,49 +2710,49 @@ msgstr ""
 "trong khi biên dịch Lynx này."
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "  C)Tạo  D)Tải  E)Soạn  F)ull menu  M)Thay đổi  R)Xóa  T)ag  U)pload     \n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "Lấy trạng thái của liên kết hiện thá»i không thành công!"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr "URL đó chỉ dùng được từ trình Ä‘Æ¡n Quyá»n hạn Tập tin hiện thá»i!"
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr "Hiện thá»i đã tắt bá» há»— trợ ngoài."
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr "Hiện thá»i đã tắt bá» việc thay đổi thÆ° mục làm việc."
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "Ngắt dòng TẮT!"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "Ngắt dòng BẬT!"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr "Phân tích bảng lồng vào nhau TẮT!  Äang nạp lại..."
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr "Phân tích bảng lồng vào nhau BẬT!  Äang nạp lại..."
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr "Dịch chuyển tắt trong khi ngắt dòng làm việc"
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr "Không hỗ trợ trace"
 
@@ -2756,24 +2761,24 @@ msgstr "Không hỗ trợ trace"
 msgid "Username for '%s' at %s '%s%s':"
 msgstr "Tên ngÆ°á»i dùng cho '%s' tại %s '%s%s':"
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr "Client này không biết cách dàn xếp thông tin xác thực proxy cho sơ đồ"
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr "Client này không biết cách dàn xếp thông tin xác thực cho sơ đồ"
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "Phần đầu không đúng '%s%s%s%s%s'"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "Yêu cầu xác thực proxy -- đang thử lại"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "Truy cập chưa xác thực bị cấm -- đang thử lại"
 
@@ -2789,7 +2794,7 @@ msgstr "Không tìm thấy tài liệu với nội dung GỬI trong cache.  Gử
 msgid "Loading failed, use a previous copy."
 msgstr "Nạp không thành công, hãy sử dụng bản sao trước đây."
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "Nạp thành công."
 
@@ -2812,7 +2817,7 @@ msgstr "**** HTAccess: Trạng thái trả lại là: %d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "Không truy cập được"
 
@@ -3009,15 +3014,15 @@ msgstr "Äang Ä‘á»c tin tức."
 msgid "Sorry, could not load requested news."
 msgstr "Rất tiếc, không nạp được tin tức yêu cầu."
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "Äịa chỉ có cổng sai"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "Chiá»u dài địa chỉ có vẻ không đúng"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Không định vị được máy ở xa %s."
@@ -3026,90 +3031,112 @@ msgstr "Không định vị được máy ở xa %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Tên máy không đúng %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Äang tạo %s kết nối tá»›i %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr "lá»—i socket."
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "lỗi socket: family %d địa chỉ %s cổng %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr "Không tạo được kết nối không phải khối."
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "Kết nối không thành công (quá nhiá»u lần thá»­)."
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr "Không phục hồi được socket thành khối."
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr "Äá»c socket không thành công 180 000 lần."
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr "Äịa chỉ chứa má»™t tên ngÆ°á»i dùng: %s"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Client này không hỗ trợ các URL HTTPS."
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "Không kết nối được tới máy ở xa."
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "Äang thá»­ kết nối không có TLS."
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "Äã xÆ¡i xong cookie!"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+#, fuzzy
+msgid "Can't find common name in certificate"
 msgstr "Lỗi SSL: Không tìm thấy tên công cộng trong xác thực-Tiếp tục?"
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "Lỗi SSL:máy(%s)!=cert(%s)-Tiếp tục?"
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Kết nối HTTP bảo mật %d-bit %s (%s)"
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "Äang gá»­i yêu cầu HTTP."
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr "Lỗi ghi mạng không mong đợi; dừng kết nối."
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "Äã gá»­i yêu cầu HTTP; Ä‘ang chá» trả lá»i."
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr "Lá»—i Ä‘á»c mạng không mong đợi; dừng kết nối."
 
@@ -3122,7 +3149,7 @@ msgstr "Lá»—i Ä‘á»c mạng không mong đợi; dừng kết nối."
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr "Nhận được Trạng thái Thông tin không mong đợi."
 
@@ -3132,7 +3159,7 @@ msgstr "Nhận được Trạng thái Thông tin không mong đợi."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr "Yêu cầu đã hoàn thành.  Äặt lại Ná»™i dung."
 
@@ -3142,27 +3169,27 @@ msgstr "Yêu cầu đã hoàn thành.  Äặt lại Ná»™i dung."
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Nhận được trạng thái 304 Chưa Thay đổi không mong đợi."
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr "Chuyển hÆ°á»›ng ná»™i dung GỬI cần sá»± đồng ý của ngÆ°á»i dùng."
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Có ná»™i dung GỬI.  Äang coi Sá»± chuyển hÆ°á»›ng Lâu dài chỉ là Tạm thá»i.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr "Äang thá»­ vá»›i thông tin xác thá»±c."
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "Hiển thị nội dung thông báo 401?"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "Hiển thị nội dung thông báo 407?"
 
@@ -3170,7 +3197,7 @@ msgstr "Hiển thị nội dung thông báo 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "Không rõ trạng thái trả lá»i từ máy chủ!"
 
@@ -3358,139 +3385,139 @@ msgstr "Nhà duy trì"
 msgid "Host"
 msgstr "Máy"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "Cạn bộ nhớ, đã gián đoạn hiển thị!"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "Cạn bá»™ nhá»›, sẽ gián Ä‘oạn truyá»n tải!"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr " *** CẠN BỘ NHỚ ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "không rõ vùng hay liên kết"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "vùng mục văn bản"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "vùng mục mật khẩu"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr "hộp kiểm tra"
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr "nút radio"
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr "nút gửi đi"
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr "nút đặt lại"
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr "trình đơn tự mở ra"
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr "vùng biểu mẫu ẩn"
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "phạm vi mục văn bản"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr "vùng mục sắp xếp"
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "vùng mục tập tin"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr "vùng gửi đi văn bản"
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr "nút gửi đi hình ảnh"
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr "vùng keygen"
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr "vùng biểu mẫu không rõ"
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "Không mở được tập tin để tải lên"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr "Äang gá»­i Ä‘i %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Tìm ra Treo: cấu trúc TextAnchor bị lỗi - đỠnghị thoát!"
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "Ngắt dòng cho hợp với vùng hiển thị?"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr "Những dòng rất dài đã bị ngắt!"
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr "Những dòng rất dài đã bị xén bớt!"
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "byte"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "Äá»c %s từ %s của dữ liệu"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "Äá»c %s của dữ liệu"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ", %s/giây"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr " (trì hoãn cho %s)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ", CÒNLẠI %s"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (Nhấn 'z' để thoát)"
 
@@ -3519,11 +3546,11 @@ msgstr " (Nhấn 'z' để thoát)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "có"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "không"
 
@@ -3543,7 +3570,7 @@ msgstr "không"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr "Y/N/A/V"
 
@@ -3679,31 +3706,31 @@ msgstr "Ná»™i bá»™"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "lỗi cookie_domain_flag_set, đang thoát chương trình"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "Cấu hình terminal không thành công - không rõ dạng terminal?"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "Terminal ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "Cần sử dụng một terminal vt100, 200, v.v... với chương trình này."
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "Dạng Terminal không biết đến!"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "Hãy nhập một dạng terminal:"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "DẠNG TERMINAL ÄẶT THÀNH"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3712,7 +3739,7 @@ msgstr ""
 "\n"
 "Một lỗi Nặng xuất hiện trong %s Phiên bản %s\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4189,30 +4216,30 @@ msgstr "Thông báo này tự động tạo ra bởi"
 msgid "No system mailer configured"
 msgstr "Không có hệ thống thư nào được cấu hình"
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "Rất tiếc, không tìm thấy Winsock."
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "PHẢI chỉ ra một vùng TMP hoặc TEMP!"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "Không có thư mục đó"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Không có tập tin cấu hình %s.\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4223,7 +4250,7 @@ msgstr ""
 "Chưa khai báo bộ ký tự Lynx.\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4234,169 +4261,169 @@ msgstr ""
 "Chưa khai báo sơ đồ soạn thảo Lynx.\n"
 "\n"
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Không có tập tin Lynx %s.\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "Cảnh báo:"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr "trạng thái của cookie cố định chỉ thay đổi trong buổi làm việc tiếp theo."
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx: lỠđi bảng mã không nhận ra %s\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s Phiên bản %s (%s)"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "Xây dựng trên %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "Äăng ký bản quyá»n bởi Äại há»c Kansas, CERN, và những ngÆ°á»i khác."
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "Phân phối dưới GPL."
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "Hãy xem http://lynx.isc.org/ và trợ giúp trực tuyến để biết thêm thông tin."
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "SỬ DỤNG: %s [tùychá»n] [tậptin]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "Tùy chá»n là:\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s: Tùy chá»n sai: %s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr "Lỗi nội bộ: Liên kết chuột sai %d!"
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "Má»™t URL do ngÆ°á»i dùng chỉ ra"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr "Chưa hỗ trợ dạng bảng mã multipart/form-data!  Không thể gửi đi."
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "Màn hình Trợ giúp"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr "Chỉ mục Hệ thống"
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr "Äi tá»›i màn hình chính"
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr "Không có tài liệu tiếp theo"
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "bảng mã của tài liệu này được chỉ ra rõ ràng, rất tiếc..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "cd tá»›i:"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "Má»™t thành phần của Ä‘Æ°á»ng dẫn không phải là tập tin"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "thay đổi thư mục bị thất bại"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "Phân tích lại tài liệu dÆ°á»›i thiết lập hiện thá»i..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "Lỗi nặng - không mở được tập tin đầu ra %s\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr "BẢNG ở giữa bật."
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr "BẢNG ở giữa tắt."
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 msgid "Current URL is empty."
 msgstr "URL hiện thá»i là rá»—ng."
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr "Sao chép tới clipboard không thành công."
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr "Äã đặt URL tài liệu vào clipboard."
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr "Äã đặt URL liên kết vào clipboard."
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr "Không có URL trong clipboard."
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "-chỉ mục-"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx: Không truy cập được tập tin bắt đầu"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr "lynx: Không tìm thấy tập tin bắt đầu hoặc không phải là text/html hay text/plain"
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      Äang thoát..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "-còn nữa-"
 
@@ -4460,344 +4487,344 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr "Thư không có văn bản gốc!"
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr "xem lại/sửa B)Tập tin Ưa thích"
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "B)Tập tin ưa thích: "
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr "BẬT"
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr "TẮT"
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr "KHÔNG BAO GIỜ"
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr "LUÔN LUÔN"
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr "lá» Ä‘i"
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr "há»i ngÆ°á»i dùng"
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr "chấp nhận hết"
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr "LUÔN LUÔN TẮT"
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr "CHỈ CHO TẬP TIN NỘI BỘ"
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr "LUÔN LUÔN BẬT"
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr "Các số làm việc như mũi tên"
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr "Äánh số liên kết"
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr "Äánh số liên kết và vùng biểu mẫu"
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr "Äánh số vùng biểu mẫu"
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr "Không tính đến kiểu chữ"
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr "Tính đến kiểu chữ"
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr "há»i lại nhÆ° thông thÆ°á»ng"
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr "bắt buá»™c trả lá»i yes (có)"
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr "bắt buá»™c trả lá»i no (không)"
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 msgid "Novice"
 msgstr "NgÆ°á»i má»›i"
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 msgid "Intermediate"
 msgstr "Trung bình"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr "Có nghá»"
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr "Theo lần xem đầu tiên"
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr "Theo lần xem đầu tiên nhÆ°ng Äảo ngược"
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr "Như cây xem"
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr "Theo lần xem cuối"
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr "Theo lần xem cuối nhưng đảo ngược"
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr "buông lá»ng (chế Ä‘á»™ TagSoup)"
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr "chặt chẽ (chế độ SortaSGML)"
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr "như các nhãn"
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 msgid "as links"
 msgstr "như liên kết"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 msgid "show filename"
 msgstr "hiện tên tập tin"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr "CƠ BẢN"
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr "NÂNG CAO"
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 msgid "Directories first"
 msgstr "Thư mục trước"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 msgid "Files first"
 msgstr "Tập tin trước"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr "Kiểu pha trộn"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 msgid "By Name"
 msgstr "Theo Tên"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr "Theo Dạng"
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr "Theo Kích thước"
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 msgid "By Date"
 msgstr "Theo Ngày"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr "Theo Chế độ"
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr "Theo ngÆ°á»i dùng"
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 msgid "By Group"
 msgstr "Theo Nhóm"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr "Không hiển thị tốc độ"
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, c-format
 msgid "Show %s/sec rate"
 msgstr "Hiển thị tốc độ %s/giây"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr "Hiển thị %s/giây, CÒNLẠI"
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr "Chấp nhận dạng nội bộ của lynx"
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr "Äồng thá»i chấp nhận dạng của lynx.cfg"
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr "Äồng thá»i chấp nhận dạng của ngÆ°á»i dùng"
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr "Äồng thá»i chấp nhận dạng của hệ thống"
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 msgid "Accept all types"
 msgstr "Chấp nhận tất cả các dạng"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr "nén gzip"
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr "làm xẹp"
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr "nén"
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr "nén bzip2"
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr "Tất cả"
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Hãy sá»­ dụng %s để gá»i trình Ä‘Æ¡n Tùy chá»n!"
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr "(sẽ không ghi nhá»› tùy chá»n có dấu (!))"
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "Cấu hình chung"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "Chế Ä‘á»™ ngÆ°á»i dùng"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "Trình soạn thảo"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "Dạng tìm kiếm"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr "Bảo mật và An toàn"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Cookie"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr "Câu há»i khi Cookie lá»—i"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr "Câu há»i vá» SSL"
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "Nhập bàn phím"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "Chế độ Keypad"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Phím Emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "Phím VI"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr "Kiểu soạn thảo theo dòng"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "Bàn phím"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Hiển thị và Bảng mã"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 msgid "Use locale-based character set"
 msgstr "Sử dụng bảng mã dựa trên locale"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "Bảng mã hiển thị"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "Bảng mã đỠnghị cho tài liệu"
 
@@ -4806,173 +4833,173 @@ msgstr "Bảng mã đỠnghị cho tài liệu"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "Chế độ CJK"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "8-bit thô"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "Màn hình X"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "Trang trí tài liệu"
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Hiển thị màu"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Hiển thị con trá»"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 msgid "Underline links"
 msgstr "Gạch dưới liên kết"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "Hiển thị thanh cuộn"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr "Mở cá»­a sổ khác cho vùng chá»n"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr "Phục hồi lỗi HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Hiển thị hình ảnh"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "Chi tiết vỠhình ảnh"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "Phần đầu đã truyá»n tải tá»›i máy chủ ở xa"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "Äịa chỉ thÆ° cá nhân"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "Mật khẩu cho máy tin tức '%s':"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 msgid "Preferred media type"
 msgstr "Thiết bị ghi ưa chuộng"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 msgid "Preferred encoding"
 msgstr "Bảng mã ưa chuộng"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Bảng mã tài liệu ưa chuộng"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Ngôn ngữ tài liệu ưa chuộng"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "Phân đầu User-Agent"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "Tập tin Danh sách và Truy cập"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "Tiêu chuẩn sắp xếp FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "Tiêu chuẩn sắp xếp thư mục nội bộ"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "Thứ tự sắp xếp thư mục nội bộ"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Hiển thị tập tin ẩn"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr "Thực hiện Liên kết"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Hiển thị tốc Ä‘á»™ truyá»n tải"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "Màn hình và Tập tin đặc biệt"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "Nhiá»u Ưa thích"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "Xem lại/sửa tập tin Ưa thích"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "Äi tá»›i trình Ä‘Æ¡n nhiá»u Æ°a thích"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "Tập tin Ưa thích"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "Trang đã xem"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr "Xem tập tin"
 
@@ -5096,38 +5123,38 @@ msgstr "Lynx: không chạy được, không có tập tin quy tắc CERN %s\n"
 msgid "(no name)"
 msgstr "(không tên)"
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Có nhiá»u hÆ¡n %d lynx.cfg lồng vào nhau -- có thể là vòng lặp?!?\n"
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Lần thử thêm vào cuối cùng là '%s',\n"
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "đã thêm từ '%s'.\n"
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "Những cái sau Ä‘á»c từ tập tin lynx.cfg."
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr "Xin hãy Ä‘á»c phân phối"
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr "để biết thêm chi tiết."
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "NẠP LẠI THAY Äá»”I"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "Cấu hình chính"
 
@@ -5396,33 +5423,33 @@ msgstr "Tải lên:"
 msgid "Upload options:"
 msgstr "Tùy chá»n tải lên:"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr "URL của tài liệu tải xuống đặt vào clipboard."
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr "Giao thức truy cập không mong đợi cho sơ đồ URL này."
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "Quá nhiá»u tập tin tạm thá»i"
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr "giới hạn không rõ"
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr "Không có bộ các giới hạn.\n"
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr "Bộ các giới hạn:\n"
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "Không tìm thấy thư mục HOME"
 
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 0309409f..af39b3e6 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx-2.8.5pre9\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2002-10-15 15:13+0800\n"
 "Last-Translator: Wang Jian <lark@linux.net.cn>\n"
 "Language-Team: Chinese (simplified) <i18n-translation@lists.linux.net.cn>\n"
@@ -2209,7 +2209,7 @@ msgstr ""
 msgid "(No value.)"
 msgstr ""
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr ""
 
@@ -2506,142 +2506,147 @@ msgstr ""
 msgid "Retrying with proxy authorization information."
 msgstr ""
 
+#: LYMessages.c:796
+#, c-format
+msgid "SSL error:%s-Continue?"
+msgstr ""
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr ""
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr ""
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr ""
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr ""
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr ""
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr ""
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr ""
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr ""
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr ""
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr ""
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr ""
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr ""
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr ""
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr ""
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr ""
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr ""
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr ""
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr ""
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr ""
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr ""
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr ""
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr ""
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr ""
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr ""
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr ""
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr ""
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr ""
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr ""
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 msgid "color-style configuration"
 msgstr ""
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr ""
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr ""
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr ""
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2649,56 +2654,56 @@ msgid ""
 msgstr ""
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
 msgstr ""
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr ""
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr ""
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr ""
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr ""
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr ""
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr ""
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr ""
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr ""
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr ""
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr ""
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr ""
 
@@ -2707,24 +2712,24 @@ msgstr ""
 msgid "Username for '%s' at %s '%s%s':"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr ""
 
@@ -2740,7 +2745,7 @@ msgstr ""
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr ""
 
@@ -2763,7 +2768,7 @@ msgstr ""
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr ""
 
@@ -2953,15 +2958,15 @@ msgstr ""
 msgid "Sorry, could not load requested news."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr ""
@@ -2970,90 +2975,110 @@ msgstr ""
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+msgid "the certificate has been revoked"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+msgid "Can't find common name in certificate"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr ""
 
@@ -3066,7 +3091,7 @@ msgstr ""
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3076,7 +3101,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3086,27 +3111,27 @@ msgstr ""
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr ""
 
@@ -3114,7 +3139,7 @@ msgstr ""
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr ""
 
@@ -3292,139 +3317,139 @@ msgstr ""
 msgid "Host"
 msgstr ""
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr ""
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr ""
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr ""
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr ""
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr ""
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr ""
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr ""
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr ""
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr ""
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr ""
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr ""
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr ""
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr ""
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr ""
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr ""
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr ""
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr ""
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr ""
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr ""
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr ""
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr ""
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr ""
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr ""
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr ""
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr ""
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr ""
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr ""
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr ""
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr ""
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr ""
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr ""
 
@@ -3453,11 +3478,11 @@ msgstr ""
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr ""
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr ""
 
@@ -3477,7 +3502,7 @@ msgstr ""
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -3599,38 +3624,38 @@ msgstr ""
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr ""
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr ""
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr ""
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr ""
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr ""
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr ""
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr ""
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
 "A Fatal error has occurred in %s Ver. %s\n"
 msgstr ""
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4103,27 +4128,27 @@ msgstr ""
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr ""
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr ""
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr ""
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4131,7 +4156,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4139,166 +4164,166 @@ msgid ""
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr ""
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr ""
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr ""
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, c-format
 msgid "%s Version %s (%s)"
 msgstr ""
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr ""
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr ""
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr ""
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr ""
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr ""
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr ""
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr ""
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr ""
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr ""
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr ""
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr ""
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr ""
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr ""
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr ""
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr ""
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr ""
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr ""
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr ""
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr ""
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr ""
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 msgid "Current URL is empty."
 msgstr ""
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr ""
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr ""
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr ""
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr ""
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr ""
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr ""
 
@@ -4350,344 +4375,344 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr ""
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr ""
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr ""
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 msgid "Novice"
 msgstr ""
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 msgid "Intermediate"
 msgstr ""
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 msgid "as links"
 msgstr ""
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 msgid "show filename"
 msgstr ""
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 msgid "Directories first"
 msgstr ""
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 msgid "Files first"
 msgstr ""
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 msgid "Mixed style"
 msgstr ""
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 msgid "By Name"
 msgstr ""
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr ""
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 msgid "By Date"
 msgstr ""
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 msgid "By Group"
 msgstr ""
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, c-format
 msgid "Show %s/sec rate"
 msgstr ""
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 msgid "Accept all types"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr ""
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr ""
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr ""
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr ""
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr ""
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr ""
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr ""
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr ""
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr ""
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr ""
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr ""
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr ""
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 msgid "Use locale-based character set"
 msgstr ""
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr ""
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr ""
 
@@ -4696,172 +4721,172 @@ msgstr ""
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr ""
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr ""
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr ""
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr ""
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr ""
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr ""
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 msgid "Underline links"
 msgstr ""
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr ""
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr ""
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr ""
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr ""
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr ""
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr ""
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr ""
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 msgid "Password for anonymous ftp"
 msgstr ""
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 msgid "Preferred media type"
 msgstr ""
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 msgid "Preferred encoding"
 msgstr ""
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr ""
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr ""
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr ""
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr ""
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr ""
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr ""
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr ""
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr ""
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr ""
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr ""
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr ""
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr ""
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr ""
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr ""
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr ""
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr ""
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr ""
 
@@ -4975,38 +5000,38 @@ msgstr ""
 msgid "(no name)"
 msgstr ""
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr ""
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr ""
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr ""
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr ""
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr ""
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr ""
 
@@ -5268,33 +5293,33 @@ msgstr ""
 msgid "Upload options:"
 msgstr ""
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr ""
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr ""
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr ""
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr ""
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr ""
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr ""
 
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 60fec257..e26fd1d7 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.5pre9\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-29 16:55-0400\n"
+"POT-Creation-Date: 2006-08-31 18:50-0400\n"
 "PO-Revision-Date: 2003-02-11 19:44+0800\n"
 "Last-Translator: Abel Cheung <maddog@linux.org.hk>\n"
 "Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
@@ -2228,7 +2228,7 @@ msgstr ""
 msgid "(No value.)"
 msgstr ""
 
-#: LYMessages.c:713 src/LYOptions.c:2389
+#: LYMessages.c:713 src/LYOptions.c:2385
 msgid "None"
 msgstr ""
 
@@ -2531,143 +2531,148 @@ msgstr ""
 msgid "Retrying with proxy authorization information."
 msgstr "¥H¥N²z¦øªAµ{¦¡ªº»{ÃÒ¸ê°T­«·s¹Á¸Õ¡C"
 
+#: LYMessages.c:796
+#, fuzzy, c-format
+msgid "SSL error:%s-Continue?"
+msgstr "SSL ¿ù»~¡G¥D¾÷(%s)¤£²Å¦XÃÒ®Ñ(%s)¡C¬O§_Ä~Äò¡H"
+
 #. HTWAIS.c
-#: LYMessages.c:798
+#: LYMessages.c:799
 msgid "HTWAIS: Return message too large."
 msgstr "HTWAIS¡G¦^¶Çªº°T®§¹Lªø¡C"
 
-#: LYMessages.c:799
+#: LYMessages.c:800
 msgid "Enter WAIS query: "
 msgstr ""
 
 #. Miscellaneous status
-#: LYMessages.c:802
+#: LYMessages.c:803
 msgid "Retrying as HTTP0 request."
 msgstr "¥H HTTP0 ®æ¦¡­«¸Õ¡C"
 
-#: LYMessages.c:803
+#: LYMessages.c:804
 #, c-format
 msgid "Transferred %d bytes"
 msgstr "¤w¶Ç¿é %d ¦ì¤¸²Õ"
 
-#: LYMessages.c:804
+#: LYMessages.c:805
 msgid "Data transfer complete"
 msgstr "¸ê®Æ¶Ç¿é¤w§¹¦¨"
 
-#: LYMessages.c:805
+#: LYMessages.c:806
 #, c-format
 msgid "Error processing line %d of %s\n"
 msgstr ""
 
 #. Lynx internal page titles
-#: LYMessages.c:808
+#: LYMessages.c:809
 msgid "Address List Page"
 msgstr ""
 
-#: LYMessages.c:809
+#: LYMessages.c:810
 msgid "Bookmark file"
 msgstr "®ÑÅÒÀÉ"
 
-#: LYMessages.c:810
+#: LYMessages.c:811
 msgid "Configuration Definitions"
 msgstr ""
 
-#: LYMessages.c:811
+#: LYMessages.c:812
 msgid "Cookie Jar"
 msgstr ""
 
-#: LYMessages.c:812
+#: LYMessages.c:813
 msgid "Current Key Map"
 msgstr "¥Ø«eªº«öÁä³]©w"
 
-#: LYMessages.c:813
+#: LYMessages.c:814
 msgid "File Management Options"
 msgstr "Àɮ׺޲z¿ï¶µ"
 
-#: LYMessages.c:814
+#: LYMessages.c:815
 msgid "Download Options"
 msgstr "¤U¸ü¿ï¶µ"
 
-#: LYMessages.c:815
+#: LYMessages.c:816
 msgid "History Page"
 msgstr "ÂsÄý¬ö¿ý"
 
-#: LYMessages.c:816
+#: LYMessages.c:817
 msgid "List Page"
 msgstr "Ãìµ²²M³æ"
 
-#: LYMessages.c:817
+#: LYMessages.c:818
 msgid "Lynx.cfg Information"
 msgstr "Lynx.cfg ¸ê°T"
 
-#: LYMessages.c:818
+#: LYMessages.c:819
 msgid "Converted Mosaic Hotlist"
 msgstr ""
 
-#: LYMessages.c:819
+#: LYMessages.c:820
 msgid "Options Menu"
 msgstr "¿ï¶µ³]©w"
 
-#: LYMessages.c:820
+#: LYMessages.c:821
 msgid "File Permission Options"
 msgstr "ÀÉ®×Åv­­¿ï¶µ"
 
-#: LYMessages.c:821
+#: LYMessages.c:822
 msgid "Printing Options"
 msgstr "¦C¦L¿ï¶µ"
 
-#: LYMessages.c:822
+#: LYMessages.c:823
 msgid "Information about the current document"
 msgstr "¦³Ãö¥Ø«eªº¤å¥óªº¸ê®Æ"
 
-#: LYMessages.c:823
+#: LYMessages.c:824
 msgid "Your recent statusline messages"
 msgstr "ª¬ºA¦C³Ìªñ¥X²{ªº°T®§"
 
-#: LYMessages.c:824
+#: LYMessages.c:825
 msgid "Upload Options"
 msgstr "¤W¶Ç¿ï¶µ"
 
-#: LYMessages.c:825
+#: LYMessages.c:826
 msgid "Visited Links Page"
 msgstr ""
 
 #. CONFIG_DEF_TITLE subtitles
-#: LYMessages.c:828
+#: LYMessages.c:829
 msgid "See also"
 msgstr ""
 
-#: LYMessages.c:829
+#: LYMessages.c:830
 msgid "your"
 msgstr ""
 
-#: LYMessages.c:830
+#: LYMessages.c:831
 msgid "for runtime options"
 msgstr ""
 
-#: LYMessages.c:831
+#: LYMessages.c:832
 msgid "compile time options"
 msgstr "½sĶ¿ï¶µ"
 
-#: LYMessages.c:832
+#: LYMessages.c:833
 #, fuzzy
 msgid "color-style configuration"
 msgstr "¥D­n²ÕºA"
 
-#: LYMessages.c:833
+#: LYMessages.c:834
 msgid "latest release"
 msgstr "³Ì·sª©¥»"
 
-#: LYMessages.c:834
+#: LYMessages.c:835
 msgid "pre-release version"
 msgstr "¹wÄýª©¥»"
 
-#: LYMessages.c:835
+#: LYMessages.c:836
 msgid "development version"
 msgstr "¶}µo¤¤ª©¥»"
 
 #. #define AUTOCONF_CONFIG_CACHE
-#: LYMessages.c:837
+#: LYMessages.c:838
 msgid ""
 "The following data were derived during the automatic configuration/build\n"
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
@@ -2675,56 +2680,56 @@ msgid ""
 msgstr ""
 
 #. #define AUTOCONF_LYNXCFG_H
-#: LYMessages.c:841
+#: LYMessages.c:842
 msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
 msgstr ""
 
 #. #define DIRED_NOVICELINE
-#: LYMessages.c:846
+#: LYMessages.c:847
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
 msgstr "  C)«Ø¥ß  D)¤U¸ü  E)½s¿è  F)§¹¾ã¿ï³æ  M)­×§ï  R)²¾°£  T)¼Ð°O  U)¤W¶Ç\n"
 
-#: LYMessages.c:847
+#: LYMessages.c:848
 msgid "Failed to obtain status of current link!"
 msgstr "µLªkÀò¨ú¥Ø«eªºÃìµ²ªºª¬ºA¡I"
 
 #. #define INVALID_PERMIT_URL
-#: LYMessages.c:850
+#: LYMessages.c:851
 msgid "Special URL only valid from current File Permission menu!"
 msgstr ""
 
-#: LYMessages.c:854
+#: LYMessages.c:855
 msgid "External support is currently disabled."
 msgstr ""
 
 #. new with 2.8.4dev.21
-#: LYMessages.c:858
+#: LYMessages.c:859
 msgid "Changing working-directory is currently disabled."
 msgstr ""
 
-#: LYMessages.c:859
+#: LYMessages.c:860
 msgid "Linewrap OFF!"
 msgstr "¤wÃö³¬¦Û°Ê´«¦æ¥\¯à¡I"
 
-#: LYMessages.c:860
+#: LYMessages.c:861
 msgid "Linewrap ON!"
 msgstr "¤w¶}±Ò¦Û°Ê´«¦æ¥\¯à¡I"
 
-#: LYMessages.c:861
+#: LYMessages.c:862
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
 msgstr ""
 
-#: LYMessages.c:862
+#: LYMessages.c:863
 msgid "Parsing nested-tables toggled ON!  Reloading..."
 msgstr ""
 
-#: LYMessages.c:863
+#: LYMessages.c:864
 msgid "Shifting is disabled while line-wrap is in effect"
 msgstr ""
 
-#: LYMessages.c:864
+#: LYMessages.c:865
 msgid "Trace not supported"
 msgstr ""
 
@@ -2733,24 +2738,24 @@ msgstr ""
 msgid "Username for '%s' at %s '%s%s':"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:891
+#: WWW/Library/Implementation/HTAABrow.c:893
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:968
+#: WWW/Library/Implementation/HTAABrow.c:970
 msgid "This client doesn't know how to compose authorization information for scheme"
 msgstr ""
 
-#: WWW/Library/Implementation/HTAABrow.c:1076
+#: WWW/Library/Implementation/HTAABrow.c:1078
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
 msgstr "µL®Äªº¼ÐÀY¤º®e¡¥%s%s%s%s%s¡¦"
 
-#: WWW/Library/Implementation/HTAABrow.c:1178
+#: WWW/Library/Implementation/HTAABrow.c:1180
 msgid "Proxy authorization required -- retrying"
 msgstr "¨Ï¥Î¥N²z¦øªA¾¹«e»Ý­n»{ÃÒ ¢w ­«·s¹Á¸Õ"
 
-#: WWW/Library/Implementation/HTAABrow.c:1236
+#: WWW/Library/Implementation/HTAABrow.c:1238
 msgid "Access without authorization denied -- retrying"
 msgstr "¤´¥¼»{ÃÒ¡AµLªk¦s¨ú¤º®e ¢w ­«·s¹Á¸Õ"
 
@@ -2766,7 +2771,7 @@ msgstr ""
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8520
+#: WWW/Library/Implementation/HTAccess.c:1044 src/GridText.c:8594
 msgid "Loading incomplete."
 msgstr "¥¼§¹¦¨¸ü¤J¤º®e¡C"
 
@@ -2789,7 +2794,7 @@ msgstr "**** HTAccess¡G¦^¶Çªºª¬ºA¬°¡G%d\n"
 #. * hack: if we fail in HTAccess.c
 #. * avoid duplicating URL, oh.
 #.
-#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7733
+#: WWW/Library/Implementation/HTAccess.c:1084 src/LYMainLoop.c:7728
 msgid "Can't Access"
 msgstr "µLªk¦s¨ú"
 
@@ -2981,15 +2986,15 @@ msgstr ""
 msgid "Sorry, could not load requested news."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1273
+#: WWW/Library/Implementation/HTTCP.c:1274
 msgid "Address has invalid port"
 msgstr "¦a§}¤¤ªº³s±µ°ðµL®Ä"
 
-#: WWW/Library/Implementation/HTTCP.c:1349
+#: WWW/Library/Implementation/HTTCP.c:1350
 msgid "Address length looks invalid"
 msgstr "¦a§}ªø«×¦ü¥GµL®Ä"
 
-#: WWW/Library/Implementation/HTTCP.c:1580 WWW/Library/Implementation/HTTCP.c:1598
+#: WWW/Library/Implementation/HTTCP.c:1581 WWW/Library/Implementation/HTTCP.c:1599
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "§ä¤£¨ì»·ºÝ¥D¾÷ %s¡C"
@@ -2998,90 +3003,111 @@ msgstr "§ä¤£¨ì»·ºÝ¥D¾÷ %s¡C"
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1595 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1596 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "µL®Äªº¥D¾÷¦WºÙ %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1609
+#: WWW/Library/Implementation/HTTCP.c:1610
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "¥¿¦b«Ø¥ß %s ³s½u¡A³s¦Ü %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1620
+#: WWW/Library/Implementation/HTTCP.c:1621
 msgid "socket failed."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1633
+#: WWW/Library/Implementation/HTTCP.c:1634
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1657
+#: WWW/Library/Implementation/HTTCP.c:1658
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1725
+#: WWW/Library/Implementation/HTTCP.c:1726
 msgid "Connection failed (too many retries)."
 msgstr "³s½u¥¢±Ñ (­«¸Õ¦¸¼Æ¤Ó¦h)¡C"
 
-#: WWW/Library/Implementation/HTTCP.c:1924
+#: WWW/Library/Implementation/HTTCP.c:1925
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1990
+#: WWW/Library/Implementation/HTTCP.c:1991
 msgid "Socket read failed for 180,000 tries."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:348
+#: WWW/Library/Implementation/HTTP.c:376
 #, c-format
 msgid "Address contains a username: %s"
 msgstr "¦a¤î¤¤§t¦³±b¤á¦WºÙ¡G%s"
 
-#: WWW/Library/Implementation/HTTP.c:539
+#: WWW/Library/Implementation/HTTP.c:572
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "¦¹ÂsÄý¾¹¤£¤ä´© HTTPS URL¡C"
 
-#: WWW/Library/Implementation/HTTP.c:564
+#: WWW/Library/Implementation/HTTP.c:597
 msgid "Unable to connect to remote host."
 msgstr "µLªkÁpµ¸»·ºÝ¥D¾÷¡C"
 
-#: WWW/Library/Implementation/HTTP.c:586
+#: WWW/Library/Implementation/HTTP.c:619
 msgid "Retrying connection without TLS."
 msgstr "¹Á¸Õ¥H¤£¥Î TLS ªº¤è¦¡³s½u¡C"
 
-#: WWW/Library/Implementation/HTTP.c:661
+#: WWW/Library/Implementation/HTTP.c:664
+msgid "no issuer was found"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:666
+msgid "issuer is not a CA"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:668
+msgid "the certificate has no known issuer"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:670
+#, fuzzy
+msgid "the certificate has been revoked"
+msgstr "¸Ó cookie ¤w¸g³Q§R°£¤F¡I"
+
+#: WWW/Library/Implementation/HTTP.c:672
+msgid "the certificate is not trusted"
+msgstr ""
+
+#: WWW/Library/Implementation/HTTP.c:747
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:685
-msgid "SSL error:Can't find common name in certificate-Continue?"
+#: WWW/Library/Implementation/HTTP.c:771
+msgid "Can't find common name in certificate"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:688
+#: WWW/Library/Implementation/HTTP.c:774
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL ¿ù»~¡G¥D¾÷(%s)¤£²Å¦XÃÒ®Ñ(%s)¡C¬O§_Ä~Äò¡H"
 
-#: WWW/Library/Implementation/HTTP.c:703
+#: WWW/Library/Implementation/HTTP.c:789
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "%d ¦ì¤¸ %s (%s) ¦w¥þ HTTP ³s½u"
 
-#: WWW/Library/Implementation/HTTP.c:1173
+#: WWW/Library/Implementation/HTTP.c:1259
 msgid "Sending HTTP request."
 msgstr "¥¿¦b°e¥X HTTP ­n¨D¡C"
 
-#: WWW/Library/Implementation/HTTP.c:1212
+#: WWW/Library/Implementation/HTTP.c:1298
 msgid "Unexpected network write error; connection aborted."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1218
+#: WWW/Library/Implementation/HTTP.c:1304
 msgid "HTTP request sent; waiting for response."
 msgstr "¤w¶i¥X HTTP ­n¨D¡F¥¿¦bµ¥«Ý¦^À³¡C"
 
-#: WWW/Library/Implementation/HTTP.c:1286
+#: WWW/Library/Implementation/HTTP.c:1372
 msgid "Unexpected network read error; connection aborted."
 msgstr ""
 
@@ -3094,7 +3120,7 @@ msgstr ""
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1480
+#: WWW/Library/Implementation/HTTP.c:1566
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3104,7 +3130,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1514
+#: WWW/Library/Implementation/HTTP.c:1600
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3114,27 +3140,27 @@ msgstr ""
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1631
+#: WWW/Library/Implementation/HTTP.c:1717
 msgid "Got unexpected 304 Not Modified status."
 msgstr "¥X²{¹w®Æ¤§¥~ªº 304 Not Modified ª¬ºA¡C"
 
-#: WWW/Library/Implementation/HTTP.c:1694
+#: WWW/Library/Implementation/HTTP.c:1780
 msgid "Redirection of POST content requires user approval."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1709
+#: WWW/Library/Implementation/HTTP.c:1795
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1751
+#: WWW/Library/Implementation/HTTP.c:1837
 msgid "Retrying with access authorization information."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1763
+#: WWW/Library/Implementation/HTTP.c:1849
 msgid "Show the 401 message body?"
 msgstr "¬O§_Åã¥Ü 401 ¿ù»~°T®§ªººô­¶¤º®e¡H"
 
-#: WWW/Library/Implementation/HTTP.c:1806
+#: WWW/Library/Implementation/HTTP.c:1892
 msgid "Show the 407 message body?"
 msgstr "¬O§_Åã¥Ü 407 ¿ù»~°T®§ªººô­¶¤º®e¡H"
 
@@ -3142,7 +3168,7 @@ msgstr "¬O§_Åã¥Ü 407 ¿ù»~°T®§ªººô­¶¤º®e¡H"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1906
+#: WWW/Library/Implementation/HTTP.c:1992
 msgid "Unknown status reply from server!"
 msgstr "¦øªA¾¹µo¥X¤£©úªºª¬ºA¦^À³°T®§¡I"
 
@@ -3320,139 +3346,139 @@ msgstr "ºûÅ@ªÌ"
 msgid "Host"
 msgstr "¥D¾÷"
 
-#: src/GridText.c:709
+#: src/GridText.c:715
 msgid "Memory exhausted, display interrupted!"
 msgstr "°O¾ÐÅé¯ÓºÉ¡A¥²¶·¤¤Â_Åã¥Ü¡I"
 
-#: src/GridText.c:714
+#: src/GridText.c:720
 msgid "Memory exhausted, will interrupt transfer!"
 msgstr "°O¾ÐÅé¯ÓºÉ¡A¥²¶·¤¤Â_¶Ç¿é¡I"
 
-#: src/GridText.c:3590
+#: src/GridText.c:3660
 msgid " *** MEMORY EXHAUSTED ***"
 msgstr "*** °O¾ÐÅé¯ÓºÉ ***"
 
-#: src/GridText.c:6022 src/GridText.c:6029 src/LYList.c:239
+#: src/GridText.c:6095 src/GridText.c:6102 src/LYList.c:239
 msgid "unknown field or link"
 msgstr "¤£©úªºÄæ¦ì©ÎÃìµ²"
 
-#: src/GridText.c:6038
+#: src/GridText.c:6111
 msgid "text entry field"
 msgstr "¤å¦r¿é¤JÄæ¦ì"
 
-#: src/GridText.c:6041
+#: src/GridText.c:6114
 msgid "password entry field"
 msgstr "±K½X¿é¤JÄæ¦ì"
 
-#: src/GridText.c:6044
+#: src/GridText.c:6117
 msgid "checkbox"
 msgstr ""
 
-#: src/GridText.c:6047
+#: src/GridText.c:6120
 msgid "radio button"
 msgstr ""
 
-#: src/GridText.c:6050
+#: src/GridText.c:6123
 msgid "submit button"
 msgstr ""
 
-#: src/GridText.c:6053
+#: src/GridText.c:6126
 msgid "reset button"
 msgstr ""
 
-#: src/GridText.c:6056
+#: src/GridText.c:6129
 msgid "popup menu"
 msgstr ""
 
-#: src/GridText.c:6059
+#: src/GridText.c:6132
 msgid "hidden form field"
 msgstr ""
 
-#: src/GridText.c:6062
+#: src/GridText.c:6135
 msgid "text entry area"
 msgstr "¤å¦r¿é¤J°Ï°ì"
 
-#: src/GridText.c:6065
+#: src/GridText.c:6138
 msgid "range entry field"
 msgstr ""
 
-#: src/GridText.c:6068
+#: src/GridText.c:6141
 msgid "file entry field"
 msgstr "ÀɮצWºÙ¿é¤JÄæ¦ì"
 
-#: src/GridText.c:6071
+#: src/GridText.c:6144
 msgid "text-submit field"
 msgstr ""
 
-#: src/GridText.c:6074
+#: src/GridText.c:6147
 msgid "image-submit button"
 msgstr ""
 
-#: src/GridText.c:6077
+#: src/GridText.c:6150
 msgid "keygen field"
 msgstr ""
 
-#: src/GridText.c:6080
+#: src/GridText.c:6153
 msgid "unknown form field"
 msgstr ""
 
-#: src/GridText.c:10253
+#: src/GridText.c:10327
 msgid "Can't open file for uploading"
 msgstr "µLªk¶}±Ò·Ç³Æ¤W¶ÇªºÀÉ®×"
 
-#: src/GridText.c:11406
+#: src/GridText.c:11480
 #, c-format
 msgid "Submitting %s"
 msgstr ""
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12555
+#: src/GridText.c:12629
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12760
+#: src/GridText.c:12834
 msgid "Wrap lines to fit displayed area?"
 msgstr "¬O§_¶i¦æ¦Û°Ê´«¦æ¨Ó²Å¦Xµe­±¤Ø¤o¡H"
 
-#: src/GridText.c:12812
+#: src/GridText.c:12886
 msgid "Very long lines have been wrapped!"
 msgstr ""
 
-#: src/GridText.c:13254
+#: src/GridText.c:13328
 msgid "Very long lines have been truncated!"
 msgstr ""
 
-#: src/HTAlert.c:142 src/LYShowInfo.c:358 src/LYShowInfo.c:362
+#: src/HTAlert.c:149 src/LYShowInfo.c:358 src/LYShowInfo.c:362
 msgid "bytes"
 msgstr "¦ì¤¸²Õ"
 
-#: src/HTAlert.c:271
+#: src/HTAlert.c:278
 #, c-format
 msgid "Read %s of %s of data"
 msgstr "¤wŪ¨ú %s (Á`¼Æ %s) ¸ê®Æ"
 
-#: src/HTAlert.c:273
+#: src/HTAlert.c:280
 #, c-format
 msgid "Read %s of data"
 msgstr "¤wŪ¨ú %s ¸ê®Æ"
 
-#: src/HTAlert.c:278
+#: src/HTAlert.c:285
 #, c-format
 msgid ", %s/sec"
 msgstr "¡A¨C¬í %s"
 
-#: src/HTAlert.c:287
+#: src/HTAlert.c:294
 #, c-format
 msgid " (stalled for %s)"
 msgstr " (°±¤î¤F %s)"
 
-#: src/HTAlert.c:291
+#: src/HTAlert.c:298
 #, c-format
 msgid ", ETA %s"
 msgstr "¡A¦ô­p %s «á§¹¦¨"
 
-#: src/HTAlert.c:298
+#: src/HTAlert.c:305
 msgid " (Press 'z' to abort)"
 msgstr " (½Ð«ö¡¥z¡¦¤¤¤î)"
 
@@ -3481,11 +3507,11 @@ msgstr " (½Ð«ö¡¥z¡¦¤¤¤î)"
 #. * Lynx will also accept y Y n N as responses unless there is a conflict
 #. * with the first letter of the "yes" or "no" translation.
 #.
-#: src/HTAlert.c:336 src/HTAlert.c:384
+#: src/HTAlert.c:343 src/HTAlert.c:391
 msgid "yes"
 msgstr "yes"
 
-#: src/HTAlert.c:339 src/HTAlert.c:385
+#: src/HTAlert.c:346 src/HTAlert.c:392
 msgid "no"
 msgstr "no"
 
@@ -3505,7 +3531,7 @@ msgstr "no"
 #. * (Y/N/Always/neVer)              - English (original)
 #. * (O/N/Toujours/Jamais)           - French
 #.
-#: src/HTAlert.c:841
+#: src/HTAlert.c:848
 msgid "Y/N/A/V"
 msgstr ""
 
@@ -3633,31 +3659,31 @@ msgstr "¤º³¡"
 msgid "cookie_domain_flag_set error, aborting program"
 msgstr "cookie_domain_flag_set ¿ù»~¡A¤¤¤îµ{¦¡"
 
-#: src/LYCurses.c:1028
+#: src/LYCurses.c:1096
 msgid "Terminal initialisation failed - unknown terminal type?"
 msgstr "µLªkªì©l¤Æ²×ºÝ¾÷ ¢w ²×ºÝ¾÷Ãþ«¬¤£¸Ô¡H"
 
-#: src/LYCurses.c:1453
+#: src/LYCurses.c:1525
 msgid "Terminal ="
 msgstr "²×ºÝ¾÷Ãþ«¬ ="
 
-#: src/LYCurses.c:1457
+#: src/LYCurses.c:1529
 msgid "You must use a vt100, 200, etc. terminal with this program."
 msgstr "¨Ï¥Î¥»µ{¦¡®É²×ºÝ¾÷ªºÃþ«¬¥²¶·¬O vt100¡B200 µ¥µ¥¡C"
 
-#: src/LYCurses.c:1506
+#: src/LYCurses.c:1578
 msgid "Your Terminal type is unknown!"
 msgstr "²×ºÝ¾÷Ãþ«¬¤£©ú¡I"
 
-#: src/LYCurses.c:1507
+#: src/LYCurses.c:1579
 msgid "Enter a terminal type:"
 msgstr "½Ð¿é¤J²×ºÝ¾÷Ãþ«¬¡G"
 
-#: src/LYCurses.c:1521
+#: src/LYCurses.c:1593
 msgid "TERMINAL TYPE IS SET TO"
 msgstr "²×ºÝ¾÷Ãþ«¬¤w³]©w¬°"
 
-#: src/LYCurses.c:2025
+#: src/LYCurses.c:2096
 #, c-format
 msgid ""
 "\n"
@@ -3666,7 +3692,7 @@ msgstr ""
 "\n"
 "¦b %s ª©¥» %s ¥X²{ÄY­«¿ù»~\n"
 
-#: src/LYCurses.c:2028
+#: src/LYCurses.c:2099
 #, c-format
 msgid ""
 "\n"
@@ -4144,30 +4170,30 @@ msgstr ""
 msgid "No system mailer configured"
 msgstr ""
 
-#: src/LYMain.c:1000
+#: src/LYMain.c:1003
 msgid "No Winsock found, sorry."
 msgstr "§ä¤£¨ì Winsock¡A©êºp¡C"
 
-#: src/LYMain.c:1195
+#: src/LYMain.c:1196
 msgid "You MUST define a valid TMP or TEMP area!"
 msgstr "»Õ¤U *¥²¶·* «ü©w¦³®Äªº TMP ©Î TEMP ¦ì¸m¡I"
 
-#: src/LYMain.c:1248 src/LYMainLoop.c:5038
+#: src/LYMain.c:1249 src/LYMainLoop.c:5026
 msgid "No such directory"
 msgstr "¸Ó¥Ø¿ý¤£¦s¦b"
 
-#: src/LYMain.c:1455
+#: src/LYMain.c:1456
 #, c-format
 msgid ""
 "\n"
-"Configuration file %s is not available.\n"
+"Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "³]©wÀÉ %s ¤£¦s¦b¡C\n"
 "\n"
 
-#: src/LYMain.c:1465
+#: src/LYMain.c:1466
 #, c-format
 msgid ""
 "\n"
@@ -4178,7 +4204,7 @@ msgstr ""
 "¥¼«Å§i Lynx ©Ò¥Îªº¦r¤¸¶°¡C\n"
 "\n"
 
-#: src/LYMain.c:1494
+#: src/LYMain.c:1495
 #, c-format
 msgid ""
 "\n"
@@ -4186,170 +4212,170 @@ msgid ""
 "\n"
 msgstr ""
 
-#: src/LYMain.c:1520
+#: src/LYMain.c:1571
 #, c-format
 msgid ""
 "\n"
-"Lynx file %s is not available.\n"
+"Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
 "\n"
 "Lynx ÀÉ®× %s ¤£¦s¦b¡C\n"
 "\n"
 
-#: src/LYMain.c:1750
+#: src/LYMain.c:1762
 msgid "Warning:"
 msgstr "ĵ§i¡G"
 
-#: src/LYMain.c:2315
+#: src/LYMain.c:2327
 msgid "persistent cookies state will be changed in next session only."
 msgstr ""
 
-#: src/LYMain.c:2552 src/LYMain.c:2597
+#: src/LYMain.c:2564 src/LYMain.c:2609
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
 msgstr "Lynx¡G©¿²¤µLªkÃѧOªº¦r¤¸¶° %s\n"
 
-#: src/LYMain.c:3108
+#: src/LYMain.c:3120
 #, fuzzy, c-format
 msgid "%s Version %s (%s)"
 msgstr "%s ª©¥» %s (%s)\n"
 
-#: src/LYMain.c:3143
+#: src/LYMain.c:3155
 #, c-format
 msgid "Built on %s %s %s\n"
 msgstr "½sĶ©ó %s %s %s\n"
 
-#: src/LYMain.c:3165
+#: src/LYMain.c:3177
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
 msgstr "ª©Åv©Ò¦³¡GUniversity of Kansas¡BCERN ¤Î¨ä¥¦¦³°^ÄmªÌ¡C"
 
-#: src/LYMain.c:3166
+#: src/LYMain.c:3178
 msgid "Distributed under the GNU General Public License."
 msgstr "¨Ï¥Î GNU General Public License µo§G¡C"
 
-#: src/LYMain.c:3167
+#: src/LYMain.c:3179
 msgid "See http://lynx.isc.org/ and the online help for more information."
 msgstr "­Y»Ý­n§ó¦h¸ê®Æ¡A½ÐÂsÄý http://lynx.isc.org/ ¤Îºô¤Wªº»¡©ú¤å¥ó¡C"
 
-#: src/LYMain.c:3938
+#: src/LYMain.c:3954
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
 msgstr "¥Îªk¡G%s [¿ï¶µ] [ÀÉ®×]\n"
 
-#: src/LYMain.c:3939
+#: src/LYMain.c:3955
 #, c-format
 msgid "Options are:\n"
 msgstr "¿ï¶µ¥]¬A¡G\n"
 
-#: src/LYMain.c:4238
+#: src/LYMain.c:4254
 #, c-format
 msgid "%s: Invalid Option: %s\n"
 msgstr "%s¡GµL®Äªº¿ï¶µ¡G%s\n"
 
-#: src/LYMainLoop.c:575
+#: src/LYMainLoop.c:583
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
 msgstr ""
 
-#: src/LYMainLoop.c:692 src/LYMainLoop.c:5060
+#: src/LYMainLoop.c:700 src/LYMainLoop.c:5048
 msgid "A URL specified by the user"
 msgstr "¥Ñ¨Ï¥ÎªÌ«ü©wªº URL"
 
-#: src/LYMainLoop.c:1148
+#: src/LYMainLoop.c:1156
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
 msgstr ""
 
 #.
 #. * Make a name for this help file.
 #.
-#: src/LYMainLoop.c:3045
+#: src/LYMainLoop.c:3052
 msgid "Help Screen"
 msgstr "¨D§U»¡©úµe­±"
 
-#: src/LYMainLoop.c:3166
+#: src/LYMainLoop.c:3173
 msgid "System Index"
 msgstr ""
 
-#: src/LYMainLoop.c:3526 src/LYMainLoop.c:5284
+#: src/LYMainLoop.c:3533 src/LYMainLoop.c:5273
 msgid "Entry into main screen"
 msgstr ""
 
-#: src/LYMainLoop.c:3789
+#: src/LYMainLoop.c:3791
 msgid "No next document present"
 msgstr ""
 
-#: src/LYMainLoop.c:4088
+#: src/LYMainLoop.c:4089
 msgid "charset for this document specified explicitly, sorry..."
 msgstr "©êºp¡A¸Ó¤å¥ó¤w¸g¯S¦a«ü©w¤F¦r¤¸¶°..."
 
-#: src/LYMainLoop.c:5014
+#: src/LYMainLoop.c:5002
 msgid "cd to:"
 msgstr "·Ç³Æ¶i¤Jªº¥Ø¿ý¡G"
 
-#: src/LYMainLoop.c:5041
+#: src/LYMainLoop.c:5029
 msgid "A component of path is not a directory"
 msgstr "¸ô®|¤¤ªº¤@³¡¥÷¤£¬O¥Ø¿ý"
 
-#: src/LYMainLoop.c:5044
+#: src/LYMainLoop.c:5032
 msgid "failed to change directory"
 msgstr "µLªk¶i¤J¥Ø¿ý"
 
-#: src/LYMainLoop.c:6205
+#: src/LYMainLoop.c:6202
 msgid "Reparsing document under current settings..."
 msgstr "®Ú¾Ú¥Ø«eªº³]©w­«·s¤ÀªR¤å¥ó..."
 
-#: src/LYMainLoop.c:6496
+#: src/LYMainLoop.c:6493
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
 msgstr "ÄY­«¿ù»~ ¢w µLªk¶}±Ò¿é¥XÀÉ %s\n"
 
-#: src/LYMainLoop.c:6841
+#: src/LYMainLoop.c:6836
 msgid "TABLE center enable."
 msgstr ""
 
-#: src/LYMainLoop.c:6844
+#: src/LYMainLoop.c:6839
 msgid "TABLE center disable."
 msgstr ""
 
-#: src/LYMainLoop.c:6921
+#: src/LYMainLoop.c:6916
 #, fuzzy
 msgid "Current URL is empty."
 msgstr "¥Ø«eªº¥Ø¿ý¡G"
 
-#: src/LYMainLoop.c:6923 src/LYUtils.c:1790
+#: src/LYMainLoop.c:6918 src/LYUtils.c:1793
 msgid "Copy to clipboard failed."
 msgstr ""
 
-#: src/LYMainLoop.c:6925
+#: src/LYMainLoop.c:6920
 msgid "Document URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6927
+#: src/LYMainLoop.c:6922
 msgid "Link URL put to clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:6954
+#: src/LYMainLoop.c:6949
 msgid "No URL in the clipboard."
 msgstr ""
 
-#: src/LYMainLoop.c:7618 src/LYMainLoop.c:7788
+#: src/LYMainLoop.c:7613 src/LYMainLoop.c:7783
 msgid "-index-"
 msgstr "¢w¯Á¤Þ¢w"
 
-#: src/LYMainLoop.c:7728
+#: src/LYMainLoop.c:7723
 msgid "lynx: Can't access startfile"
 msgstr "lynx¡GµLªk¦s¨ú¶}©lªººô­¶"
 
-#: src/LYMainLoop.c:7740
+#: src/LYMainLoop.c:7735
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
 msgstr ""
 
-#: src/LYMainLoop.c:7741
+#: src/LYMainLoop.c:7736
 msgid "      Exiting..."
 msgstr "      ·Ç³ÆÂ÷¶}..."
 
-#: src/LYMainLoop.c:7782
+#: src/LYMainLoop.c:7777
 msgid "-more-"
 msgstr "¢wÁÙ¦³¤º®e¢w"
 
@@ -4413,355 +4439,355 @@ msgstr ""
 msgid "Message has no original text!"
 msgstr ""
 
-#: src/LYOptions.c:765
+#: src/LYOptions.c:761
 msgid "review/edit B)ookmarks files"
 msgstr ""
 
-#: src/LYOptions.c:767
+#: src/LYOptions.c:763
 msgid "B)ookmark file: "
 msgstr "B)®ÑÅÒÀÉ¡G"
 
-#: src/LYOptions.c:2130 src/LYOptions.c:2137
+#: src/LYOptions.c:2126 src/LYOptions.c:2133
 msgid "ON"
 msgstr ""
 
 #. verbose_img variable
-#: src/LYOptions.c:2131 src/LYOptions.c:2136 src/LYOptions.c:2284 src/LYOptions.c:2295
+#: src/LYOptions.c:2127 src/LYOptions.c:2132 src/LYOptions.c:2280 src/LYOptions.c:2291
 msgid "OFF"
 msgstr ""
 
-#: src/LYOptions.c:2132
+#: src/LYOptions.c:2128
 msgid "NEVER"
 msgstr ""
 
-#: src/LYOptions.c:2133
+#: src/LYOptions.c:2129
 msgid "ALWAYS"
 msgstr ""
 
-#: src/LYOptions.c:2149 src/LYOptions.c:2276
+#: src/LYOptions.c:2145 src/LYOptions.c:2272
 msgid "ignore"
 msgstr ""
 
-#: src/LYOptions.c:2150
+#: src/LYOptions.c:2146
 msgid "ask user"
 msgstr ""
 
-#: src/LYOptions.c:2151
+#: src/LYOptions.c:2147
 msgid "accept all"
 msgstr ""
 
-#: src/LYOptions.c:2163
+#: src/LYOptions.c:2159
 msgid "ALWAYS OFF"
 msgstr ""
 
-#: src/LYOptions.c:2164
+#: src/LYOptions.c:2160
 msgid "FOR LOCAL FILES ONLY"
 msgstr ""
 
-#: src/LYOptions.c:2166
+#: src/LYOptions.c:2162
 msgid "ALWAYS ON"
 msgstr ""
 
-#: src/LYOptions.c:2178
+#: src/LYOptions.c:2174
 msgid "Numbers act as arrows"
 msgstr ""
 
-#: src/LYOptions.c:2180
+#: src/LYOptions.c:2176
 msgid "Links are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2183
+#: src/LYOptions.c:2179
 msgid "Links and form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2186
+#: src/LYOptions.c:2182
 msgid "Form fields are numbered"
 msgstr ""
 
-#: src/LYOptions.c:2196
+#: src/LYOptions.c:2192
 msgid "Case insensitive"
 msgstr ""
 
-#: src/LYOptions.c:2197
+#: src/LYOptions.c:2193
 msgid "Case sensitive"
 msgstr ""
 
-#: src/LYOptions.c:2221
+#: src/LYOptions.c:2217
 msgid "prompt normally"
 msgstr ""
 
-#: src/LYOptions.c:2222
+#: src/LYOptions.c:2218
 msgid "force yes-response"
 msgstr ""
 
-#: src/LYOptions.c:2223
+#: src/LYOptions.c:2219
 msgid "force no-response"
 msgstr ""
 
-#: src/LYOptions.c:2241
+#: src/LYOptions.c:2237
 msgid "Novice"
 msgstr ""
 
-#: src/LYOptions.c:2242
+#: src/LYOptions.c:2238
 #, fuzzy
 msgid "Intermediate"
 msgstr "¤º³¡"
 
-#: src/LYOptions.c:2243
+#: src/LYOptions.c:2239
 msgid "Advanced"
 msgstr ""
 
-#: src/LYOptions.c:2252
+#: src/LYOptions.c:2248
 msgid "By First Visit"
 msgstr ""
 
-#: src/LYOptions.c:2254
+#: src/LYOptions.c:2250
 msgid "By First Visit Reversed"
 msgstr ""
 
-#: src/LYOptions.c:2255
+#: src/LYOptions.c:2251
 msgid "As Visit Tree"
 msgstr ""
 
-#: src/LYOptions.c:2256
+#: src/LYOptions.c:2252
 msgid "By Last Visit"
 msgstr ""
 
-#: src/LYOptions.c:2258
+#: src/LYOptions.c:2254
 msgid "By Last Visit Reversed"
 msgstr ""
 
 #. Old_DTD variable
-#: src/LYOptions.c:2269
+#: src/LYOptions.c:2265
 msgid "relaxed (TagSoup mode)"
 msgstr ""
 
-#: src/LYOptions.c:2270
+#: src/LYOptions.c:2266
 msgid "strict (SortaSGML mode)"
 msgstr ""
 
-#: src/LYOptions.c:2277
+#: src/LYOptions.c:2273
 msgid "as labels"
 msgstr ""
 
-#: src/LYOptions.c:2278
+#: src/LYOptions.c:2274
 #, fuzzy
 msgid "as links"
 msgstr "¤£ÁôÂêºÃìµ²"
 
-#: src/LYOptions.c:2285
+#: src/LYOptions.c:2281
 #, fuzzy
 msgid "show filename"
 msgstr "«ØijªºÀɮצWºÙ¡G"
 
-#: src/LYOptions.c:2296
+#: src/LYOptions.c:2292
 msgid "STANDARD"
 msgstr ""
 
-#: src/LYOptions.c:2297
+#: src/LYOptions.c:2293
 msgid "ADVANCED"
 msgstr ""
 
-#: src/LYOptions.c:2323
+#: src/LYOptions.c:2319
 #, fuzzy
 msgid "Directories first"
 msgstr "°Æ¥Ø¿ý¡G"
 
-#: src/LYOptions.c:2324
+#: src/LYOptions.c:2320
 #, fuzzy
 msgid "Files first"
 msgstr " (­º¥ý´ú¸Õ)"
 
-#: src/LYOptions.c:2325
+#: src/LYOptions.c:2321
 #, fuzzy
 msgid "Mixed style"
 msgstr "¤å¦r½s¿è¼Ò¦¡"
 
-#: src/LYOptions.c:2333 src/LYOptions.c:2350
+#: src/LYOptions.c:2329 src/LYOptions.c:2346
 #, fuzzy
 msgid "By Name"
 msgstr "¦WºÙ¡G"
 
-#: src/LYOptions.c:2334 src/LYOptions.c:2351
+#: src/LYOptions.c:2330 src/LYOptions.c:2347
 msgid "By Type"
 msgstr ""
 
-#: src/LYOptions.c:2335 src/LYOptions.c:2352
+#: src/LYOptions.c:2331 src/LYOptions.c:2348
 msgid "By Size"
 msgstr ""
 
-#: src/LYOptions.c:2336 src/LYOptions.c:2353
+#: src/LYOptions.c:2332 src/LYOptions.c:2349
 #, fuzzy
 msgid "By Date"
 msgstr "¤é´Á¡G"
 
-#: src/LYOptions.c:2337
+#: src/LYOptions.c:2333
 msgid "By Mode"
 msgstr ""
 
-#: src/LYOptions.c:2339
+#: src/LYOptions.c:2335
 msgid "By User"
 msgstr ""
 
-#: src/LYOptions.c:2340
+#: src/LYOptions.c:2336
 #, fuzzy
 msgid "By Group"
 msgstr "©ÒÄݸs²Õ"
 
-#: src/LYOptions.c:2361
+#: src/LYOptions.c:2357
 msgid "Do not show rate"
 msgstr ""
 
-#: src/LYOptions.c:2362 src/LYOptions.c:2363
+#: src/LYOptions.c:2358 src/LYOptions.c:2359
 #, fuzzy, c-format
 msgid "Show %s/sec rate"
 msgstr "Åã¥Ü¶Ç¿é³t²v"
 
-#: src/LYOptions.c:2365 src/LYOptions.c:2366
+#: src/LYOptions.c:2361 src/LYOptions.c:2362
 #, c-format
 msgid "Show %s/sec, ETA"
 msgstr ""
 
-#: src/LYOptions.c:2378
+#: src/LYOptions.c:2374
 msgid "Accept lynx's internal types"
 msgstr ""
 
-#: src/LYOptions.c:2379
+#: src/LYOptions.c:2375
 msgid "Also accept lynx.cfg's types"
 msgstr ""
 
-#: src/LYOptions.c:2380
+#: src/LYOptions.c:2376
 msgid "Also accept user's types"
 msgstr ""
 
-#: src/LYOptions.c:2381
+#: src/LYOptions.c:2377
 msgid "Also accept system's types"
 msgstr ""
 
-#: src/LYOptions.c:2382
+#: src/LYOptions.c:2378
 #, fuzzy
 msgid "Accept all types"
 msgstr "±µ¨ü§ó§ï"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2387
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2392
+#: src/LYOptions.c:2388
 msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2395
+#: src/LYOptions.c:2391
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2398
+#: src/LYOptions.c:2394
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2396
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2668 src/LYOptions.c:2692
+#: src/LYOptions.c:2664 src/LYOptions.c:2688
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr ""
 
-#: src/LYOptions.c:3442
+#: src/LYOptions.c:3438
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3450
+#: src/LYOptions.c:3446
 msgid "General Preferences"
 msgstr "¤@¯ë°¾¦n³]©w"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3454
+#: src/LYOptions.c:3450
 msgid "User mode"
 msgstr "¨Ï¥ÎªÌ¼Ò¦¡"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3460
+#: src/LYOptions.c:3456
 msgid "Editor"
 msgstr "½s¿è¾¹"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3465
+#: src/LYOptions.c:3461
 msgid "Type of Search"
 msgstr "·j´M¤è¦¡"
 
-#: src/LYOptions.c:3470
+#: src/LYOptions.c:3466
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3470
 msgid "Cookies"
 msgstr "Cookie"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3488
+#: src/LYOptions.c:3484
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3495
+#: src/LYOptions.c:3491
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3501
+#: src/LYOptions.c:3497
 msgid "Keyboard Input"
 msgstr "Áä½L¿é¤J"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3505
+#: src/LYOptions.c:3501
 msgid "Keypad mode"
 msgstr "¼Æ¦rÁä½L¼Ò¦¡"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3511
+#: src/LYOptions.c:3507
 msgid "Emacs keys"
 msgstr "Emacs ²Õ¦XÁä"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3517
+#: src/LYOptions.c:3513
 msgid "VI keys"
 msgstr "VI ²Õ¦XÁä"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3524
+#: src/LYOptions.c:3520
 msgid "Line edit style"
 msgstr "¤å¦r½s¿è¼Ò¦¡"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3536
+#: src/LYOptions.c:3532
 msgid "Keyboard layout"
 msgstr "Áä½L°t¸m"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3550
+#: src/LYOptions.c:3546
 msgid "Display and Character Set"
 msgstr "Åã¥Ü¤Î¦r¤¸¶°"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3555
+#: src/LYOptions.c:3551
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "«á³Æªº¦r¤¸¶°"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3564
+#: src/LYOptions.c:3560
 msgid "Display character set"
 msgstr "¹w³]Åã¥Üªº¦r¤¸¶°"
 
-#: src/LYOptions.c:3595
+#: src/LYOptions.c:3591
 msgid "Assumed document character set"
 msgstr "«á³Æªº¦r¤¸¶°"
 
@@ -4770,176 +4796,176 @@ msgstr "«á³Æªº¦r¤¸¶°"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3615
+#: src/LYOptions.c:3611
 msgid "CJK mode"
 msgstr "CJK ¼Ò¦¡"
 
-#: src/LYOptions.c:3617
+#: src/LYOptions.c:3613
 msgid "Raw 8-bit"
 msgstr "8-bit ­ì©l¼Ò¦¡"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3625
+#: src/LYOptions.c:3621
 msgid "X Display"
 msgstr "X µe­±"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3631
+#: src/LYOptions.c:3627
 msgid "Document Appearance"
 msgstr "¤å¥ó¥~Æ["
 
-#: src/LYOptions.c:3637
+#: src/LYOptions.c:3633
 msgid "Show color"
 msgstr "Åã¥Ü¦â±m"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3661
+#: src/LYOptions.c:3657
 msgid "Show cursor"
 msgstr "Åã¥Ü´å¼Ð"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3667
+#: src/LYOptions.c:3663
 #, fuzzy
 msgid "Underline links"
 msgstr "ÁôÂêºÃìµ²¡G"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3674
+#: src/LYOptions.c:3670
 msgid "Show scrollbar"
 msgstr "Åã¥Ü±²°Ê¦C"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3681
+#: src/LYOptions.c:3677
 msgid "Popups for select fields"
 msgstr ""
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3687
+#: src/LYOptions.c:3683
 msgid "HTML error recovery"
 msgstr ""
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3693
+#: src/LYOptions.c:3689
 msgid "Show images"
 msgstr "Åã¥Ü¹Ï¹³"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3707
+#: src/LYOptions.c:3703
 msgid "Verbose images"
 msgstr "¹Ï¹³¸Ô²Ó¸ê®Æ"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:3715
+#: src/LYOptions.c:3711
 msgid "Headers Transferred to Remote Servers"
 msgstr "¶Ç°e¦Ü»·ºÝ¦øªA¾¹ªº¼ÐÀY¸ê®Æ"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3719
+#: src/LYOptions.c:3715
 msgid "Personal mail address"
 msgstr "­Ó¤H¹q¶l¦a§}"
 
 #. Mail Address: INPUT
-#: src/LYOptions.c:3724
+#: src/LYOptions.c:3720
 #, fuzzy
 msgid "Password for anonymous ftp"
 msgstr "·s»D²Õ¥D¾÷¡¥%s¡¦ªº±K½X¡G"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3729
+#: src/LYOptions.c:3725
 #, fuzzy
 msgid "Preferred media type"
 msgstr "¤w¶Ç¿é %d ¦ì¤¸²Õ"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3731
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Àu¥ý¨Ï¥Îªº»y¨¥"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3741
+#: src/LYOptions.c:3737
 msgid "Preferred document character set"
 msgstr "Àu¥ý¨Ï¥Îªº¦r¤¸¶°"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3742
 msgid "Preferred document language"
 msgstr "Àu¥ý¨Ï¥Îªº»y¨¥"
 
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3748
 msgid "User-Agent header"
 msgstr "User-Agent ¼ÐÀY"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3760
+#: src/LYOptions.c:3756
 msgid "Listing and Accessing Files"
 msgstr "¦C¥X¤Î¦s¨úÀÉ®×"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3764
+#: src/LYOptions.c:3760
 msgid "FTP sort criteria"
 msgstr "FTP ¶µ¥Ø±Æ§Ç±ø¥ó"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3771
+#: src/LYOptions.c:3767
 msgid "Local directory sort criteria"
 msgstr "¥»¦aºÝ¥Ø¿ý±Æ§Ç±ø¥ó"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3777
+#: src/LYOptions.c:3773
 msgid "Local directory sort order"
 msgstr "¥»¦aºÝ¥Ø¿ý±Æ¦C¦¸§Ç"
 
-#: src/LYOptions.c:3786
+#: src/LYOptions.c:3782
 msgid "Show dot files"
 msgstr "Åã¥ÜÁôÂÃÀÉ"
 
-#: src/LYOptions.c:3794
+#: src/LYOptions.c:3790
 msgid "Execution links"
 msgstr ""
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3810
 msgid "Show transfer rate"
 msgstr "Åã¥Ü¶Ç¿é³t²v"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3834
+#: src/LYOptions.c:3830
 msgid "Special Files and Screens"
 msgstr "¯S®íÀɮפεe­±"
 
-#: src/LYOptions.c:3839
+#: src/LYOptions.c:3835
 msgid "Multi-bookmarks"
 msgstr "¦h®ÑÅÒÀɼҦ¡"
 
-#: src/LYOptions.c:3847
+#: src/LYOptions.c:3843
 msgid "Review/edit Bookmarks files"
 msgstr "¥iÂsÄý©Î½s¿è®ÑÅÒÀÉ"
 
-#: src/LYOptions.c:3849
+#: src/LYOptions.c:3845
 msgid "Goto multi-bookmark menu"
 msgstr "¶i¤J¦h®ÑÅÒÀɼҦ¡¿ï³æ"
 
-#: src/LYOptions.c:3851
+#: src/LYOptions.c:3847
 msgid "Bookmarks file"
 msgstr "®ÑÅÒÀÉ"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3857
+#: src/LYOptions.c:3853
 msgid "Visited Pages"
 msgstr "´¿¸gÂsÄýªººô­¶"
 
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3858
 msgid "View the file "
 msgstr ""
 
@@ -5053,38 +5079,38 @@ msgstr ""
 msgid "(no name)"
 msgstr ""
 
-#: src/LYReadCFG.c:1784
+#: src/LYReadCFG.c:1787
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1786
+#: src/LYReadCFG.c:1789
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1787
+#: src/LYReadCFG.c:1790
 #, c-format
 msgid "included from '%s'.\n"
 msgstr ""
 
-#: src/LYReadCFG.c:2194 src/LYReadCFG.c:2207 src/LYReadCFG.c:2265
+#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2268
 msgid "The following is read from your lynx.cfg file."
 msgstr "¥H¤U¬O±q»Õ¤Uªº lynx.cfg ÀÉ®×Ū¨úªº³]©w¡C"
 
-#: src/LYReadCFG.c:2195 src/LYReadCFG.c:2208
+#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211
 msgid "Please read the distribution"
 msgstr ""
 
-#: src/LYReadCFG.c:2201 src/LYReadCFG.c:2211
+#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214
 msgid "for more comments."
 msgstr ""
 
-#: src/LYReadCFG.c:2247
+#: src/LYReadCFG.c:2250
 msgid "RELOAD THE CHANGES"
 msgstr "­«·s¸ü¤J§ó§ï«áªº³]©w"
 
-#: src/LYReadCFG.c:2255
+#: src/LYReadCFG.c:2258
 msgid "Your primary configuration"
 msgstr "¥D­n²ÕºA"
 
@@ -5350,33 +5376,33 @@ msgstr "¤W¶Ç¦Ü¡G"
 msgid "Upload options:"
 msgstr "¤W¶Ç¿ï¶µ¡G"
 
-#: src/LYUtils.c:1792
+#: src/LYUtils.c:1795
 msgid "Download document URL put to clipboard."
 msgstr ""
 
-#: src/LYUtils.c:2569
+#: src/LYUtils.c:2572
 msgid "Unexpected access protocol for this URL scheme."
 msgstr ""
 
-#: src/LYUtils.c:3379
+#: src/LYUtils.c:3384
 msgid "Too many tempfiles"
 msgstr "¤Ó¦h¼È¦sÀÉ"
 
-#: src/LYUtils.c:3683
+#: src/LYUtils.c:3688
 msgid "unknown restriction"
 msgstr ""
 
-#: src/LYUtils.c:3713
+#: src/LYUtils.c:3718
 #, c-format
 msgid "No restrictions set.\n"
 msgstr ""
 
-#: src/LYUtils.c:3716
+#: src/LYUtils.c:3721
 #, c-format
 msgid "Restrictions set:\n"
 msgstr ""
 
-#: src/LYUtils.c:5094
+#: src/LYUtils.c:5099
 msgid "Cannot find HOME directory"
 msgstr "§ä¤£¨ì­Ó¤H¥Ø¿ý"
 
diff --git a/src/GridText.c b/src/GridText.c
index bf3e690d..bbf1b8a2 100644
--- a/src/GridText.c
+++ b/src/GridText.c
@@ -54,6 +54,12 @@ unsigned int cached_styles[CACHEH][CACHEW];
 
 #include <LYJustify.h>
 
+#ifdef CONV_JISX0201KANA_JISX0208KANA
+#define is_CJK2(b) (HTCJK != NOCJK && is8bits(UCH(b)))
+#else
+#define is_CJK2(b) (HTCJK != NOCJK && is8bits(UCH(b)) && kanji_code != SJIS)
+#endif
+
 #ifdef USE_CURSES_PADS
 #  define DISPLAY_COLS    (LYwideLines ? MAX_COLS : LYcols)
 #  define WRAP_COLS(text) ((text)->stbl ?				\
@@ -722,6 +728,48 @@ static void *LY_check_calloc(size_t nmemb, size_t size)
 
 #endif /* CHECK_FREE_MEM */
 
+#ifdef USE_COLOR_STYLE
+/*
+ * Color style information is stored with the multibyte-character offset into
+ * the string at which the style would apply.  Compute the corresponding column
+ * so we can compare it with the updated column value after writing strings
+ * with curses.
+ *
+ * The offsets count multibyte characters.  Other parts of the code assume each
+ * character uses one cell, but some CJK (or UTF-8) codes use two cells.  We
+ * need to know the number of cells.
+ */
+static int StyleToCols(HText *text, HTLine *line, int nstyle)
+{
+    int result = line->offset;	/* this much is spaces one byte/cell */
+    int nchars = line->styles[nstyle].horizpos;
+    char *data = line->data;
+    char *last = line->size + data;
+    int utf_extra;
+
+    while (nchars > 0 && data < last) {
+	if (IsSpecialAttrChar(*data) && *data != LY_SOFT_NEWLINE) {
+	    ++data;
+	} else {
+	    utf_extra = utf8_length(text->T.output_utf8, data);
+	    if (utf_extra++) {
+		result += LYstrExtent(data, utf_extra, 2);
+		data += utf_extra;
+	    } else if (is_CJK2(*data)) {
+		data += 2;
+		result += 2;
+	    } else {
+		++data;
+		++result;
+	    }
+	    --nchars;
+	}
+    }
+
+    return result;
+}
+#endif
+
 /*
  * Clear highlight information for a given anchor
  * (text was allocated in the pool).
@@ -1324,6 +1372,15 @@ static int display_line(HTLine *line,
     text->has_utf8 = NO;	/* use as per-line flag, except with ncurses */
 #endif
 
+#if defined(WIDEC_CURSES)
+    /*
+     * FIXME: this should not be necessary, but in some wide-character pages
+     * the output line wraps, foiling our attempt to just use newlines to
+     * advance to the next page.
+     */
+    wmove(LYwin, scrline + TITLE_LINES - 1, 0);
+#endif
+
     /*
      * Set up the multibyte character buffer,
      * and clear the line to which we will be
@@ -1416,7 +1473,7 @@ static int display_line(HTLine *line,
 
 	data++;
 
-#if defined(USE_COLOR_STYLE) || defined(SLSC)
+#if defined(USE_COLOR_STYLE)
 #define CStyle line->styles[current_style]
 
 	while (current_style < line->numstyles &&
@@ -1494,14 +1551,13 @@ static int display_line(HTLine *line,
 		isspace(UCH(LastDisplayChar)) ||
 		LastDisplayChar == '-') {
 		/*
-		 * Ignore the soft hyphen if it is not the last
-		 * character in the line.  Also ignore it if it
-		 * first character following the margin, or if it
-		 * is preceded by a white character (we loaded 'M'
-		 * into LastDisplayChar if it was a multibyte
-		 * character) or hyphen, though it should have
-		 * been excluded by HText_appendCharacter() or by
-		 * split_line() in those cases.  -FM
+		 * Ignore the soft hyphen if it is not the last character in
+		 * the line.  Also ignore it if it first character following
+		 * the margin, or if it is preceded by a white character (we
+		 * loaded 'M' into LastDisplayChar if it was a multibyte
+		 * character) or hyphen, though it should have been excluded by
+		 * HText_appendCharacter() or by split_line() in those cases. 
+		 * -FM
 		 */
 		break;
 	    } else {
@@ -1526,7 +1582,6 @@ static int display_line(HTLine *line,
 	    }
 #endif /* SHOW_WHEREIS_TARGETS */
 #endif /* USE_COLOR_STYLE */
-	    i++;
 	    if (text->T.output_utf8 && is8bits(buffer[0])) {
 		text->has_utf8 = YES;
 		utf_extra = utf8_length(text->T.output_utf8, data - 1);
@@ -1539,15 +1594,11 @@ static int display_line(HTLine *line,
 		buffer[1] = '\0';
 		data += utf_extra;
 		utf_extra = 0;
-	    } else if (HTCJK != NOCJK && is8bits(buffer[0])
-#ifndef CONV_JISX0201KANA_JISX0208KANA
-		       && kanji_code != SJIS
-#endif
-		) {
+	    } else if (is_CJK2(buffer[0])) {
 		/*
 		 * For CJK strings, by Masanobu Kimura.
 		 */
-		if (i < DISPLAY_COLS) {
+		if (i <= DISPLAY_COLS) {
 		    buffer[1] = *data;
 		    buffer[2] = '\0';
 		    data++;
@@ -1564,11 +1615,21 @@ static int display_line(HTLine *line,
 		     * used.  -FM
 		     */
 		    LastDisplayChar = 'M';
+#ifndef USE_SLANG
+		    {
+			int y, x;
+
+			getyx(LYwin, y, x);
+			if (x >= DISPLAY_COLS || x == 0)
+			    break;
+		    }
+#endif
 		}
 	    } else {
 		LYaddstr(buffer);
 		LastDisplayChar = buffer[0];
 	    }
+	    i++;
 	}			/* end of switch */
     }				/* end of while */
 
@@ -2725,8 +2786,9 @@ static HTStyleChange *skip_matched_and_correct_offsets(HTStyleChange *end,
 	    } else
 		return 0;
 	}
-	if (tmp->horizpos > split_pos)
+	if (tmp->horizpos > split_pos) {
 	    tmp->horizpos = split_pos;
+	}
     }
     return 0;
 }
@@ -2739,6 +2801,7 @@ static void split_line(HText *text, unsigned split)
     int indent = (text->in_line_1
 		  ? text->style->indent1st
 		  : text->style->leftIndent);
+    int new_offset;
     short alignment;
     TextAnchor *a;
     int CurLine = text->Lines;
@@ -2778,6 +2841,7 @@ static void split_line(HText *text, unsigned split)
 #endif
 
     cp = previous->data;
+
     /* Float LY_SOFT_NEWLINE to the start */
     if (cp[0] == LY_BOLD_START_CHAR
 	|| cp[0] == LY_UNDERLINE_START_CHAR) {
@@ -2974,14 +3038,15 @@ static void split_line(HText *text, unsigned split)
 	 * The second loop below may then handle remaining changes.  - kw */
 	while (from >= previous->styles && to >= line->styles) {
 	    *to = *from;
-	    if ((int) to->horizpos > s_post)
+	    if ((int) to->horizpos > s_post) {
 		to->horizpos += -s_post + SpecialAttrChars;
-	    else if ((int) to->horizpos > s_pre &&
-		     (to->direction == STACK_ON ||
-		      to->direction == ABS_ON))
+	    } else if ((int) to->horizpos > s_pre &&
+		       (to->direction == STACK_ON ||
+			to->direction == ABS_ON)) {
 		to->horizpos = ((int) to->horizpos < s) ? 0 : SpecialAttrChars;
-	    else
+	    } else {
 		break;
+	    }
 	    to--;
 	    from--;
 	}
@@ -3037,8 +3102,9 @@ static void split_line(HText *text, unsigned split)
 		    break;
 		}
 	    }
-	    if ((int) scan->horizpos > s_pre)
+	    if ((int) scan->horizpos > s_pre) {
 		scan->horizpos = s_pre;
+	    }
 	    scan--;
 	}
 	line->numstyles = line->styles + MAX_STYLES_ON_LINE - 1 - to;
@@ -3047,11 +3113,13 @@ static void split_line(HText *text, unsigned split)
 
 	    for (n = 0; n < line->numstyles; n++)
 		line->styles[n] = to[n + 1];
-	} else if (line->numstyles == 0)
+	} else if (line->numstyles == 0) {
 	    line->styles[0].horizpos = ~0;	/* ?!!! */
+	}
 	previous->numstyles = at_end - previous->styles + 1;
-	if (previous->numstyles == 0)
+	if (previous->numstyles == 0) {
 	    previous->styles[0].horizpos = ~0;	/* ?!!! */
+	}
     }
 #endif /*USE_COLOR_STYLE */
 
@@ -3169,19 +3237,21 @@ static void split_line(HText *text, unsigned split)
 #endif
     }
 
+    new_offset = previous->offset;
     switch (style->alignment) {
     case HT_CENTER:
-	previous->offset = previous->offset + indent + spare / 2;
+	new_offset += indent + spare / 2;
 	break;
     case HT_RIGHT:
-	previous->offset = previous->offset + indent + spare;
+	new_offset += indent + spare;
 	break;
     case HT_LEFT:
     case HT_JUSTIFY:		/* Not implemented */
     default:
-	previous->offset = previous->offset + indent;
+	new_offset += indent;
 	break;
     }				/* switch */
+    previous->offset = ((new_offset < 0) ? 0 : new_offset);
 
     if (text->stbl)
 	/*
@@ -3286,7 +3356,7 @@ static void split_line(HText *text, unsigned split)
     /* now perform justification - by VH */
 
     if (this_line_was_split
-	&& spare
+	&& spare > 0
 	&& !text->stbl		/* We don't inform TRST on the cell width change yet */
 	&& justify_max_void_percent > 0
 	&& justify_max_void_percent <= 100
@@ -4147,7 +4217,7 @@ void HText_appendCharacter(HText *text, int ch)
 	    if (target_cu > WRAP_COLS(text))
 		target -= target_cu - WRAP_COLS(text);
 	    if (line->size == 0) {
-		line->offset = line->offset + target - here;
+		line->offset += (target - here);
 	    } else {
 		for (; here < target; here++) {
 		    /* Put character into line */
@@ -4472,8 +4542,9 @@ void _internal_HTC(HText *text, int style, int dir)
 	     * And in UTF-8 display mode all non-initial bytes are
 	     * counted as ctrl_chars.  - kw
 	     */
-	    if ((int) line->styles[line->numstyles].horizpos >= ctrl_chars_on_this_line)
+	    if ((int) line->styles[line->numstyles].horizpos >= ctrl_chars_on_this_line) {
 		line->styles[line->numstyles].horizpos -= ctrl_chars_on_this_line;
+	    }
 	    line->styles[line->numstyles].style = style;
 	    line->styles[line->numstyles].direction = dir;
 	    line->numstyles++;
@@ -4747,7 +4818,9 @@ static int HText_insertBlanksInStblLines(HText *me, int ncols)
 	    }
 #endif
 	    CTRACE((tfp, " %d:%d", lineno, table_offset - line->offset));
-	    line->offset = table_offset;
+	    line->offset = (table_offset > 0
+			    ? table_offset
+			    : 0);
 	}
     }
 #ifdef EXP_NESTED_TABLES
@@ -7343,6 +7416,7 @@ BOOL HTFindPoundSelector(const char *selector)
 {
     TextAnchor *a;
 
+    CTRACE((tfp, "FindPound: searching for \"%s\"\n", selector));
     for (a = HTMainText->first_anchor; a != 0; a = a->next) {
 
 	if (a->anchor && a->anchor->tag) {
@@ -13316,6 +13390,39 @@ int HText_InsertFile(LinkInfo * form_link)
     return (newlines);
 }
 
+#ifdef USE_COLOR_STYLE
+static int GetColumn(void)
+{
+    int result;
+
+#ifdef USE_SLANG
+    result = SLsmg_get_column();
+#else
+    int y, x;
+
+    LYGetYX(y, x);
+    result = x;
+    (void) y;
+#endif
+    return result;
+}
+
+static BOOL DidWrap(int y0, int x0)
+{
+    BOOL result = NO;
+
+#ifndef USE_SLANG
+    int y, x;
+
+    LYGetYX(y, x);
+    (void) x0;
+    if (x >= DISPLAY_COLS || ((x == 0) && (y != y0)))
+	result = YES;
+#endif
+    return result;
+}
+#endif /* USE_COLOR_STYLE */
+
 /*
  * This function draws the part of line 'line', pointed by 'str' (which can be
  * non terminated with null - i.e., is line->data+N) drawing 'len' bytes (not
@@ -13339,6 +13446,7 @@ static void redraw_part_of_line(HTLine *line, const char *str,
 
 #ifdef USE_COLOR_STYLE
     int current_style = 0;
+    int tcols, scols;
 #endif
     char LastDisplayChar = ' ';
     int YP, XP;
@@ -13359,13 +13467,17 @@ static void redraw_part_of_line(HTLine *line, const char *str,
 	buffer[0] = *data;
 	data++;
 
-#if defined(USE_COLOR_STYLE) || defined(SLSC)
+#if defined(USE_COLOR_STYLE)
 #define CStyle line->styles[current_style]
 
+	tcols = GetColumn();
+	scols = StyleToCols(text, line, current_style);
+
 	while (current_style < line->numstyles &&
-	       i >= (int) (CStyle.horizpos + line->offset + 1)) {
+	       tcols >= scols) {
 	    LynxChangeStyle(CStyle.style, CStyle.direction);
 	    current_style++;
+	    scols = StyleToCols(text, line, current_style);
 	}
 #endif
 	switch (buffer[0]) {
@@ -13399,8 +13511,10 @@ static void redraw_part_of_line(HTLine *line, const char *str,
 
 #endif
 	case LY_SOFT_NEWLINE:
-	    if (!dump_output_immediately)
+	    if (!dump_output_immediately) {
 		LYaddch('+');
+		i++;
+	    }
 	    break;
 
 	case LY_SOFT_HYPHEN:
@@ -13408,14 +13522,13 @@ static void redraw_part_of_line(HTLine *line, const char *str,
 		isspace(UCH(LastDisplayChar)) ||
 		LastDisplayChar == '-') {
 		/*
-		 * Ignore the soft hyphen if it is not the last
-		 * character in the line.  Also ignore it if it
-		 * first character following the margin, or if it
-		 * is preceded by a white character (we loaded 'M'
-		 * into LastDisplayChar if it was a multibyte
-		 * character) or hyphen, though it should have
-		 * been excluded by HText_appendCharacter() or by
-		 * split_line() in those cases.  -FM
+		 * Ignore the soft hyphen if it is not the last character in
+		 * the line.  Also ignore it if it first character following
+		 * the margin, or if it is preceded by a white character (we
+		 * loaded 'M' into LastDisplayChar if it was a multibyte
+		 * character) or hyphen, though it should have been excluded by
+		 * HText_appendCharacter() or by split_line() in those cases. 
+		 * -FM
 		 */
 		break;
 	    } else {
@@ -13423,12 +13536,10 @@ static void redraw_part_of_line(HTLine *line, const char *str,
 		 * Make it a hard hyphen and fall through.  -FM
 		 */
 		buffer[0] = '-';
-		i++;
 	    }
 	    /* FALLTHRU */
 
 	default:
-	    i++;
 	    if (text->T.output_utf8 && is8bits(buffer[0])) {
 		utf_extra = utf8_length(text->T.output_utf8, data - 1);
 		LastDisplayChar = 'M';
@@ -13440,30 +13551,35 @@ static void redraw_part_of_line(HTLine *line, const char *str,
 		buffer[1] = '\0';
 		data += utf_extra;
 		utf_extra = 0;
-	    } else if (HTCJK != NOCJK && is8bits(buffer[0])) {
+	    } else if (is_CJK2(buffer[0])) {
 		/*
 		 * For CJK strings, by Masanobu Kimura.
 		 */
-		buffer[1] = *data;
-		data++;
-		LYaddstr(buffer);
-		buffer[1] = '\0';
-		/*
-		 * For now, load 'M' into LastDisplayChar,
-		 * but we should check whether it's white
-		 * and if so, use ' '.  I don't know if
-		 * there actually are white CJK characters,
-		 * and we're loading ' ' for multibyte
-		 * spacing characters in this code set,
-		 * but this will become an issue when
-		 * the development code set's multibyte
-		 * character handling is used.  -FM
-		 */
-		LastDisplayChar = 'M';
+		if (i <= DISPLAY_COLS) {
+		    buffer[1] = *data;
+		    buffer[2] = '\0';
+		    data++;
+		    i++;
+		    LYaddstr(buffer);
+		    buffer[1] = '\0';
+		    /*
+		     * For now, load 'M' into LastDisplayChar, but we should
+		     * check whether it's white and if so, use ' '.  I don't
+		     * know if there actually are white CJK characters, and
+		     * we're loading ' ' for multibyte spacing characters in
+		     * this code set, but this will become an issue when the
+		     * development code set's multibyte character handling is
+		     * used.  -FM
+		     */
+		    LastDisplayChar = 'M';
+		}
 	    } else {
 		LYaddstr(buffer);
 		LastDisplayChar = buffer[0];
 	    }
+	    if (DidWrap(YP, XP))
+		break;
+	    i++;
 	}			/* end of switch */
     }				/* end of while */
 
@@ -14058,7 +14174,7 @@ void LYMoveToLink(int cur,
  * regular link when it's being unhighlighted in LYhighlight().
  */
 #ifdef USE_COLOR_STYLE
-void redraw_lines_of_link(int cur GCC_UNUSED)
+void redraw_lines_of_link(int cur)
 {
 #define pvtTITLE_HEIGHT 1
     HTLine *todr1;
diff --git a/src/HTAlert.c b/src/HTAlert.c
index 21dfd04c..2c59b206 100644
--- a/src/HTAlert.c
+++ b/src/HTAlert.c
@@ -50,6 +50,13 @@ void HTAlert(const char *Msg)
     _user_message(ALERT_FORMAT, Msg);
     LYstore_message2(ALERT_FORMAT, Msg);
 
+    if (dump_output_immediately && dump_to_stderr) {
+	fflush(stdout);
+	fprintf(stderr, ALERT_FORMAT, Msg);
+	fputc('\n', stderr);
+	fflush(stderr);
+    }
+
     LYSleepAlert();
 }
 
diff --git a/src/HTFWriter.c b/src/HTFWriter.c
index 3fe384af..21c3374e 100644
--- a/src/HTFWriter.c
+++ b/src/HTFWriter.c
@@ -81,9 +81,27 @@ struct _HTStream {
  *
  *			A C T I O N	R O U T I N E S
  *  Bug:
- *	All errors are ignored.
+ *	Most errors are ignored.
  */
 
+/*	Error handling
+ *	------------------
+ */
+static void HTFWriter_error(HTStream *me, char *id)
+{
+    char buf[200];
+
+    sprintf(buf, "%.60s: %.60s: %.60s",
+	    id,
+	    me->isa->name,
+	    LYStrerror(errno));
+    HTAlert(buf);
+/*
+ * Only disaster results from:
+ *	me->isa->_abort(me, NULL);
+ */
+}
+
 /*	Character handling
  *	------------------
  */
@@ -109,8 +127,13 @@ static void HTFWriter_put_string(HTStream *me, const char *s)
  */
 static void HTFWriter_write(HTStream *me, const char *s, int l)
 {
+    size_t result;
+
     if (me->fp) {
-	fwrite(s, 1, l, me->fp);
+	result = fwrite(s, 1, l, me->fp);
+	if (result != (size_t) l) {
+	    HTFWriter_error(me, "HTFWriter_write");
+	}
     }
 }
 
@@ -487,7 +510,8 @@ static const HTStreamClass HTFWriter =	/* As opposed to print etc */
     "FileWriter",
     HTFWriter_free,
     HTFWriter_abort,
-    HTFWriter_put_character, HTFWriter_put_string,
+    HTFWriter_put_character,
+    HTFWriter_put_string,
     HTFWriter_write
 };
 
diff --git a/src/LYCurses.c b/src/LYCurses.c
index 8677433a..9a7532fc 100644
--- a/src/LYCurses.c
+++ b/src/LYCurses.c
@@ -80,11 +80,11 @@ static void make_blink_boldbg(void);
 #endif
 
 #if defined(USE_COLOR_TABLE) || defined(USE_SLANG)
-int Current_Attr, Masked_Attr;
+static int Current_Attr, Masked_Attr;
 #endif
 
 #ifdef USE_SLANG
-unsigned int Lynx_Color_Flags = 0;
+unsigned Lynx_Color_Flags = 0;
 BOOLEAN FullRefresh = FALSE;
 int curscr = 0;
 
@@ -442,9 +442,9 @@ void curses_w_style(WINDOW * win, int style,
 #endif
     }
 
-    CTRACE2(TRACE_STYLE, (tfp, "CSS.CS:<%s%s> code %#x, color %#x\n",
+    CTRACE2(TRACE_STYLE, (tfp, "CSS.CS:<%s%s> style %d code %#x, color %#x\n",
 			  (dir ? "" : "/"),
-			  ds->name, ds->code, ds->color));
+			  ds->name, style, ds->code, ds->color));
 
     getyx(win, YP, XP);
 
@@ -615,7 +615,8 @@ static struct {
 static int get_color_pair(int n)
 {
 #ifdef USE_CURSES_PAIR_0
-    if (lynx_color_pairs[n].fg == default_fg
+    if ((n < (int) TABLESIZE(lynx_color_pairs))
+	&& lynx_color_pairs[n].fg == default_fg
 	&& lynx_color_pairs[n].bg == default_bg)
 	return 0;
 #endif
@@ -649,40 +650,106 @@ static int lynx_color_cfg_attr(int code)
     return result;
 }
 
+static int encode_color_attr(int color_attr)
+{
+    int result;
+    int code = 0;
+    int offs = 1;
+
+    if (color_attr & A_BOLD)
+	code |= 1;
+    if (color_attr & (A_REVERSE | A_DIM))
+	code |= 2;
+    if (color_attr & A_UNDERLINE)
+	code |= 4;
+    result = lynx_color_cfg_attr(code);
+
+    if (code + offs < COLOR_PAIRS) {
+	result |= get_color_pair(code + offs);
+    }
+    return result;
+}
+
+static int decode_mono_code(int mono_code)
+{
+    int result = 0;
+
+    if (mono_code & 1)
+	result |= A_BOLD;
+    if (mono_code & 2)
+	result |= A_REVERSE;
+    if (mono_code & 4)
+	result |= A_UNDERLINE;
+
+    return result;
+}
+
 /*
  * Map the SGR attributes (0-7) into ANSI colors, modified with the actual BOLD
- * attribute we'll get 16 colors.
+ * attribute to get 16 colors.
  */
-static void LYsetWAttr(WINDOW * win)
+int LYgetTableAttr(void)
 {
-    if (lynx_has_color && LYShowColor >= SHOW_COLOR_ON) {
-	int code = 0;
-	int attr = A_NORMAL;
-	int offs = 1;
-
-	if (Current_Attr & A_BOLD)
-	    code |= 1;
-	if (Current_Attr & A_REVERSE)
-	    code |= 2;
-	if (Current_Attr & A_UNDERLINE)
-	    code |= 4;
-	attr = lynx_color_cfg_attr(code);
-
-	if (code + offs < COLOR_PAIRS) {
-	    attr |= get_color_pair(code + offs);
-	}
+    int result;
 
-	wattrset(win, attr & ~Masked_Attr);
+    if (lynx_has_color && LYShowColor >= SHOW_COLOR_ON) {
+	result = encode_color_attr(Current_Attr);
     } else {
-	wattrset(win, Current_Attr & ~Masked_Attr);
+	result = Current_Attr;
     }
+    return result & ~Masked_Attr;
 }
 
+#ifdef USE_COLOR_STYLE
+/*
+ * Return a string that corresponds to the attributes that would be returned by
+ * LYgetTableAttr().
+ */
+char *LYgetTableString(int code)
+{
+    int mask = decode_mono_code(code);
+    int second = encode_color_attr(mask);
+    int pair = PAIR_NUMBER(second);
+    int mono = second & A_ATTRIBUTES;
+    int fg = lynx_color_pairs[pair].fg;
+    int bg = lynx_color_pairs[pair].bg;
+    unsigned n;
+    char *result = 0;
+
+    CTRACE((tfp, "LYgetTableString(%d)\n", code));
+
+    if (fg == 0 && bg == 0) {
+	fg = COLOR_WHITE;
+    }
+    CTRACE((tfp, "%#x -> %#x (%d) fg=%d, bg=%d\n", mask, second, pair, fg, bg));
+    for (n = 0; n < TABLESIZE(Mono_Attrs); ++n) {
+	if ((Mono_Attrs[n].code & mono) != 0) {
+	    if (result != 0)
+		StrAllocCat(result, "+");
+	    StrAllocCat(result, Mono_Attrs[n].name);
+	}
+    }
+    if (result == 0)
+	StrAllocCopy(result, "normal");
+    StrAllocCat(result, ":");
+    StrAllocCat(result, lookup_color(fg));
+    if (bg >= 0) {
+	StrAllocCat(result, ":");
+	StrAllocCat(result, lookup_color(bg));
+    }
+    CTRACE((tfp, "->%s\n", result));
+    return result;
+}
+#endif
+
 /*
  * Initialize a curses color-pair based on our configured color values.
  */
 static void lynx_init_color_pair(int n)
 {
+#ifdef USE_COLOR_STYLE
+    (void) n;			/* we only use lynx_color_pairs[] data */
+#else
     int m;
 
     if (lynx_called_initscr) {
@@ -694,23 +761,27 @@ static void lynx_init_color_pair(int n)
 			  (short) map2bold(lynx_color_pairs[pair].fg),
 			  (short) map2bold(lynx_color_pairs[pair].bg));
 	}
-	if (n == 0 && LYShowColor >= SHOW_COLOR_ON)
+	if (n == 0 && LYShowColor >= SHOW_COLOR_ON) {
 	    wbkgd(LYwin, COLOR_BKGD | ' ');
+	}
     }
+#endif
 }
 
 static void lynx_map_color(int n)
 {
     CTRACE((tfp, "lynx_map_color(%d)\n", n));
 
-    lynx_color_pairs[n + 1].fg = lynx_color_cfg[n].fg;
-    lynx_color_pairs[n + 1].bg = lynx_color_cfg[n].bg;
+    if (n + 1 < (int) TABLESIZE(lynx_color_pairs)) {
+	lynx_color_pairs[n + 1].fg = lynx_color_cfg[n].fg;
+	lynx_color_pairs[n + 1].bg = lynx_color_cfg[n].bg;
 
-    lynx_color_pairs[n + 9].fg = lynx_color_cfg[n].fg;
-    lynx_color_pairs[n + 9].bg = lynx_color_cfg[0].bg;
+	lynx_color_pairs[n + 9].fg = lynx_color_cfg[n].fg;
+	lynx_color_pairs[n + 9].bg = lynx_color_cfg[0].bg;
 
-    lynx_color_pairs[n + 17].fg = lynx_color_cfg[n].bg;
-    lynx_color_pairs[n + 17].bg = lynx_color_cfg[n].bg;
+	lynx_color_pairs[n + 17].fg = lynx_color_cfg[n].bg;
+	lynx_color_pairs[n + 17].bg = lynx_color_cfg[n].bg;
+    }
 
     lynx_init_color_pair(n);
 }
@@ -723,6 +794,8 @@ int lynx_chg_color(int color,
 		   int fg,
 		   int bg)
 {
+    CTRACE((tfp, "lynx_chg_color(color=%d, fg=%d, bg=%d)\n", color, fg, bg));
+
     if (fg == ERR_COLOR || bg == ERR_COLOR)
 	return -1;
     if (color >= 0 && color < 8) {
@@ -795,12 +868,7 @@ void LYnoVideo(int a)
     lynx_setup_attrs();
 #else
 #ifdef USE_COLOR_TABLE
-    if (a & 1)
-	Masked_Attr |= A_BOLD;
-    if (a & 2)
-	Masked_Attr |= A_REVERSE;
-    if (a & 4)
-	Masked_Attr |= A_UNDERLINE;
+    Masked_Attr = decode_mono_code(a);
 #endif
 #endif
 }
@@ -1141,7 +1209,7 @@ void start_curses(void)
 #endif
 #ifdef USE_COLOR_TABLE
 	lynx_init_colors();
-#endif /* USE_COLOR_TABLE */
+#endif
     }
 #ifdef __DJGPP__
     _eth_init();
@@ -1220,6 +1288,8 @@ void lynx_enable_mouse(int state)
     }
 #endif
 
+    (void) state;
+
     if (LYUseMouse == 0)
 	return;
 
@@ -1382,9 +1452,11 @@ void stop_curses(void)
 	int i;
 
 	for (i = 0; i <= 3; i++) {
-	    fprintf(stdout, "\r\n");
+	    printf("\r\n");
 	}
     }
+#else
+    printf("\r");		/* PDCurses may leave the cursor randomly */
 #endif
 
     fflush(stdout);
@@ -1567,6 +1639,11 @@ static int dumbterm(char *terminal)
 #ifdef FANCY_CURSES
 #ifndef USE_COLOR_STYLE
 #ifdef USE_COLOR_TABLE
+static void LYsetWAttr(WINDOW * win)
+{
+    wattrset(win, LYgetTableAttr());
+}
+
 void LYaddWAttr(WINDOW * win, int a)
 {
     Current_Attr |= a;
@@ -1775,36 +1852,30 @@ void LYwaddnstr(WINDOW * w GCC_UNUSED,
      * Link-highlighting uses wrapping.  You can see this by viewing the
      * options screen in a terminal which is narrower than 80 columns.
      *
-     * Check for that case, and split up the call into segments for each line.
+     * Check for that case, and use curses's wrapping in a derived window to
+     * simplify things, e.g., in case the string contains multibyte or
+     * multicolumn characters.
      */
     int y0, x0;
 
     getyx(LYwin, y0, x0);
 
     if (LYuseCursesPads
-	&& LYshiftWin == 0
+	&& (LYwin == w)		/* popups do not wrap */
+	&&LYshiftWin == 0
 	&& LYwideLines == FALSE
-	&& ((int) len > (LYcolLimit - x0))) {
-	int start = 0;
-	int piece = (LYcolLimit - x0);
-
-	CTRACE((tfp, "LYwaddnstr wrapping src:%s, len:%u:%d\n", src, len, LYcolLimit));
-	LYwideLines = TRUE;	/* prevent recursion */
-	while (piece > 0) {
-	    int y, x;
-
-	    getyx(LYwin, y, x);
-	    CTRACE((tfp, "piece src:%.*s, len:%d\n", piece, src + start, piece));
-	    LYwaddnstr(w, src + start, piece);
-	    start += piece;
-	    if (start >= (int) len)
-		break;
-	    LYmove(y + 1, 0);
-	    piece = LYcolLimit;
-	    if ((start + piece) > (int) len)
-		piece = len - start;
+	&& ((int) len > (LYcolLimit - x0))
+	&& (x0 < LYcolLimit)) {
+	WINDOW *sub = derwin(LYwin, LYlines, LYcolLimit, 0, 0);
+
+	if (sub != 0) {
+	    wmove(sub, y0, x0);
+	    LYwideLines = TRUE;
+	    LYwaddnstr(sub, src, len);
+	    delwin(sub);
 	}
 	LYwideLines = FALSE;
+
 	return;
     }
 #endif
@@ -2418,7 +2489,7 @@ int LYscreenWidth(void)
  */
 void LYnormalColor(void)
 {
-#if defined(USE_COLOR_STYLE) && USE_CURSES_PADS
+#if defined(USE_COLOR_STYLE) && defined(USE_CURSES_PADS)
     if (LYwin != stdscr) {
 	int color = displayStyles[DSTYLE_NORMAL].color;
 
diff --git a/src/LYCurses.h b/src/LYCurses.h
index abe30e7e..b84ba4ba 100644
--- a/src/LYCurses.h
+++ b/src/LYCurses.h
@@ -32,7 +32,9 @@
  */
 #undef USE_COLOR_TABLE
 
-#ifndef USE_COLOR_STYLE
+#ifdef USE_COLOR_STYLE
+#define USE_COLOR_TABLE 1	/* default color logic is used */
+#else
 #if defined(USE_SLANG) || defined(COLOR_CURSES)
 #define USE_COLOR_TABLE 1
 #endif
@@ -410,11 +412,6 @@ extern "C" {
 #define LYtableCols	0
 #endif
 
-#if defined(USE_COLOR_TABLE) || defined(USE_SLANG)
-    extern int Current_Attr;
-    extern int Masked_Attr;
-#endif
-
     extern BOOLEAN setup(char *terminal);
     extern int LYscreenHeight(void);
     extern int LYscreenWidth(void);
@@ -465,7 +462,7 @@ extern "C" {
     extern void LYaddAttr(int a);
     extern void LYsubAttr(int a);
     extern void lynx_setup_colors(void);
-    extern unsigned int Lynx_Color_Flags;
+    extern unsigned Lynx_Color_Flags;
 #endif
 
 #ifdef USE_SLANG
@@ -594,14 +591,11 @@ extern "C" {
  *  our own functions to add or subtract the
  *  A_foo attributes. - FM
  */
-#ifdef USE_COLOR_TABLE
+#if defined(USE_COLOR_TABLE) && !defined(USE_COLOR_STYLE)
     extern void LYaddWAttr(WINDOW * win, int a);
     extern void LYsubWAttr(WINDOW * win, int a);
     extern void LYaddWAttr(WINDOW * win, int a);
     extern void LYsubWAttr(WINDOW * win, int a);
-    extern void lynx_set_color(int a);
-    extern void lynx_standout(int a);
-    extern int lynx_chg_color(int, int, int);
 
 #undef  standout
 #define standout() 		lynx_standout(TRUE)
@@ -614,6 +608,14 @@ extern "C" {
 #define LYsubWAttr(win,attr)	wattroff(win,attr)
 #endif
 
+#if defined(USE_COLOR_TABLE)
+    extern void lynx_set_color(int a);
+    extern void lynx_standout(int a);
+    extern char *LYgetTableString(int code);
+    extern int LYgetTableAttr(void);
+    extern int lynx_chg_color(int, int, int);
+#endif
+
 #define start_bold()		LYaddAttr(LYUnderlineLinks ? A_UNDERLINE : A_BOLD)
 #define stop_bold()		LYsubAttr(LYUnderlineLinks ? A_UNDERLINE : A_BOLD)
 #define start_underline()	LYaddAttr(LYUnderlineLinks ? A_BOLD : A_UNDERLINE)
diff --git a/src/LYGlobalDefs.h b/src/LYGlobalDefs.h
index 82a828ff..b1e19f66 100644
--- a/src/LYGlobalDefs.h
+++ b/src/LYGlobalDefs.h
@@ -211,6 +211,7 @@ extern "C" {
     extern BOOLEAN child_lynx;	/* TRUE to exit with an arrow */
     extern BOOLEAN dump_links_only;
     extern BOOLEAN dump_output_immediately;
+    extern BOOLEAN dump_to_stderr;
     extern BOOLEAN emacs_keys;	/* TRUE to turn on emacs-like key movement */
     extern BOOLEAN error_logging;	/* TRUE to mail error messages */
     extern BOOLEAN ftp_local_passive;
diff --git a/src/LYMain.c b/src/LYMain.c
index e9753f7c..00498122 100644
--- a/src/LYMain.c
+++ b/src/LYMain.c
@@ -201,6 +201,7 @@ BOOLEAN check_mail = CHECKMAIL;
 BOOLEAN child_lynx = FALSE;
 BOOLEAN dump_links_only = FALSE;
 BOOLEAN dump_output_immediately = FALSE;
+BOOLEAN dump_to_stderr = FALSE;
 BOOLEAN emacs_keys = EMACS_KEYS_ALWAYS_ON;
 BOOLEAN error_logging = MAIL_SYSTEM_ERROR_LOGGING;
 BOOLEAN ftp_passive = FTP_PASSIVE;	/* TRUE if doing ftp in passive mode */
@@ -628,7 +629,8 @@ static void FatalProblem(int sig);
 #endif /* !VMS */
 
 #if defined(USE_COLOR_STYLE)
-char *lynx_lss_file = NULL;
+char *lynx_lss_file2 = NULL;	/* from command-line options */
+char *lynx_lss_file = NULL;	/* from config-file, etc. */
 #endif
 
 #ifdef __DJGPP__
@@ -759,6 +761,7 @@ static void free_lynx_globals(void)
     FREE(LYTraceLogPath);
     FREE(lynx_cfg_file);
 #if defined(USE_COLOR_STYLE)
+    FREE(lynx_lss_file2);
     FREE(lynx_lss_file);
 #endif
     FREE(UCAssume_MIMEcharset);
@@ -1094,11 +1097,9 @@ int main(int argc,
 #endif /* LOCALE */
     /* Set the text message domain.  */
 #if defined(HAVE_LIBINTL_H) || defined(HAVE_LIBGETTEXT_H)
-#ifndef __DJGPP__
     if ((cp = LYGetEnv("LYNX_LOCALEDIR")) == 0)
 	cp = LOCALEDIR;
     bindtextdomain("lynx", cp);
-#endif /* !__DJGPP__ */
     textdomain("lynx");
 #endif /* HAVE_LIBINTL_H */
 
@@ -1452,7 +1453,7 @@ int main(int argc,
      */
     if (!LYCanReadFile(lynx_cfg_file)) {
 	fprintf(stderr,
-		gettext("\nConfiguration file %s is not available.\n\n"),
+		gettext("\nConfiguration file \"%s\" is not available.\n\n"),
 		lynx_cfg_file);
 	exit_immediately(EXIT_FAILURE);
     }
@@ -1494,36 +1495,6 @@ int main(int argc,
 	fprintf(stderr, gettext("\nLynx edit map not declared.\n\n"));
 	exit_immediately(EXIT_FAILURE);
     }
-#if defined(USE_COLOR_STYLE)
-    /*
-     * If no alternate lynx-style file was specified on the command line, see
-     * if it's in the environment.
-     */
-    if (!lynx_lss_file) {
-	if (((cp = LYGetEnv("LYNX_LSS")) != NULL) ||
-	    (cp = LYGetEnv("lynx_lss")) != NULL)
-	    StrAllocCopy(lynx_lss_file, cp);
-    }
-
-    /*
-     * If we still don't have a lynx-style file, use the userdefs.h definition.
-     */
-    if (!lynx_lss_file)
-	StrAllocCopy(lynx_lss_file, LYNX_LSS_FILE);
-
-    tildeExpand(&lynx_lss_file, TRUE);
-
-    /*
-     * If the lynx-style file is not available, inform the user and exit.
-     */
-    if (!LYCanReadFile(lynx_lss_file)) {
-	fprintf(stderr, gettext("\nLynx file %s is not available.\n\n"),
-		lynx_lss_file);
-    } else {
-	style_readFromFile(lynx_lss_file);
-    }
-#endif /* USE_COLOR_STYLE */
-
 #ifdef USE_COLOR_TABLE
     /*
      * Set up default foreground and background colors.
@@ -1564,6 +1535,47 @@ int main(int argc,
      */
     read_cfg(lynx_cfg_file, "main program", 1, (FILE *) 0);
 
+#if defined(USE_COLOR_STYLE)
+    /*
+     * A command-line "-lss" always overrides the config-file, even if it is
+     * an empty string such as -lss="".
+     */
+    if (lynx_lss_file2 != 0) {
+	FREE(lynx_lss_file);
+	lynx_lss_file = lynx_lss_file2;
+	lynx_lss_file2 = 0;
+    }
+
+    /*
+     * If no alternate lynx-style file was specified on the command line, see
+     * if it's in the environment.
+     */
+    if (!lynx_lss_file) {
+	if (((cp = LYGetEnv("LYNX_LSS")) != NULL) ||
+	    (cp = LYGetEnv("lynx_lss")) != NULL)
+	    StrAllocCopy(lynx_lss_file, cp);
+    }
+
+    /*
+     * If we still don't have a lynx-style file, use the userdefs.h definition.
+     */
+    if (!lynx_lss_file)
+	StrAllocCopy(lynx_lss_file, LYNX_LSS_FILE);
+
+    tildeExpand(&lynx_lss_file, TRUE);
+
+    /*
+     * If the lynx-style file is not available, inform the user and exit.
+     */
+    if (!isEmpty(lynx_lss_file) && !LYCanReadFile(lynx_lss_file)) {
+	fprintf(stderr, gettext("\nLynx file \"%s\" is not available.\n\n"),
+		lynx_lss_file);
+	exit_immediately(EXIT_FAILURE);
+    } else {
+	style_readFromFile(lynx_lss_file);
+    }
+#endif /* USE_COLOR_STYLE */
+
     /*
      * Process the RC file.
      */
@@ -3501,7 +3513,7 @@ keys (may be incompatible with some curses packages)"
 #endif /* EXEC_LINKS || EXEC_SCRIPTS */
 #if defined(USE_COLOR_STYLE)
    PARSE_STR(
-      "lss",		2|NEED_LYSTRING_ARG,	lynx_lss_file,
+      "lss",		2|NEED_LYSTRING_ARG,	lynx_lss_file2,
       "=FILENAME\nspecifies a lynx.lss file other than the default"
    ),
 #endif
@@ -3762,6 +3774,10 @@ treated '>' as a co-terminator for double-quotes and tags"
       "allow non-http startfile and homepage with -validate"
    ),
    PARSE_SET(
+      "stderr",		4|SET_ARG,		dump_to_stderr,
+      "write warning messages to standard error when -dump -or -source is used"
+   ),
+   PARSE_SET(
       "stdin",		4|SET_ARG,		startfile_stdin,
       "read startfile from standard input"
    ),
diff --git a/src/LYMainLoop.c b/src/LYMainLoop.c
index b8172cc6..e20ebf53 100644
--- a/src/LYMainLoop.c
+++ b/src/LYMainLoop.c
@@ -395,8 +395,16 @@ int LYGetNewline(void)
 {
     return Newline;
 }
+
 #define LYGetNewline()		Newline
 
+void LYChgNewline(int adjust)
+{
+    LYSetNewline(Newline + adjust);
+}
+
+#define LYChgNewline(adjust)	Newline += (adjust)
+
 #ifdef USE_SOURCE_CACHE
 static BOOLEAN from_source_cache = FALSE;
 
@@ -2204,7 +2212,7 @@ static void handle_LYK_DOWN_xxx(int *old_c,
     int i;
 
     if (more_text) {
-	Newline += scroll_by;
+	LYChgNewline(scroll_by);
 	if (nlinks > 0 && curdoc.link > -1 &&
 	    links[curdoc.link].ly > scroll_by) {
 	    newdoc.link = curdoc.link;
@@ -2243,15 +2251,14 @@ static void handle_LYK_DOWN_LINK(int *follow_col,
 	if (newlink > -1) {
 	    set_curdoc_link(newlink);
 	} else if (more_text) {	/* next page */
-	    Newline += display_lines;
+	    LYChgNewline(display_lines);
 	} else if (*old_c != real_c) {
 	    *old_c = real_c;
 	    HTUserMsg(NO_LINKS_BELOW);
 	    return;
 	}
     } else if (more_text) {	/* next page */
-	Newline += display_lines;
-
+	LYChgNewline(display_lines);
     } else if (*old_c != real_c) {
 	*old_c = real_c;
 	HTInfoMsg(ALREADY_AT_END);
@@ -2741,7 +2748,7 @@ static BOOLEAN handle_LYK_FASTBACKW_LINK(int *cmd,
 	    *cmd = LYK_PREV_LINK;
 	    code = TRUE;
 	} else {
-	    Newline++;		/* our line counting starts with 1 not 0 */
+	    LYChgNewline(1);	/* our line counting starts with 1 not 0 */
 	}
     } else if (*old_c != real_c) {
 	*old_c = real_c;
@@ -2805,7 +2812,7 @@ static void handle_LYK_FASTFORW_LINK(int *old_c,
 	       HTGetLinkOrFieldStart(curdoc.link,
 				     &Newline, &newdoc.link,
 				     1, TRUE) != NO) {
-	Newline++;		/* our line counting starts with 1 not 0 */
+	LYChgNewline(1);	/* our line counting starts with 1 not 0 */
 	/* nothing more to do here */
 
     } else if (*old_c != real_c) {
@@ -3720,13 +3727,8 @@ static BOOLEAN handle_LYK_OPTIONS(int *cmd,
 
 		HEAD_request = HTLoadedDocumentIsHEAD();
 		HText_setNoCache(HTMainText);
-#ifdef NO_ASSUME_SAME_DOC
-		newdoc.line = 1;
-		newdoc.link = 0;
-#else
 		newdoc.line = curdoc.line;
 		newdoc.link = curdoc.link;
-#endif /* NO_ASSUME_SAME_DOC */
 		LYforce_no_cache = TRUE;
 		free_address(&curdoc);	/* So it doesn't get pushed. */
 	    }
@@ -3826,8 +3828,7 @@ static void handle_LYK_NEXT_LINK(int c,
 	set_curdoc_link(0);
 
     } else if (more_text) {	/* next page */
-	Newline += display_lines;
-
+	LYChgNewline(display_lines);
     } else if (*old_c != real_c) {
 	*old_c = real_c;
 	HTInfoMsg(ALREADY_AT_END);
@@ -3838,7 +3839,7 @@ static void handle_LYK_NEXT_PAGE(int *old_c,
 				 int real_c)
 {
     if (more_text) {
-	Newline += display_lines;
+	LYChgNewline(display_lines);
     } else if (curdoc.link < nlinks - 1) {
 	set_curdoc_link(nlinks - 1);
     } else if (*old_c != real_c) {
@@ -3891,7 +3892,7 @@ static void handle_LYK_PREV_LINK(int *arrowup,
 			    ? display_lines
 			    : LYGetNewline() - 1);
 
-	Newline -= scrollamount;
+	LYChgNewline(-scrollamount);
 	if (scrollamount < display_lines &&
 	    nlinks > 0 && curdoc.link == 0 &&
 	    links[0].ly - 1 + scrollamount <= display_lines) {
@@ -4020,7 +4021,7 @@ static void handle_LYK_PREV_PAGE(int *old_c,
 				 int real_c)
 {
     if (LYGetNewline() > 1) {
-	Newline -= display_lines;
+	LYChgNewline(-display_lines);
     } else if (curdoc.link > 0) {
 	set_curdoc_link(0);
     } else if (*old_c != real_c) {
@@ -4120,13 +4121,6 @@ static void handle_LYK_RELOAD(int real_cmd)
 
     HEAD_request = HTLoadedDocumentIsHEAD();
     HText_setNoCache(HTMainText);
-#ifdef NO_ASSUME_SAME_DOC
-    /*
-     * Don't assume the reloaded document will be the same.  - FM
-     */
-    newdoc.line = 1;
-    newdoc.link = 0;
-#else
     /*
      * Do assume the reloaded document will be the same.  - FM
      *
@@ -4135,7 +4129,6 @@ static void handle_LYK_RELOAD(int real_cmd)
      */
     newdoc.line = curdoc.line;
     newdoc.link = curdoc.link;
-#endif /* NO_ASSUME_SAME_DOC */
     free_address(&curdoc);	/* so it doesn't get pushed */
 #ifdef VMS
     lynx_force_repaint();
@@ -4401,13 +4394,8 @@ static void handle_LYK_SWITCH_DTD(void)
 	    }
 	    HText_setNoCache(HTMainText);
 	    move_address(&newdoc, &curdoc);
-#ifdef NO_ASSUME_SAME_DOC
-	    newdoc.line = 1;
-	    newdoc.link = 0;
-#else
 	    newdoc.line = curdoc.line;
 	    newdoc.link = curdoc.link;
-#endif /* NO_ASSUME_SAME_DOC */
 	}
 #ifdef USE_SOURCE_CACHE
     }				/* end if no bypass */
@@ -4471,7 +4459,7 @@ static void handle_LYK_TAG_LINK(void)
 		   - 1) {
 	    set_curdoc_link(0);
 	} else if (more_text) {	/* next page */
-	    Newline += (display_lines);
+	    LYChgNewline(display_lines);
 	}
     }
 }
@@ -4590,7 +4578,7 @@ static void handle_LYK_UP_xxx(int *arrowup,
     if (LYGetNewline() > 1) {
 	if (LYGetNewline() - scroll_by < 1)
 	    scroll_by = LYGetNewline() - 1;
-	Newline -= scroll_by;
+	LYChgNewline(-scroll_by);
 	if (nlinks > 0 && curdoc.link > -1) {
 	    if (links[curdoc.link].ly + scroll_by <= display_lines) {
 		newdoc.link = curdoc.link +
@@ -4648,7 +4636,7 @@ static void handle_LYK_UP_LINK(int *follow_col,
 			    ? display_lines
 			    : LYGetNewline() - 1);
 
-	Newline -= scrollamount;
+	LYChgNewline(-scrollamount);
 	if (scrollamount < display_lines &&
 	    nlinks > 0 && curdoc.link > -1 &&
 	    links[0].ly - 1 + scrollamount <= display_lines) {
@@ -5235,6 +5223,7 @@ int mainloop(void)
     unsigned int len;
     int i;
     int follow_col = -1, key_count = 0, last_key = 0;
+    int tmpNewline;
 
     /* "internal" means "within the same document, with certainty".  It includes a
      * space so it cannot conflict with any (valid) "TYPE" attributes on A
@@ -5558,10 +5547,18 @@ int mainloop(void)
 		    newdoc.address = temp;
 		    temp = NULL;
 		}
-		getresult = getfile(&newdoc, &Newline);
+		tmpNewline = -1;
+		getresult = getfile(&newdoc, &tmpNewline);
+		if (!reloading && !popped_doc && (tmpNewline >= 0)) {
+		    LYSetNewline(tmpNewline);
+		}
 	    }
 #else /* TRACK_INTERNAL_LINKS */
-	    getresult = getfile(&newdoc, &Newline);
+	    tmpNewline = -1;
+	    getresult = getfile(&newdoc, &tmpNewline);
+	    if (!reloading && !popped_doc && (tmpNewline >= 0)) {
+		LYSetNewline(tmpNewline);
+	    }
 #endif /* TRACK_INTERNAL_LINKS */
 
 #ifdef INACTIVE_INPUT_STYLE_VH
@@ -6225,8 +6222,8 @@ int mainloop(void)
 
 	/*
 	 * If the curdoc.line is different than Newline then there must have
-	 * been a change since last update.  Run HText_pageDisplay() create a
-	 * fresh screen of text out.
+	 * been a change since last update.  Run HText_pageDisplay() to create
+	 * a fresh screen of text output.
 	 *
 	 * If we got new HTMainText go this way.  All display_partial calls
 	 * ends here for final redraw.
@@ -6625,10 +6622,8 @@ int mainloop(void)
 
 			    if (links[curdoc.link].ly < display_lines) {
 				refresh_screen = TRUE;
-
 			    } else {
-
-				Newline += (display_lines / 2);
+				LYChgNewline(display_lines / 2);
 				if (nlinks > 0 && curdoc.link > -1 &&
 				    links[curdoc.link].ly > display_lines / 2) {
 				    newdoc.link = curdoc.link;
diff --git a/src/LYMainLoop.h b/src/LYMainLoop.h
index 3c220ddf..bd2926a3 100644
--- a/src/LYMainLoop.h
+++ b/src/LYMainLoop.h
@@ -17,6 +17,7 @@ extern "C" {
     extern int LYGetNewline(void);
     extern int mainloop(void);
     extern void HTAddGotoURL(char *url);
+    extern void LYChgNewline(int adjust);
     extern void LYCloseTracelog(void);
     extern void LYSetNewline(int value);
     extern void handle_LYK_TRACE_TOGGLE(void);
diff --git a/src/LYMap.c b/src/LYMap.c
index 53384d9b..41a4b752 100644
--- a/src/LYMap.c
+++ b/src/LYMap.c
@@ -610,6 +610,8 @@ static int LYLoadIMGmap(const char *arg,
 
 void LYPrintImgMaps(FILE *fp)
 {
+    const char *only = HTLoadedDocumentURL();
+    int only_len = strlen(only);
     HTList *outer = LynxMaps;
     HTList *inner;
     LYImageMap *map;
@@ -618,6 +620,13 @@ void LYPrintImgMaps(FILE *fp)
 
     if (HTList_count(outer) > 0) {
 	while (NULL != (map = (LYImageMap *) HTList_nextObject(outer))) {
+	    if (only_len != 0) {
+		if (strncmp(only, map->address, only_len)
+		    || (map->address[only_len] != '\0'
+			&& map->address[only_len] != '#')) {
+		    continue;
+		}
+	    }
 	    fprintf(fp, "\n%s\n", isEmpty(map->title) ? NO_MAP_TITLE : map->title);
 	    fprintf(fp, "%s\n", map->address);
 	    inner = map->elements;
diff --git a/src/LYOptions.c b/src/LYOptions.c
index 85ec2390..bbbd49ee 100644
--- a/src/LYOptions.c
+++ b/src/LYOptions.c
@@ -37,16 +37,12 @@ static void terminate_options(int sig);
 
 #define COL_OPTION_VALUES 36	/* display column where option values start */
 
-#ifndef NO_OPTION_MENU
-
 #if defined(USE_SLANG) || defined(COLOR_CURSES)
 static BOOLEAN can_do_colors = FALSE;
 #endif
 
 static int LYChosenShowColor = SHOW_COLOR_UNKNOWN;	/* whether to show and save */
 
-#endif /* NO_OPTION_MENU */
-
 BOOLEAN LYCheckUserAgent(void)
 {
     if (non_empty(LYUserAgent)) {
@@ -60,7 +56,37 @@ BOOLEAN LYCheckUserAgent(void)
     return TRUE;
 }
 
-#ifndef NO_OPTION_MENU
+static void validate_x_display(void)
+{
+    char *cp;
+
+    if ((cp = LYgetXDisplay()) != NULL) {
+	StrAllocCopy(x_display, cp);
+    } else {
+	FREE(x_display);
+    }
+}
+
+static void summarize_x_display(char *display_option)
+{
+    if ((x_display == NULL && *display_option == '\0') ||
+	(x_display != NULL && !strcmp(x_display, display_option))) {
+	if (x_display == NULL && LYisConfiguredForX == TRUE) {
+	    _statusline(VALUE_ACCEPTED_WARNING_X);
+	} else if (x_display != NULL && LYisConfiguredForX == FALSE) {
+	    _statusline(VALUE_ACCEPTED_WARNING_NONX);
+	} else {
+	    _statusline(VALUE_ACCEPTED);
+	}
+    } else {
+	if (*display_option) {
+	    _statusline(FAILED_TO_SET_DISPLAY);
+	} else {
+	    _statusline(FAILED_CLEAR_SET_DISPLAY);
+	}
+    }
+}
+
 static void SetupChosenShowColor(void)
 {
 #if defined(USE_SLANG) || defined(COLOR_CURSES)
@@ -97,37 +123,7 @@ static void SetupChosenShowColor(void)
 #endif /* USE_SLANG || COLOR_CURSES */
 }
 
-static void validate_x_display(void)
-{
-    char *cp;
-
-    if ((cp = LYgetXDisplay()) != NULL) {
-	StrAllocCopy(x_display, cp);
-    } else {
-	FREE(x_display);
-    }
-}
-
-static void summarize_x_display(char *display_option)
-{
-    if ((x_display == NULL && *display_option == '\0') ||
-	(x_display != NULL && !strcmp(x_display, display_option))) {
-	if (x_display == NULL && LYisConfiguredForX == TRUE) {
-	    _statusline(VALUE_ACCEPTED_WARNING_X);
-	} else if (x_display != NULL && LYisConfiguredForX == FALSE) {
-	    _statusline(VALUE_ACCEPTED_WARNING_NONX);
-	} else {
-	    _statusline(VALUE_ACCEPTED);
-	}
-    } else {
-	if (*display_option) {
-	    _statusline(FAILED_TO_SET_DISPLAY);
-	} else {
-	    _statusline(FAILED_CLEAR_SET_DISPLAY);
-	}
-    }
-}
-
+#ifndef NO_OPTION_MENU
 static int boolean_choice(int status,
 			  int line,
 			  int column,
diff --git a/src/LYPrettySrc.c b/src/LYPrettySrc.c
index 988a1ab6..fa6edfac 100644
--- a/src/LYPrettySrc.c
+++ b/src/LYPrettySrc.c
@@ -150,9 +150,9 @@ static void append_open_tag(char *tagname,
 
 #  if 0
 	/*
-	 * we don't provide a classname as attribute of that tag, since for plain
-	 * formatting tags they are not used directly for anything except style -
-	 * and we provide style value directly.
+	 * we don't provide a classname as attribute of that tag, since for
+	 * plain formatting tags they are not used directly for anything except
+	 * style - and we provide style value directly.
 	 */
 	int class_attr_idx = 0;
 	int n = tag->number_of_attributes;
@@ -171,20 +171,30 @@ static void append_open_tag(char *tagname,
 #endif
 }
 
-/* returns 1 if incorrect */
+#define isLeadP(p) ((isalpha(UCH(*p)) || *p == '_'))
+#define isNextP(p) ((isalnum(UCH(*p)) || *p == '_'))
+
+#define FMT_AT " at column %d:\n\t%s\n"
+#define TXT_AT (1 + p - ts), ts
+
+/* returns FALSE if incorrect */
 int html_src_parse_tagspec(char *ts,
 			   HTlexeme lexeme,
 			   BOOL checkonly,
 			   BOOL isstart)
 {
+    BOOL stop = FALSE;
+    BOOL code = FALSE;
     char *p = ts;
     char *tagstart = 0;
     char *tagend = 0;
     char *classstart;
     char *classend;
-    char stop = FALSE, after_excl = FALSE;
+    char save, save1;
+    char after_excl = FALSE;
     html_src_check_state state = HTSRC_CK_normal;
-    HT_tagspec *head = NULL, *tail = NULL;
+    HT_tagspec *head = NULL;
+    HT_tagspec *tail = NULL;
     HT_tagspec **slot = (isstart ? lexeme_start : lexeme_end) + lexeme;
 
     while (!stop) {
@@ -194,111 +204,139 @@ int html_src_parse_tagspec(char *ts,
 	    switch (*p) {
 	    case '\0':
 		stop = TRUE;
+		code = TRUE;
 		break;
 	    case ' ':
 	    case '\t':
 		break;
 	    case '!':
-		if (state == HTSRC_CK_seen_excl)
-		    return 1;	/*second '!' */
+		if (state == HTSRC_CK_seen_excl) {
+		    CTRACE2(TRACE_CFG,
+			    (tfp, "second '!'" FMT_AT,
+			     TXT_AT));
+		    stop = TRUE;
+		    break;
+		}
 		state = HTSRC_CK_seen_excl;
 		after_excl = TRUE;
 		break;
 	    default:
-		if (isalpha(UCH(*p)) || *p == '_') {
-		    tagstart = p;
-		    while (*p && (isalnum(UCH(*p)) || *p == '_'))
-			++p;
-		    tagend = p;
-		    state = HTSRC_CK_after_tagname;
-		} else
-		    return 1;
-		continue;
+		if (!isLeadP(p)) {
+		    CTRACE2(TRACE_CFG,
+			    (tfp, "no name starting" FMT_AT,
+			     TXT_AT));
+		    stop = TRUE;
+		    break;
+		}
+		tagstart = p;
+		while (*p && isNextP(p))
+		    ++p;
+		tagend = p--;
+		state = HTSRC_CK_after_tagname;
 	    }
 	    break;
 	case HTSRC_CK_after_tagname:
 	    switch (*p) {
 	    case '\0':
 		stop = TRUE;
+		code = TRUE;
 		/* FALLTHRU */
 	    case ' ':
 		/* FALLTHRU */
 	    case '\t':
-		{
-		    char save = *tagend;
-
-		    *tagend = '\0';
-		    classstart = 0;
-		    if (checkonly) {
-			int idx = html_src_tag_index(tagstart);
-
-			*tagend = save;
-			if (idx == -1)
-			    return 1;
-		    } else {
-			if (after_excl)
-			    append_close_tag(tagstart, &head, &tail);
-			else
-			    append_open_tag(tagstart, NULL, &head, &tail);
+		save = *tagend;
+
+		*tagend = '\0';
+		classstart = 0;
+		if (checkonly) {
+		    int idx = html_src_tag_index(tagstart);
+
+		    CTRACE2(TRACE_CFG,
+			    (tfp, "tag index(%s) = %d\n",
+			     tagstart, idx));
+
+		    *tagend = save;
+		    if (idx == -1) {
+			stop = TRUE;
+			break;
 		    }
-		    state = HTSRC_CK_normal;
-		    after_excl = FALSE;
+		} else {
+		    if (after_excl)
+			append_close_tag(tagstart, &head, &tail);
+		    else
+			append_open_tag(tagstart, NULL, &head, &tail);
 		}
+		state = HTSRC_CK_normal;
+		after_excl = FALSE;
 		break;
 	    case '.':
-		if (after_excl)
-		    return 1;
+		if (after_excl) {
+		    CTRACE2(TRACE_CFG,
+			    (tfp, "dot after '!'" FMT_AT,
+			     TXT_AT));
+		    stop = TRUE;
+		    break;
+		}
 		state = HTSRC_CK_seen_dot;
 		break;
 	    default:
-		return 1;
+		CTRACE2(TRACE_CFG,
+			(tfp, "unexpected char '%c' after tagname" FMT_AT,
+			 *p, TXT_AT));
+		stop = TRUE;
+		break;
 	    }
 	    break;
-	case HTSRC_CK_seen_dot:{
-		switch (*p) {
-		case ' ':
-		case '\t':
+	case HTSRC_CK_seen_dot:
+	    switch (*p) {
+	    case ' ':
+	    case '\t':
+		break;
+	    case '\0':
+		CTRACE2(TRACE_CFG,
+			(tfp, "expected text after dot" FMT_AT,
+			 TXT_AT));
+		stop = TRUE;
+		break;
+	    default:
+		if (!isLeadP(p)) {
+		    CTRACE2(TRACE_CFG,
+			    (tfp, "no name starting" FMT_AT,
+			     TXT_AT));
+		    stop = TRUE;
 		    break;
-		case '\0':
-		    return 1;
-		default:{
-			char save, save1;
-
-			if (isalpha(UCH(*p)) || *p == '_') {
-			    classstart = p;
-			    while (*p && (isalnum(UCH(*p)) || *p == '_'))
-				++p;
-			    classend = p;
-			    save = *classend;
-			    *classend = '\0';
-			    save1 = *tagend;
-			    *tagend = '\0';
-			    if (checkonly) {
-				int idx = html_src_tag_index(tagstart);
-
-				*tagend = save1;
-				*classend = save;
-				if (idx == -1)
-				    return 1;
-			    } else {
-				append_open_tag(tagstart, classstart, &head, &tail);
-			    }
-			    state = HTSRC_CK_normal;
-			    after_excl = FALSE;
-			    continue;
-			} else
-			    return 1;
-		    }
-		}		/*of switch(*p) */
+		}
+		classstart = p;
+		while (*p && isNextP(p))
+		    ++p;
+		classend = p--;
+		save = *classend;
+		*classend = '\0';
+		save1 = *tagend;
+		*tagend = '\0';
+		if (checkonly) {
+		    int idx = html_src_tag_index(tagstart);
+
+		    *tagend = save1;
+		    *classend = save;
+		    if (idx == -1)
+			return FALSE;
+		} else {
+		    append_open_tag(tagstart, classstart, &head, &tail);
+		}
+		state = HTSRC_CK_normal;
+		after_excl = FALSE;
 		break;
-	    }			/* of case HTSRC_CK_seen_dot: */
+	    }			/* of switch(*p) */
+	    break;
 	}			/* of switch */
 	++p;
     }
 
-    if (!checkonly)
+    if (code && !checkonly)
 	*slot = head;
-    return 0;
+
+    return code;
 }
 
 /*this will clean the data associated with lexeme 'l' */
@@ -344,12 +382,23 @@ void html_src_on_lynxcfg_reload(void)
     HTMLSRC_init_caches(TRUE);
 }
 
+static void failed_init(const char *tag, int lexeme)
+{
+    fprintf(stderr,
+	    gettext("parse-error while caching %s tagspec of lexeme %d\n"),
+	    tag, lexeme);
+    fprintf(stderr,
+	    gettext("Use -trace -trace-mask=8 to see details in log.\n"));
+    exit_immediately(EXIT_FAILURE);
+}
+
 void HTMLSRC_init_caches(BOOL dont_exit)
 {
     int i;
     char *p;
     char buf[1000];
 
+    CTRACE2(TRACE_CFG, (tfp, "HTMLSRC_init_caches(%d tagspecs)\n", HTL_num_lexemes));
     for (i = 0; i < HTL_num_lexemes; ++i) {
 	/*we assume that HT_tagspecs was NULLs at when program started */
 	LYstrncpy(buf,
@@ -359,18 +408,21 @@ void HTMLSRC_init_caches(BOOL dont_exit)
 		  sizeof(buf) - 1);
 	StrAllocCopy(HTL_tagspecs[i], buf);
 
+	CTRACE2(TRACE_CFG, (tfp, "parsing lexeme %d: %s\n", i + 1, buf));
+
 	if ((p = strchr(buf, ':')) != 0)
 	    *p = '\0';
-	if (html_src_parse_tagspec(buf, (HTlexeme) i, FALSE, TRUE) && !dont_exit) {
-	    fprintf(stderr,
-		    "internal error while caching 1st tagspec of %d lexeme", i);
-	    exit_immediately(EXIT_FAILURE);
+	if (!html_src_parse_tagspec(buf,
+				    (HTlexeme) i,
+				    FALSE,
+				    TRUE) && !dont_exit) {
+	    failed_init("1st", i);
 	}
-	if (html_src_parse_tagspec(p ? p + 1 : NULL, (HTlexeme) i, FALSE,
-				   FALSE) && !dont_exit) {
-	    fprintf(stderr,
-		    "internal error while caching 2nd tagspec of %d lexeme", i);
-	    exit_immediately(EXIT_FAILURE);
+	if (!html_src_parse_tagspec(p ? p + 1 : NULL,
+				    (HTlexeme) i,
+				    FALSE,
+				    FALSE) && !dont_exit) {
+	    failed_init("2nd", i);
 	}
     }
 }
diff --git a/src/LYReadCFG.c b/src/LYReadCFG.c
index e8e21d55..ce7a758c 100644
--- a/src/LYReadCFG.c
+++ b/src/LYReadCFG.c
@@ -1100,8 +1100,8 @@ static int parse_html_src_spec(HTlexeme lexeme_code, char *value,
     CTRACE((tfp, "ReadCFG - parsing tagspec '%s:%s' for option '%s'\n",
 	    value, ts2, option_name));
     html_src_clean_item(lexeme_code);
-    if (html_src_parse_tagspec(value, lexeme_code, TRUE, TRUE)
-	|| html_src_parse_tagspec(ts2, lexeme_code, TRUE, TRUE)) {
+    if (!html_src_parse_tagspec(value, lexeme_code, TRUE, TRUE)
+	|| !html_src_parse_tagspec(ts2, lexeme_code, TRUE, TRUE)) {
 	*ts2 = ':';
 	BS();
     }
@@ -1258,6 +1258,9 @@ static Config_Type Config_Table [] =
 #ifdef USE_COLOR_TABLE
      PARSE_FUN(RC_COLOR,                color_fun),
 #endif
+#ifdef USE_COLOR_STYLE
+     PARSE_STR(RC_COLOR_STYLE,          lynx_lss_file),
+#endif
      PARSE_PRG(RC_COMPRESS_PATH,        ppCOMPRESS),
      PARSE_PRG(RC_COPY_PATH,            ppCOPY),
      PARSE_INT(RC_CONNECT_TIMEOUT,      connect_timeout),
diff --git a/src/LYStrings.c b/src/LYStrings.c
index 92eaf1bd..2b1e29bb 100644
--- a/src/LYStrings.c
+++ b/src/LYStrings.c
@@ -111,6 +111,10 @@ int fancy_mouse(WINDOW * win, int row,
 {
     int cmd = LYK_DO_NOTHING;
 
+    (void) win;
+    (void) row;
+    (void) position;
+
 #ifdef USE_MOUSE
 /*********************************************************************/
 
@@ -733,6 +737,17 @@ static int myGetChar(void)
 	    break;
 	}
     } while (!done);
+
+    /* PDCurses - until version 2.7 in 2005 - defined ERR as 0, unlike other
+     * versions of curses.  Generally both EOF and ERR are defined as -1's,
+     * making lynx's code work nicely when mixing curses and stdio functions.
+     * Accommodate PDCurses by making it follow that convention.
+     */
+#if defined(ERR) && ((ERR) != -1)
+    if (c == ERR)
+	c = -1;
+#endif
+
     return c;
 }
 #define GetChar() myGetChar()
@@ -1070,8 +1085,10 @@ static BOOLEAN unescape_string(char *src, char *dst, char *final)
 	    dst[1] = '\0';
 	    ok = TRUE;
 	}
-    } else if (*src == DQUOTE)
+    } else if (*src == DQUOTE) {
 	ok = expand_substring(dst, src + 1, src + strlen(src) - 1, final);
+	(void) final;
+    }
     return ok;
 }
 
@@ -1110,15 +1127,16 @@ int map_string_to_keysym(const char *str, int *keysym)
 	if (*str) {
 	    size_t len = strlen(str);
 
-	    if (len == 1)
+	    if (len == 1) {
 		return (*keysym = (UCH(str[0])) | modifier);
-	    else if (len == 2 && str[0] == '^' &&
-		     (isalpha(UCH(str[1])) ||
-		      (TOASCII(str[1]) >= '@' && TOASCII(str[1]) <= '_')))
+	    } else if (len == 2 && str[0] == '^' &&
+		       (isalpha(UCH(str[1])) ||
+			(TOASCII(str[1]) >= '@' && TOASCII(str[1]) <= '_'))) {
 		return (*keysym = FROMASCII(UCH(str[1] & 0x1f)) | modifier);
-	    else if (len == 2 && str[0] == '^' &&
-		     str[1] == '?')
+	    } else if (len == 2 && str[0] == '^' &&
+		       str[1] == '?') {
 		return (*keysym = CH_DEL | modifier);
+	    }
 	    if (*str == '^' || *str == '\\') {
 		char buf[BUFSIZ];
 
@@ -1637,6 +1655,8 @@ static int LYgetch_for(int code)
     int current_modifier = 0;
     BOOLEAN done_esc = FALSE;
 
+    (void) code;
+
     have_levent = 0;
 
   re_read:
@@ -3800,6 +3820,8 @@ static void draw_option(WINDOW * win, int entry,
 {
     char Cnum[MAX_LINE];
 
+    (void) width;
+
     FormatChoiceNum(Cnum, num_choices, number, "");
 #ifdef USE_SLANG
     SLsmg_gotorc(win->top_y + entry, (win->left_x + 2));
diff --git a/src/LYStyle.c b/src/LYStyle.c
index 3249f12f..a8ac9379 100644
--- a/src/LYStyle.c
+++ b/src/LYStyle.c
@@ -1,6 +1,6 @@
 /* character level styles for Lynx
  * (c) 1996 Rob Partington -- donated to the Lyncei (if they want it :-)
- * @Id: LYStyle.c 1.60 Thu, 02 Jun 2005 15:36:59 -0700 dickey @
+ * @Id: LYStyle.c 1.61 Thu, 31 Aug 2006 16:37:53 -0700 dickey @
  */
 #include <HTUtils.h>
 #include <HTML.h>
@@ -372,28 +372,113 @@ static void free_colorstylestuff(void)
 #endif
 
 /*
- * initialise the default style sheet
- * This should be able to be read from a file in CSS format :-)
+ * Initialise the default style sheet to match the vanilla-curses lynx.
  */
 static void initialise_default_stylesheet(void)
 {
-    static const char *table[] =
-    {
-	"a:bold:green",
-	"alert:bold:yellow:red",
-	"alink:reverse:yellow:black",
-	"label:normal:magenta",
-	"status:reverse:yellow:blue",
-	"title:normal:magenta",
-	"whereis:reverse+underline:magenta:cyan"
+    /* Use the data setup in USE_COLOR_TABLE */
+    /* *INDENT-OFF* */
+    static const struct {
+	int		color;	/* index into lynx_color_pairs[] */
+	const char	*type;
+    } table2[] = {
+	/*
+	 * non-color-style colors encode bold/reverse/underline as a 0-7
+	 * index like this:
+	 *  b,r,u 0
+	 *  b,r,U 1
+	 *  b,R,u 2
+	 *  b,R,U 3
+	 *  B,r,u 4
+	 *  B,r,U 5
+	 *  B,R,u 6
+	 *  B,R,U 7
+	 */
+	{ 0,	"normal" },
+	{ 1,	"a" },
+	{ 2,	"status" },
+	{ 4,	"b" },
+	{ 4,	"blink" },
+	{ 4,	"cite" },
+	{ 4,	"del" },
+	{ 4,	"em" },
+	{ 4,	"i" },
+	{ 4,	"ins" },
+	{ 4,	"strike" },
+	{ 4,	"strong" },
+	{ 4,	"u" },
+#if 0
+	{ 5,	"a.b" },
+	{ 5,	"b.a" },
+	{ 5,	"var.a" },
+#endif
+	{ 6,	"alink" },
+	{ 7,	"whereis" },
+#if 0
+	{ 0,	"h2.link" },
+	{ 0,	"link.h2" },
+#endif
+#ifdef USE_PRETTYSRC
+	/* FIXME: HTL_tagspecs_defaults[] has similar info */
+	{ 4,	"span.htmlsrc_comment" },
+	{ 4,	"span.htmlsrc_tag" },
+	{ 4,	"span.htmlsrc_attrib" },
+	{ 4,	"span.htmlsrc_attrval" },
+	{ 4,	"span.htmlsrc_abracket" },
+	{ 4,	"span.htmlsrc_entity" },
+	{ 4,	"span.htmlsrc_href" },
+	{ 4,	"span.htmlsrc_entire" },
+	{ 4,	"span.htmlsrc_badseq" },
+	{ 4,	"span.htmlsrc_badtag" },
+	{ 4,	"span.htmlsrc_badattr" },
+	{ 4,	"span.htmlsrc_sgmlspecial" },
+#endif
     };
+    /* *INDENT-ON* */
+
     unsigned n;
-    char temp[80];
+    char *normal = LYgetTableString(0);
+    char *strong = LYgetTableString(4);
 
-    CTRACE((tfp, "initialize_default_stylesheet\n"));
-    for (n = 0; n < TABLESIZE(table); n++) {
-	parse_style(strcpy(temp, table[n]));
+    CTRACE((tfp, "initialise_default_stylesheet\n"));
+
+    /*
+     * For debugging this function, create hash codes for all of the tags.
+     * That makes it simpler to find the cases that are overlooked in the
+     * table.
+     */
+    for (n = 0; n < (unsigned) HTML_dtd.number_of_tags; ++n) {
+	char *name = 0;
+
+	HTSprintf0(&name, "%s:%s", HTML_dtd.tags[n].name, normal);
+	parse_style(name);
+	FREE(name);
+    }
+
+    for (n = 0; n < TABLESIZE(table2); ++n) {
+	int code = table2[n].color;
+	char *name = 0;
+	char *value = 0;
+
+	switch (code) {
+	case 0:
+	    value = normal;
+	    break;
+	case 4:
+	    value = strong;
+	    break;
+	default:
+	    value = LYgetTableString(code);
+	    break;
+	}
+	HTSprintf0(&name, "%s:%s", table2[n].type, value);
+	parse_style(name);
+	FREE(name);
+	if (value != normal && value != strong && value != 0)
+	    free(value);
     }
+    FREE(normal);
+    FREE(strong);
 }
 
 /* Set all the buckets in the hash table to be empty */
@@ -444,7 +529,6 @@ void parse_userstyles(void)
     colorPairs = 0;
     style_initialiseHashTable();
 
-    /* set our styles to be the same as vanilla-curses-lynx */
     if (HTList_isEmpty(cur)) {
 	initialise_default_stylesheet();
     } else {
diff --git a/src/LYUtils.c b/src/LYUtils.c
index 10d6442c..61a2a45f 100644
--- a/src/LYUtils.c
+++ b/src/LYUtils.c
@@ -1023,6 +1023,9 @@ void LYhighlight(int flag,
 #endif
     tmp[0] = tmp[1] = tmp[2] = '\0';
 
+    CTRACE((tfp, "LYhighlight %s %d:%s\n",
+	    flag ? "on" : "off", cur, NONNULL(target)));
+
     /*
      * Bugs in the history code might cause -1 to be sent for cur, which yields
      * a crash when LYstrncpy() is called with a nonsense pointer.  As far as I
@@ -1442,7 +1445,7 @@ void statusline(const char *text)
 	    LYaddstr(buffer);
 	    wbkgdset(LYwin,
 		     ((lynx_has_color && LYShowColor >= SHOW_COLOR_ON)
-		      ? hashStyles[a].color
+		      ? (chtype) hashStyles[a].color
 		      : A_NORMAL) | ' ');
 	    LYclrtoeol();
 	    if (!(lynx_has_color && LYShowColor >= SHOW_COLOR_ON))
@@ -2706,8 +2709,10 @@ BOOLEAN LYCanReadFile(const char *filename)
 {
     FILE *fp;
 
-    if ((fp = fopen(filename, "r")) != 0) {
-	return LYCloseInput(fp);
+    if (!isEmpty(filename)) {
+	if ((fp = fopen(filename, "r")) != 0) {
+	    return LYCloseInput(fp);
+	}
     }
     return FALSE;
 }
@@ -7505,7 +7510,7 @@ static int clip_grab(void)
     if (!cmd)
 	return 0;
 
-    paste_handle = popen(cmd, "rt");
+    paste_handle = popen(cmd, TXT_R);
     if (!paste_handle)
 	return 0;
     return 1;
@@ -7551,7 +7556,7 @@ int put_clip(const char *s)
     if (!cmd)
 	return -1;
 
-    fh = popen(cmd, "wt");
+    fh = popen(cmd, TXT_W);
     if (!fh)
 	return -1;
     res = fwrite(s, 1, l, fh);
diff --git a/src/LYrcFile.h b/src/LYrcFile.h
index 16db1647..c39d8a37 100644
--- a/src/LYrcFile.h
+++ b/src/LYrcFile.h
@@ -34,6 +34,7 @@
 #define RC_CHMOD_PATH                   "chmod_path"
 #define RC_COLLAPSE_BR_TAGS             "collapse_br_tags"
 #define RC_COLOR                        "color"
+#define RC_COLOR_STYLE                  "color_style"
 #define RC_COMPRESS_PATH                "compress_path"
 #define RC_CONNECT_TIMEOUT              "connect_timeout"
 #define RC_COOKIE_ACCEPT_DOMAINS        "cookie_accept_domains"
diff --git a/src/chrtrans/makeuctb.c b/src/chrtrans/makeuctb.c
index e11cd1fe..9d3d9280 100644
--- a/src/chrtrans/makeuctb.c
+++ b/src/chrtrans/makeuctb.c
@@ -22,6 +22,7 @@
 #define NO_FILIO_H
 #endif
 
+#define DONT_USE_GETTEXT
 #define DONT_USE_SOCKS5
 #include <UCDefs.h>
 #include <UCkd.h>
diff --git a/src/makefile.in b/src/makefile.in
index 36a18ae3..adbd2a04 100644
--- a/src/makefile.in
+++ b/src/makefile.in
@@ -77,7 +77,7 @@ OBJS	= \
 	LYLeaks$o LYexit$o LYJump$o LYList$o LYCgi$o \
 	LYTraversal$o LYEditmap$o LYCharSets$o LYCharUtils$o \
 	LYMap$o LYCookie$o LYStyle$o LYHash$o LYPrettySrc$o \
-	TRSTable$o $(CHARTRANS_OBJS) @LIBOBJS@
+	TRSTable$o $(CHARTRANS_OBJS) @EXTRA_OBJS@ @LIBOBJS@
 
 C_SRC	= $(OBJS:$o=.c)
 
diff --git a/test/test-styles.html b/test/test-styles.html
new file mode 100644
index 00000000..39dfb9fa
--- /dev/null
+++ b/test/test-styles.html
@@ -0,0 +1,106 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<HTML>
+<HEAD>
+<TITLE>Test Color-Styles</TITLE>
+</HEAD>
+<BODY>
+<h1>Heading 1</h1>
+<h2>Heading 2</h2>
+<h3>Heading 3</h3>
+<h4>Heading 4</h4>
+<h5>Heading 5</h5>
+<h6>Heading 6</h6>
+
+<h1>Heading 1 - Ordinary Text</h1>
+<h2><a name="#fontlike_text">Heading 2 - <b>Fontlike</b> Text</a></h2>
+<!-- STYLE,BR,TAB -->
+This is <b>b (bold)</b>.
+<br>
+This is <big>big</big>.
+<br>
+This is <blink>blink</blink>.
+<br>
+This is <i>i (italicized)</i>.
+<br>
+This is <small>small</small>.
+<br>
+This is <strike>strike</strike>.
+<br>
+This is <tt>tt (typewriter)</tt>.
+<br>
+This is <u>u (underlined)</u>.
+
+<h2><a name="#emphasized_text">Heading 2 - <em>Emphasized</em> Text</a></h2>
+This is <cite>cite (citation)</cite>.
+<br>
+This is <code>code</code>.
+<br>
+This is <del>del</del>.
+<br>
+This is <dfn>dfn (definition)</dfn>.
+<br>
+This is <em>emphasized</em>.
+<br>
+This is <ins>ins</ins>.
+<br>
+This is <kbd>kbd (keyboard)</kbd>.
+<br>
+This is <q>q (quoted)</q>.
+<br>
+This is <samp>samp (sample)</samp>.
+<br>
+This is <span>span</span>.
+<br>
+This is <strong>strong</strong>.
+<br>
+This is <var>var</var>.
+
+<h1>Heading 1 - Ordinary Links</h1>
+<a href="#fontlike_text">This is a link</a> to fontlike text.
+<br>
+<a href="#emphasized_text">This is a link</a> to emphasized text.
+
+<h1>Heading 1 - Emphasized Links</h1>
+<h2><a name="#fontlike_links">Heading 2 - <b>Fontlike</b> Links</a></h2>
+<br>
+This is <a href="#fontlike_text"><b>b (bold)</b> link</a>.
+<br>
+This is <a href="#fontlike_text"><big>big</big> link</a>.
+<br>
+This is <a href="#fontlike_text"><blink>blink</blink> link</a>.
+<br>
+This is <a href="#fontlike_text"><i>i (italicized)</i> link</a>.
+<br>
+This is <a href="#fontlike_text"><small>small</small> link</a>.
+<br>
+This is <a href="#fontlike_text"><strike>strike</strike> link</a>.
+<br>
+This is <a href="#fontlike_text"><tt>tt (typewriter)</tt> link</a>.
+<br>
+This is <a href="#fontlike_text"><u>u (underlined)</u> link</a>.
+
+<h2><a name="#emphasized_links">Heading 2 - <b>Emphasized</b> Links</a></h2>
+This is <a href="#emphasized_text"><cite>cite (citation)</cite> link</a>.
+<br>
+This is <a href="#emphasized_text"><code>code</code> link</a>.
+<br>
+This is <a href="#emphasized_text"><del>del</del> link</a>.
+<br>
+This is <a href="#emphasized_text"><dfn>dfn (definition)</dfn> link</a>.
+<br>
+This is <a href="#emphasized_text"><em>emphasized</em> link</a>.
+<br>
+This is <a href="#emphasized_text"><ins>ins</ins> link</a>.
+<br>
+This is <a href="#emphasized_text"><kbd>kbd (keyboard)</kbd> link</a>.
+<br>
+This is <a href="#emphasized_text"><q>q (quoted)</q> link</a>.
+<br>
+This is <a href="#emphasized_text"><samp>samp (sample)</samp> link</a>.
+<br>
+This is <a href="#emphasized_text"><span>span</span> link</a>.
+<br>
+This is <a href="#emphasized_text"><strong>strong</strong> link</a>.
+<br>
+This is <a href="#emphasized_text"><var>var</var> link</a>.
+</BODY>
diff --git a/userdefs.h b/userdefs.h
index 34fe1eee..35535e8b 100644
--- a/userdefs.h
+++ b/userdefs.h
@@ -1360,11 +1360,11 @@
  * the version definition with the Project Version on checkout.  Just
  * ignore it. - kw */
 /* $Format: "#define LYNX_VERSION \"$ProjectVersion$\""$ */
-#define LYNX_VERSION "2.8.6dev.18"
+#define LYNX_VERSION "2.8.6dev.19"
 #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 "Mon, 29 May 2006 15:44:54 -0700"
+#define LYNX_DATE "Thu, 31 Aug 2006 16:37:53 -0700"
 #define LYNX_DATE_OFF 5		/* truncate the automatically-generated date */
 #define LYNX_DATE_LEN 11	/* truncate the automatically-generated date */