From ee3d46fdadbecea2b9c59890a7cbf9333a6e6eaa Mon Sep 17 00:00:00 2001 From: bostic Date: Sun, 28 Nov 1993 15:49:01 +0000 Subject: [PATCH] typo, tag files weren't getting copied on split --- ex/ex_tag.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ex/ex_tag.c b/ex/ex_tag.c index 9688ee56..6382b92a 100644 --- a/ex/ex_tag.c +++ b/ex/ex_tag.c @@ -9,7 +9,7 @@ */ #ifndef lint -static char sccsid[] = "$Id: ex_tag.c,v 8.26 1993/11/23 12:51:26 bostic Exp $ (Berkeley) $Date: 1993/11/23 12:51:26 $"; +static char sccsid[] = "$Id: ex_tag.c,v 8.27 1993/11/28 15:49:01 bostic Exp $ (Berkeley) $Date: 1993/11/28 15:49:01 $"; #endif /* not lint */ #include @@ -565,7 +565,7 @@ ex_tagcopy(orig, sp) /* Copy list of tag files. */ for (atfp = oexp->tagfq.tqh_first; - ap != NULL; atfp = atfp->q.tqe_next) { + atfp != NULL; atfp = atfp->q.tqe_next) { if ((tfp = malloc(sizeof(TAGF))) == NULL) goto nomem; *tfp = *atfp; -- 2.11.4.GIT