lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: lynx-dev lynx2.8.3dev.10


From: Hiroyuki Senshu
Subject: Re: lynx-dev lynx2.8.3dev.10
Date: Wed, 29 Sep 1999 23:33:24 +0900

Hello lynx-dev.

I appreciate the continuous effort of Mr. T.E.Dickey.

Today, dev.10 that it was introduced to the public was tried.

The check of a part of the code was done to reduce some warning
message though there was no problem fundamentally.

It is grateful when it can have it reflect when it is revised
because the one for the difference is shown in the following.

----- cut here ------
diff -Bur lynx283.d10/WWW/Library/Implementation/HTUtils.h 
lynx283.w32/WWW/Library/Implementation/HTUtils.h
--- lynx283.d10/WWW/Library/Implementation/HTUtils.h    Wed Sep 29 21:41:14 1999
+++ lynx283.w32/WWW/Library/Implementation/HTUtils.h    Wed Sep 29 22:01:02 1999
@@ -122,7 +122,9 @@
 #if defined(_WINDOWS) && !defined(__CYGWIN__)  /* SCW */
 #include <windows.h>           /* #include "windef.h" */
 #define BOOLEAN_DEFINED
+#if !_WIN_CC                   /* 1999/09/29 (Wed) 22:00:53 */
 #include <dos.h>
+#endif
 #undef sleep                   /* 1998/06/23 (Tue) 16:54:53 */
 extern void sleep(unsigned __seconds);
 #define popen _popen
diff -Bur lynx283.d10/src/LYMain.c lynx283.w32/src/LYMain.c
--- lynx283.d10/src/LYMain.c    Wed Sep 29 21:41:16 1999
+++ lynx283.w32/src/LYMain.c    Wed Sep 29 21:41:34 1999
@@ -774,6 +774,9 @@
     FILE *fp;
     char filename[LY_MAXPATH];
     BOOL LYGetStdinArgs = FALSE;
+#ifdef _WINDOWS
+    WSADATA WSAData;
+#endif /* _WINDOWS */
 
 #ifdef    NOT_ASCII
     FixCharacters();
@@ -784,7 +787,6 @@
 #endif
 
 #ifdef _WINDOWS
-    WSADATA WSAData;
     {
        int err;
        WORD wVerReq;
diff -Bur lynx283.d10/src/LYReadCFG.c lynx283.w32/src/LYReadCFG.c
--- lynx283.d10/src/LYReadCFG.c Wed Sep 29 21:41:16 1999
+++ lynx283.w32/src/LYReadCFG.c Wed Sep 29 21:43:06 1999
@@ -958,8 +958,8 @@
     if (p[len-1] == '*') {
        --len;
        for (i = 0 ;i < LYNumCharsets; ++i) {
-           if ((!strncasecmp(p, LYchar_set_names[i], len)) ||
-               (!strncasecmp(p, LYCharSet_UC[i].MIMEname, len)) ) {
+           if ((!strncasecomp(p, LYchar_set_names[i], len)) ||
+               (!strncasecomp(p, LYCharSet_UC[i].MIMEname, len)) ) {
                ++matches;
                matched_charset_choice(display_charset, i);
            }
@@ -968,8 +968,8 @@
        return 0;
     } else {
        for (i = 0; i < LYNumCharsets; ++i) {
-           if ((!strcasecmp(p,LYchar_set_names[i])) ||
-               (!strcasecmp(p,LYCharSet_UC[i].MIMEname)) ) {
+           if ((!strcasecomp(p,LYchar_set_names[i])) ||
+               (!strcasecomp(p,LYCharSet_UC[i].MIMEname)) ) {
                matched_charset_choice(display_charset, i);
                CTRACE((tfp," - OK\n"));
                ++matches;
------------

--
山形県立産業技術短期大学校 庄内校 電子情報科
 千秋 広幸 (E-Mail address@hidden)

reply via email to

[Prev in Thread] Current Thread [Next in Thread]