From 71b57a508ade8dc5a774556e2e4e25956fd750cf Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Tue, 15 Jan 2008 13:56:18 +0000 Subject: [PATCH] Remove sh.exp.c.patch. The fix is included in version 6.15.00 --- bin/csh/sh.exp.c.patch | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 bin/csh/sh.exp.c.patch diff --git a/bin/csh/sh.exp.c.patch b/bin/csh/sh.exp.c.patch deleted file mode 100644 index a6a1d6d0c6..0000000000 --- a/bin/csh/sh.exp.c.patch +++ /dev/null @@ -1,44 +0,0 @@ -$DragonFly: src/bin/csh/Attic/sh.exp.c.patch,v 1.1 2004/07/27 21:01:44 dillon Exp $ -Index: sh.exp.c -=================================================================== -RCS file: /cvs/src/contrib/tcsh/sh.exp.c,v -retrieving revision 1.1 -diff -u -r1.1 sh.exp.c ---- sh.exp.c 17 Jun 2003 02:47:06 -0000 1.1 -+++ sh.exp.c 27 Jul 2004 20:25:12 -0000 -@@ -59,7 +59,7 @@ - - static int sh_access __P((Char *, int)); - static int exp1 __P((Char ***, bool)); --static int exp2 __P((Char ***, bool)); -+static int exp2x __P((Char ***, bool)); - static int exp2a __P((Char ***, bool)); - static int exp2b __P((Char ***, bool)); - static int exp2c __P((Char ***, bool)); -@@ -233,7 +233,7 @@ - register Char ***vp; - bool ignore; - { -- register int p1 = exp2(vp, ignore); -+ register int p1 = exp2x(vp, ignore); - - #ifdef EDEBUG - etraci("exp1 p1", p1, vp); -@@ -252,7 +252,7 @@ - } - - static int --exp2(vp, ignore) -+exp2x(vp, ignore) - register Char ***vp; - bool ignore; - { -@@ -265,7 +265,7 @@ - register int p2; - - (*vp)++; -- p2 = exp2(vp, ignore); -+ p2 = exp2x(vp, ignore); - #ifdef EDEBUG - etraci("exp3 p2", p2, vp); - #endif /* EDEBUG */ -- 2.11.4.GIT