summaryrefslogtreecommitdiff
path: root/build-aux/update-copyright
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2015-01-11 16:44:35 -0800
committerJim Meyering <meyering@fb.com>2015-01-11 16:44:35 -0800
commit06c61ed439c29bf0ff6261462afef6f84e772643 (patch)
treeafcf9b1b16d53a7cbc8608c30bbbf42336019e06 /build-aux/update-copyright
parentd5e367c52d465a36650d0f4e2d370d1719750ab1 (diff)
downloadgnulib-06c61ed439c29bf0ff6261462afef6f84e772643.tar.gz
update-copyright: recognize groff's \(co marker
* build-aux/update-copyright (circle_c_re): Also accept uses of \(co, as found in gzip.1.
Diffstat (limited to 'build-aux/update-copyright')
-rwxr-xr-xbuild-aux/update-copyright6
1 files changed, 3 insertions, 3 deletions
diff --git a/build-aux/update-copyright b/build-aux/update-copyright
index 308fbf17f9..3b90d48132 100755
--- a/build-aux/update-copyright
+++ b/build-aux/update-copyright
@@ -3,9 +3,9 @@ eval '(exit $?0)' && eval 'exec perl -wS -0777 -pi "$0" ${1+"$@"}'
if 0;
# Update an FSF copyright year list to include the current year.
-my $VERSION = '2013-01-03.09:41'; # UTC
+my $VERSION = '2015-01-02.04:14'; # UTC
-# Copyright (C) 2009-2015 Free Software Foundation, Inc.
+# Copyright (C) 2009-2014 Free Software Foundation, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -124,7 +124,7 @@ use strict;
use warnings;
my $copyright_re = 'Copyright';
-my $circle_c_re = '(?:\([cC]\)|@copyright{}|&copy;)';
+my $circle_c_re = '(?:\([cC]\)|@copyright{}|\\\\\(co|&copy;)';
my $holder = $ENV{UPDATE_COPYRIGHT_HOLDER};
$holder ||= 'Free Software Foundation, Inc.';
my $prefix_max = 5;