summaryrefslogtreecommitdiffstats
path: root/cvslog2changelog.pl
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2007-01-09 10:37:34 +0000
committerThomas Roessler <roessler@does-not-exist.org>2007-01-09 10:37:34 +0000
commit119839d248ccb38389f0262fc9d47a99581dad8d (patch)
tree5fac5d79dc0c6348e0385c4f8ed4a6fbda0b282b /cvslog2changelog.pl
parentb45e17c8497b663e33e7bf6f89ef7f9873bc0cc1 (diff)
Change comment convention for ChangeLog slightly, from ^# to ^#\ .
Diffstat (limited to 'cvslog2changelog.pl')
-rw-r--r--cvslog2changelog.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/cvslog2changelog.pl b/cvslog2changelog.pl
index 1f8b3be0..330dd468 100644
--- a/cvslog2changelog.pl
+++ b/cvslog2changelog.pl
@@ -30,7 +30,7 @@ while (<>) {
$change->{date} =~ s!/!-!g;
# Record the change.
- push @Changes, $change unless $change->{logmsg} =~ /^#/;
+ push @Changes, $change unless $change->{logmsg} =~ /^# /;
$change = {};
$change->{workfile} = $workfile;
$change->{logmsg} = '';