Re: [PATCH] mklog: fix bugs of --append option

2023-08-28 Thread Lehua Ding
17 00:00:00 2001 From: Lehua Ding Date: Tue, 18 Jul 2023 18:08:47 +0800 Subject: Re: [PATCH] mklog: fix bugs of --append option Hi, This little patch fix two bugs of mklog.py with --append option. The first bug is that the regexp used is not accurate enough to determine the top of diff area. The

Re: [PATCH] mklog: fix bugs of --append option

2023-08-28 Thread Jeff Law via Gcc-patches
On 7/19/23 02:21, Lehua Ding wrote: Hi, This little patch fix two bugs of mklog.py with --append option. The first bug is that the regexp used is not accurate enough to determine the top of diff area. The second bug is that if `---` is not a true start, it needs to be added back to the patch

Re: [PATCH] mklog: fix bugs of --append option

2023-08-15 Thread Lehua Ding
Hi Jeff, Can you take a look at this little patch? It's a bugfix patch that only affects the --apend option that I added earlier, not anyone else. And please let me know if there is a more suitable reviewer as well. Thank you so much. Best, Lehua -- Original ---

Re: [PATCH] mklog: fix bugs of --append option

2023-07-25 Thread Lehua Ding
Hi, Gentle Ping. I sent a V2 patch as below for an additional fix Python code format error, which Martin reported, thanks. Best, Lehua contrib/ChangeLog: * mklog.py: Fix bugs. --- contrib/mklog.py | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/contrib/mklo