=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/parse.c,v retrieving revision 1.26 retrieving revision 1.27 diff -c -r1.26 -r1.27 *** src/usr.bin/make/parse.c 1999/12/16 16:27:12 1.26 --- src/usr.bin/make/parse.c 1999/12/16 16:41:42 1.27 *************** *** 1,4 **** ! /* $OpenBSD: parse.c,v 1.26 1999/12/16 16:27:12 espie Exp $ */ /* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: parse.c,v 1.27 1999/12/16 16:41:42 espie Exp $ */ /* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */ /* *************** *** 43,49 **** #if 0 static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94"; #else ! static char rcsid[] = "$OpenBSD: parse.c,v 1.26 1999/12/16 16:27:12 espie Exp $"; #endif #endif /* not lint */ --- 43,49 ---- #if 0 static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94"; #else ! static char rcsid[] = "$OpenBSD: parse.c,v 1.27 1999/12/16 16:41:42 espie Exp $"; #endif #endif /* not lint */ *************** *** 2131,2137 **** } Buf_AddChar(buf, '\0'); ! line = Buf_GetAll(buf, NULL); lineno++; /* allow for non-newline terminated lines while skipping */ if (line[0] == '.') --- 2131,2137 ---- } Buf_AddChar(buf, '\0'); ! line = Buf_Retrieve(buf); lineno++; /* allow for non-newline terminated lines while skipping */ if (line[0] == '.') *************** *** 2340,2346 **** Buf_AddChar(buf, lastc); } Buf_AddChar(buf, '\0'); ! line = Buf_GetAll(buf, NULL); Buf_Destroy(buf, FALSE); /* --- 2340,2346 ---- Buf_AddChar(buf, lastc); } Buf_AddChar(buf, '\0'); ! line = Buf_Retrieve(buf); Buf_Destroy(buf, FALSE); /*