diff options
Diffstat (limited to 'misc/fep/patches/patch-ad')
-rw-r--r-- | misc/fep/patches/patch-ad | 26 |
1 files changed, 8 insertions, 18 deletions
diff --git a/misc/fep/patches/patch-ad b/misc/fep/patches/patch-ad index af6fa5e2ac5..5899a21e0fb 100644 --- a/misc/fep/patches/patch-ad +++ b/misc/fep/patches/patch-ad @@ -1,21 +1,15 @@ -$NetBSD: patch-ad,v 1.3 2003/11/07 16:35:51 christos Exp $ +$NetBSD: patch-ad,v 1.4 2003/11/11 10:42:32 wiz Exp $ ---- fep_defs.h.orig 1993-05-10 01:23:33.000000000 -0400 -+++ fep_defs.h 2003-11-07 11:14:52.000000000 -0500 -@@ -3,9 +3,9 @@ - #ifndef lint - # define FEP_DEFS \ - "$Header: /cvsroot/pkgsrc/misc/fep/patches/patch-ad,v 1.3 2003/11/07 16:35:51 christos Exp $ (SRA)" --#endif lint -+#endif /* lint */ +--- fep_defs.h.orig Mon May 10 07:23:33 1993 ++++ fep_defs.h +@@ -6,5 +6,5 @@ + #endif lint -#define MAXCOMLEN 512 /* maximum command length */ +#define MAXCMDLEN 512 /* maximum command length */ #define MAXARGS 64 /* maximum number of arguments */ #define ON 1 /* on switch */ - #define OFF 0 /* off switch */ -@@ -31,11 +31,11 @@ - # define isctlchar(c) (c && !iskanji(c) && (!(c&0140) || c=='\177')) +@@ -32,9 +32,9 @@ # define iswordchar(c) (c && (iskanji(c) || isalnum(c) || iscntrl(c))) # define isWordchar(c) ((c) && !isspace((c))) -#else KANJI @@ -27,9 +21,7 @@ $NetBSD: patch-ad,v 1.3 2003/11/07 16:35:51 christos Exp $ +#endif /* KANJI */ #define unctl(c) (((c)=='\177') ? '?' : ((c) >= 040) ? (c) : (c)|0100) #define toctrl(c) ((c)&~0100) - #define ctrl(c) ((c)&037) -@@ -53,17 +53,17 @@ - #ifdef KANJI +@@ -54,8 +54,8 @@ # define CHAR unsigned char # define CHARMASK 0377 -#else KANJI @@ -40,12 +32,10 @@ $NetBSD: patch-ad,v 1.3 2003/11/07 16:35:51 christos Exp $ +#endif /* KANJI */ /* - * Only one machine I know alloca() works is vax. - */ +@@ -64,5 +64,5 @@ #ifdef vax # define ALLOCA -#endif vax +#endif /* vax */ /* - * Typedef's |