diff options
author | Joey Hess <joey@kitenet.net> | 2010-04-20 18:19:00 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-04-20 18:19:00 -0400 |
commit | 34e8c78c1c9bf65564c1a3086584158e5c3cc415 (patch) | |
tree | ba95100ac77e203def8c1529a9c128e85b8a7818 /IkiWiki/Plugin/darcs.pm | |
parent | 59ceeb5621ae0ae2bcb7501c6ac0c7a06562a7cc (diff) | |
parent | 64946f91982d85bb301cc9241459939c657d0eb9 (diff) |
Merge branch 'master' into autotag
Diffstat (limited to 'IkiWiki/Plugin/darcs.pm')
-rw-r--r-- | IkiWiki/Plugin/darcs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/darcs.pm b/IkiWiki/Plugin/darcs.pm index c1d6661d3..f17fadcb1 100644 --- a/IkiWiki/Plugin/darcs.pm +++ b/IkiWiki/Plugin/darcs.pm @@ -63,7 +63,7 @@ sub file_in_vc ($$) { } my $found=0; while (<DARCS_MANIFEST>) { - $found = 1, last if /^(\.\/)?$file$/; + $found = 1 if /^(\.\/)?$file$/; } close(DARCS_MANIFEST) or error("'darcs query manifest' exited " . $?); |