]> Savannah Git Hosting - gnulib.git/commitdiff
update-copyright: recognize groff's \(co marker
authorJim Meyering <meyering@fb.com>
Mon, 12 Jan 2015 00:44:35 +0000 (16:44 -0800)
committerJim Meyering <meyering@fb.com>
Mon, 12 Jan 2015 00:44:35 +0000 (16:44 -0800)
* build-aux/update-copyright (circle_c_re): Also accept
uses of \(co, as found in gzip.1.

ChangeLog
build-aux/update-copyright

index bf3216f02dcc69f6e17fd85aa07404fc718c6b17..821d1cbb4361870d2026f3a8f0b7d0d5164d835c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2015-01-11  Jim Meyering  <meyering@fb.com>
+
+       update-copyright: recognize groff's \(co marker
+       * build-aux/update-copyright (circle_c_re): Also accept
+       uses of \(co, as found in gzip.1.
+
 2015-01-08  Pádraig Brady  <P@draigBrady.com>
 
        maint.mk: fix compatibility with OS X nm
index 308fbf17f9b7ab6072e40ae13ebd538080e3018e..3b90d4813299773d329fe0ec266528b4081e16bf 100755 (executable)
@@ -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;