* remove annoying trailing period from two statusline messages
ended with host name ("Looking up host.foo:81." and
"Making HTTP connection to foo.bar.")
diff -u -r LYNX2-8-.D23/lymessag.h LYNX2-8-/lymessag.h
--- LYNX2-8-.D23/lymessag.h Tue Nov 30 19:33:02 1999
+++ LYNX2-8-/lymessag.h Thu Mar 30 16:26:28 2000
@@ -576,7 +576,7 @@
#define CONTENT_TYPE_MSG gettext("Content-type: %s")
#define COMMAND_PROMPT gettext("Command: ")
#define VERSION_SEGMENT gettext(" Version ")
-#define FIRST_SEGMENT gettext(" first.")
+#define FIRST_SEGMENT gettext(" first")
#define GUESSING_SEGMENT gettext(", guessing...")
#define PERMISSIONS_SEGMENT gettext("Permissions for ")
#define SELECT_SEGMENT gettext("Select ")
diff -u -r LYNX2-8-.D23/www/library/implemen/httcp.c
LYNX2-8-/www/library/implemen/httcp.c
--- LYNX2-8-.D23/www/library/implemen/httcp.c Sun Mar 26 19:14:00 2000
+++ LYNX2-8-/www/library/implemen/httcp.c Thu Mar 30 16:32:52 2000
@@ -1471,7 +1471,7 @@
}
FREE(p1);
- HTSprintf0 (&line, gettext("Looking up %s."), host);
+ HTSprintf0 (&line, "%s%s", WWW_FIND_MESSAGE, host);
_HTProgress (line);
status = HTParseInet(soc_in, host);
if (status) {
@@ -1494,7 +1494,7 @@
return status;
}
- HTSprintf0 (&line, gettext("Making %s connection to %s."), protocol, host);
+ HTSprintf0 (&line, gettext("Making %s connection to %s"), protocol, host);
_HTProgress (line);
FREE(host);
FREE(line);