In a recent note, Thomas Dickey said:
> Date: Tue, 27 Apr 2004 16:36:21 -0400
>
> This is the first of two large cleanup patches before I start looking at
> the bug-reports again...
>
> 2004-04-27 (2.8.6dev.2)
> [ ... ]
> * remove macros such as ARGS1, NOPARM which supported K&R compilers -TD
>
Built on:
powerpc-apple-darwin7.3.0
sparc-sun-solaris2.8
i370-ibm-openedition
... but it broke on the last because of something superfluous I
did trying to declare a function pointer. Since it's unnecessary,
I'll just delete it rather than introducing a bizarre construct to
repair it.
Also fixed a version number in makefile.in.
Thanks,
gil
--
StorageTek
INFORMATION made POWERFUL
%%% 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 ) ) )
_______________________________________________
Lynx-dev mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lynx-dev