From: Jim Meyering Date: Mon, 12 Jan 2015 00:44:35 +0000 (-0800) Subject: update-copyright: recognize groff's \(co marker X-Git-Tag: v1.0~7191 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=06c61ed439c29bf0ff6261462afef6f84e772643;p=gnulib.git update-copyright: recognize groff's \(co marker * build-aux/update-copyright (circle_c_re): Also accept uses of \(co, as found in gzip.1. --- diff --git a/ChangeLog b/ChangeLog index bf3216f02d..821d1cbb43 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2015-01-11 Jim Meyering + + 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 maint.mk: fix compatibility with OS X nm 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{}|©)'; +my $circle_c_re = '(?:\([cC]\)|@copyright{}|\\\\\(co|©)'; my $holder = $ENV{UPDATE_COPYRIGHT_HOLDER}; $holder ||= 'Free Software Foundation, Inc.'; my $prefix_max = 5;