%%% Created Thu Apr 29 00:49:52 MDT 2004 by target lynx.patch. %%% diff -bru orig/lynx2-8-6/makefile.in lynx2-8-6/makefile.in --- orig/lynx2-8-6/makefile.in Thu Apr 29 00:44:55 2004 +++ lynx2-8-6/makefile.in Thu Apr 29 00:48:48 2004 @@ -36,10 +36,10 @@ ## This is the version which we are developing (or, upon release, make this ## the same). Use no dots in the name, since it must work on VMS and MS-DOS. -VERSION = 2-8-5 +VERSION = 2-8-6 ##this is the name of the directory the lynx source code is in. -##(e.g., lynx2-8-5, not the full path) +##(e.g., lynx2-8-6, not the full path) lynxdir= lynx$(VERSION) lynxname= lynx$(VERSION) diff -bru orig/lynx2-8-6/WWW/Library/Implementation/HTString.c lynx2-8-6/WWW/Library/Implementation/HTString.c --- orig/lynx2-8-6/WWW/Library/Implementation/HTString.c Tue Apr 27 14:06:18 2004 +++ lynx2-8-6/WWW/Library/Implementation/HTString.c Thu Apr 29 00:33:11 2004 @@ -250,17 +250,6 @@ } return 0; /* Match up to n characters */ } - - -/* With ASCII collating sequence -** ---------------- -*/ -int AS_cmp ( - const char * p, - const char * q) -{ - return( AS_ncmp( p, q, -1 ) ); -} #endif /* NOT_ASCII */ diff -bru orig/lynx2-8-6/WWW/Library/Implementation/HTString.h lynx2-8-6/WWW/Library/Implementation/HTString.h --- orig/lynx2-8-6/WWW/Library/Implementation/HTString.h Tue Apr 27 14:06:18 2004 +++ lynx2-8-6/WWW/Library/Implementation/HTString.h Thu Apr 29 00:32:06 2004 @@ -20,7 +20,6 @@ extern int AS_casecomp (const char *a, const char *b); extern int AS_ncmp (const char *a, const char *b, unsigned int n); #define AS_cmp( a, b ) ( AS_ncmp( ( a ), ( b ), -1 ) ) -extern int AS_cmp (const char *a, const char *b); #else #define AS_casecomp( a, b ) ( strcasecomp( ( a ), ( b ) ) )