cvs-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Cvs-cvs] ccvs/src ChangeLog commit.c


From: Mark D. Baushke
Subject: [Cvs-cvs] ccvs/src ChangeLog commit.c
Date: Fri, 22 Sep 2006 00:32:48 +0000

CVSROOT:        /cvsroot/cvs
Module name:    ccvs
Changes by:     Mark D. Baushke <mdb>   06/09/22 00:32:48

Modified files:
        src            : ChangeLog commit.c 

Log message:
        * commit.c (commit_fileproc): If support for the old info format
        strings is removed, then the block should always be run, not just
        when ci->status is not T_REMOVED.
        (Patch from "C. Michael Pilato" <address@hidden>)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/ccvs/src/ChangeLog?cvsroot=cvs&r1=1.3500&r2=1.3501
http://cvs.savannah.gnu.org/viewcvs/ccvs/src/commit.c?cvsroot=cvs&r1=1.269&r2=1.270

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cvs/ccvs/src/ChangeLog,v
retrieving revision 1.3500
retrieving revision 1.3501
diff -u -b -r1.3500 -r1.3501
--- ChangeLog   15 Sep 2006 13:35:22 -0000      1.3500
+++ ChangeLog   22 Sep 2006 00:32:48 -0000      1.3501
@@ -1,3 +1,10 @@
+2006-09-21  Mark D. Baushke  <address@hidden>
+
+       * commit.c (commit_fileproc): If support for the old info format
+       strings is removed, then the block should always be run, not just
+       when ci->status is not T_REMOVED.
+       (Patch from "C. Michael Pilato" <address@hidden>)
+
 2006-09-15  Derek Price  <address@hidden>
 
        * error.c (error): Remove errant comment.

Index: commit.c
===================================================================
RCS file: /cvsroot/cvs/ccvs/src/commit.c,v
retrieving revision 1.269
retrieving revision 1.270
diff -u -b -r1.269 -r1.270
--- commit.c    12 Sep 2006 20:29:30 -0000      1.269
+++ commit.c    22 Sep 2006 00:32:48 -0000      1.270
@@ -1588,11 +1588,9 @@
            been specified in the config.  Expose the real version in that
            case and allow the trigger scripts to decide how to use it.  */
             
-        if (ci->status != T_REMOVED
 #ifdef SUPPORT_OLD_INFO_FMT_STRINGS
-           || config->UseNewInfoFmtStrings
+       if (ci->status != T_REMOVED || config->UseNewInfoFmtStrings)
 #endif
-           )
        {
            p = findnode (ulist, finfo->file);
            if (p)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]