From e8d6a09bd0a45d8f253bfe984a12e6d41f004fe1 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 28 Nov 2001 23:55:08 +0000 Subject: [PATCH] (Copyright): Add '(C)' as per coding guidelines. The following changes are derived from suggestions by Bob Chapman . (printlogline): Also allow tab and newline to separate '(function):' from the rest of a comment. (reformat the sorted log entries): Require date and author to match the clumpname. --- lib-src/ChangeLog | 12 ++++++++++++ lib-src/rcs2log | 10 +++++----- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index bf5dfdef31a..92d1efaf1eb 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,15 @@ +2001-11-28 Paul Eggert + + * rcs2log (Copyright): Add '(C)' as per coding guidelines. + + The following changes are derived from suggestions by Bob Chapman + . + + * rcs2log (printlogline): Also allow tab and newline to separate + '(function):' from the rest of a comment. + (reformat the sorted log entries): Require date and author to + match the clumpname. + 2001-11-16 Gerd Moellmann * ebrowse.c (matching_regexp): Escape '\\'. diff --git a/lib-src/rcs2log b/lib-src/rcs2log index eabd369a9d6..d1da3a07613 100755 --- a/lib-src/rcs2log +++ b/lib-src/rcs2log @@ -29,9 +29,9 @@ Options: Report bugs to .' -Id='$Id: rcs2log,v 1.47 2001/07/20 09:05:26 gerd Exp eggert $' +Id='$Id: rcs2log,v 1.48 2001/09/05 23:07:46 eggert Exp $' -# Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2001 +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2001 # Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify @@ -49,7 +49,7 @@ Id='$Id: rcs2log,v 1.47 2001/07/20 09:05:26 gerd Exp eggert $' # Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. -Copyright='Copyright 2001 Free Software Foundation, Inc. +Copyright='Copyright (C) 2001 Free Software Foundation, Inc. This program comes with NO WARRANTY, to the extent permitted by law. You may redistribute copies of this program under the terms of the GNU General Public License. @@ -491,7 +491,7 @@ printlogline='{ # * file: (function): comment # to # * file (function): comment - if (Log ~ /^\([^)]*\): /) { + if (Log ~ /^\([^)]*\):[\t\n ]/) { i = index(Log, ")") filefunc = substr(Log, 1, i) while ((j = index(filefunc, "\n"))) { @@ -663,7 +663,7 @@ $AWK -F"$SOH" ' newclumpname = substr(newlog, 1, i) while (substr(newlog, i+1) ~ /^['"$tab"' ]/) i++ newlog = substr(newlog, i+1) - if (clumpname == newclumpname) sep = "" + if (clumpname == newclumpname && date == $3 && author == $5) sep = "" } printf sep clumpname = newclumpname -- 2.39.5