Community
Participate
Working Groups
Created attachment 184363 [details] Patch implementing the proposed functionality (including a test for it). Imagine the following existing ChangeLog: 2010-12-02 Some Author <will@example.com> * path/to/fileA.c (main): Some change. <= here is a tab * path/to/fileB.c: New file. 2010-10-08 Author B <b@bull.com> .... When merging a new change in function "myfunction" on the same day in fileA.c current code would produce: 2010-12-02 Some Author <will@example.com> * path/to/fileA.c (main): Some change. (myfunction): * path/to/fileB.c: New file. 2010-10-08 Author B <b@bull.com> .... The with the proposed patch applied the code produces (note the removed "empty" line): 2010-12-02 Some Author <will@example.com> * path/to/fileA.c (main): Some change. (myfunction): * path/to/fileB.c: New file. 2010-10-08 Author B <b@bull.com> .... Patch including a test for this is attached. Let me know what you think. Thanks!
(In reply to comment #0) > Created an attachment (id=184363) [details] > Patch implementing the proposed functionality (including a test for it). > > Imagine the following existing ChangeLog: > > 2010-12-02 Some Author <will@example.com> > > * path/to/fileA.c (main): Some change. > <= here is a tab > * path/to/fileB.c: New file. > > 2010-10-08 Author B <b@bull.com> > > .... > > When merging a new change in function "myfunction" on the same day in fileA.c > current code would produce: > > 2010-12-02 Some Author <will@example.com> > > * path/to/fileA.c (main): Some change. > > (myfunction): > * path/to/fileB.c: New file. > > 2010-10-08 Author B <b@bull.com> > > .... > > The with the proposed patch applied the code produces (note the removed "empty" > line): > > 2010-12-02 Some Author <will@example.com> > > * path/to/fileA.c (main): Some change. > (myfunction): > * path/to/fileB.c: New file. > > 2010-10-08 Author B <b@bull.com> > > .... > > Patch including a test for this is attached. Let me know what you think. > Thanks! Sure, it obviously doesn't regress your other tests, so go ahead.
Committed (Revision 27091). Closing this bug.