]> sourceware.org Git - automake.git/commitdiff
2001-05-23 Alexandre Duret-Lutz <duret_g@epita.fr>
authorTom Tromey <tromey@redhat.com>
Thu, 24 May 2001 05:50:34 +0000 (05:50 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 24 May 2001 05:50:34 +0000 (05:50 +0000)
* automake.in (read_am_file): Ignore trailing backslash on

ChangeLog
automake.in

index a576d51d851c43f22c0f8ecfad5ab9c1008f6df9..8b14ed962d24a4422cb074af20ced6b7d9ae993b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-05-23  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * automake.in (read_am_file): Ignore trailing backslash on
+       comment lines.
+
 2001-05-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        * automake.in (ASSIGNMENT_PATTERN): Forbid : and + in variable names.
index b87f48e832e76d428806c8b297de94da11cdda0a..872aae0b5732571650c013fca54d9086c260e107 100755 (executable)
@@ -6380,7 +6380,7 @@ sub read_am_file
        $_ =~ s/\@MAINT\@//g
            unless $seen_maint_mode;
 
-       my $new_saw_bk = /\\$/;
+       my $new_saw_bk = /\\$/ && ! /$COMMENT_PATTERN/o;
 
        if (/$IGNORE_PATTERN/o)
        {
This page took 0.037646 seconds and 5 git commands to generate.