=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/parse.c,v retrieving revision 1.1 retrieving revision 1.2 diff -c -r1.1 -r1.2 *** src/usr.bin/make/parse.c 1995/10/18 08:45:43 1.1 --- src/usr.bin/make/parse.c 1995/12/14 03:23:36 1.2 *************** *** 1,4 **** ! /* $NetBSD: parse.c,v 1.16 1995/09/10 03:58:16 christos Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. --- 1,4 ---- ! /* $NetBSD: parse.c,v 1.17 1995/11/02 23:55:03 christos Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. *************** *** 42,48 **** #if 0 static char sccsid[] = "@(#)parse.c 5.18 (Berkeley) 2/19/91"; #else ! static char rcsid[] = "$NetBSD: parse.c,v 1.16 1995/09/10 03:58:16 christos Exp $"; #endif #endif /* not lint */ --- 42,48 ---- #if 0 static char sccsid[] = "@(#)parse.c 5.18 (Berkeley) 2/19/91"; #else ! static char rcsid[] = "$NetBSD: parse.c,v 1.17 1995/11/02 23:55:03 christos Exp $"; #endif #endif /* not lint */ *************** *** 2216,2222 **** break; case '#': if (!ignComment) { ! if (compatMake && (lastc != '\\')) { /* * If the character is a hash mark and it isn't escaped * (or we're being compatible), the thing is a comment. --- 2216,2226 ---- break; case '#': if (!ignComment) { ! if ( ! #if 0 ! compatMake && ! #endif ! (lastc != '\\')) { /* * If the character is a hash mark and it isn't escaped * (or we're being compatible), the thing is a comment.