summaryrefslogtreecommitdiff
path: root/build-aux/gitlog-to-changelog
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-01-18 08:45:29 +0100
committerJim Meyering <meyering@redhat.com>2012-01-18 08:45:29 +0100
commitb1028f1399dc471db8f777cec6182b5d9a456541 (patch)
treef7ed2c28e3ad3212eb1039685148d1d46d699f00 /build-aux/gitlog-to-changelog
parentdfd13dcfc451f7ce3447d34aabea1bff410397f1 (diff)
downloadgnulib-b1028f1399dc471db8f777cec6182b5d9a456541.tar.gz
gitlog-to-changelog: use "||", not "or" in expressions
* build-aux/gitlog-to-changelog (main): Use "||", not "or" in expressions.
Diffstat (limited to 'build-aux/gitlog-to-changelog')
-rwxr-xr-xbuild-aux/gitlog-to-changelog10
1 files changed, 5 insertions, 5 deletions
diff --git a/build-aux/gitlog-to-changelog b/build-aux/gitlog-to-changelog
index 61edde1e37..099ecdd4c5 100755
--- a/build-aux/gitlog-to-changelog
+++ b/build-aux/gitlog-to-changelog
@@ -3,7 +3,7 @@ eval '(exit $?0)' && eval 'exec perl -wS "$0" ${1+"$@"}'
if 0;
# Convert git log output to ChangeLog format.
-my $VERSION = '2012-01-17 21:54'; # UTC
+my $VERSION = '2012-01-18 07:44'; # UTC
# The definition above must lie within the first 8 lines in order
# for the Emacs time-stamp write hook (at end) to update it.
# If you change this file with Emacs, please let the write hook
@@ -313,10 +313,10 @@ sub parse_amend_file($)
# or if this or the previous entry consists of two or more paragraphs,
# then print the header.
if ($no_cluster
- or $date_line ne $prev_date_line
- or "@coauthors" ne "@prev_coauthors"
- or $multi_paragraph
- or $prev_multi_paragraph)
+ || $date_line ne $prev_date_line
+ || "@coauthors" ne "@prev_coauthors"
+ || $multi_paragraph
+ || $prev_multi_paragraph)
{
$prev_date_line eq ''
or print "\n";