Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make Back it out while I'm working on a real fix wit...



details:   https://anonhg.NetBSD.org/src/rev/7f36ffd8739d
branches:  trunk
changeset: 582092:7f36ffd8739d
user:      rpaulo <rpaulo%NetBSD.org@localhost>
date:      Thu Jun 16 14:54:10 2005 +0000

description:
Back it out while I'm working on a real fix without introducing new bugs.

diffstat:

 usr.bin/make/parse.c |  14 +++-----------
 1 files changed, 3 insertions(+), 11 deletions(-)

diffs (41 lines):

diff -r e39dc3f7e7fe -r 7f36ffd8739d usr.bin/make/parse.c
--- a/usr.bin/make/parse.c      Thu Jun 16 14:36:42 2005 +0000
+++ b/usr.bin/make/parse.c      Thu Jun 16 14:54:10 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: parse.c,v 1.100 2005/06/15 22:26:54 rpaulo Exp $       */
+/*     $NetBSD: parse.c,v 1.101 2005/06/16 14:54:10 rpaulo Exp $       */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: parse.c,v 1.100 2005/06/15 22:26:54 rpaulo Exp $";
+static char rcsid[] = "$NetBSD: parse.c,v 1.101 2005/06/16 14:54:10 rpaulo Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)parse.c    8.3 (Berkeley) 3/19/94";
 #else
-__RCSID("$NetBSD: parse.c,v 1.100 2005/06/15 22:26:54 rpaulo Exp $");
+__RCSID("$NetBSD: parse.c,v 1.101 2005/06/16 14:54:10 rpaulo Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -2552,14 +2552,6 @@
                         */
                        do {
                            c = ParseReadc();
-                           /*
-                            * If we found a backslash not escaped
-                            * itself it means that the comment is
-                            * going to continue in the next line.
-                            */
-                           if (c == '\\' && lastc != c)
-                               ParseReadc();
-                           lastc = c;
                        } while ((c != '\n') && (c != EOF));
                        goto line_read;
                    } else {



Home | Main Index | Thread Index | Old Index