All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sequencer: fix missing newline
@ 2017-03-23 17:02 Brandon Williams
  2017-03-23 17:40 ` Johannes Schindelin
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Brandon Williams @ 2017-03-23 17:02 UTC (permalink / raw)
  To: git; +Cc: Brandon Williams, johannes.schindelin

When using rebase --interactive where one of the lines is marked as
'edit' this is the resulting output:

    Stopped at ec3b9c4...  stuffYou can amend the commit now, with

      git commit --amend

    Once you are satisfied with your changes, run

      git rebase --continue

A newline character is missing at the end of the "Stopped at ..." line and
before the "You can amend ..." line.  This patch fixes the malformed output by
adding the missing newline character to the end of the "Stopped at ..." line.

Signed-off-by: Brandon Williams <bmwill@google.com>
---
 sequencer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sequencer.c b/sequencer.c
index 8183a83c1..d76dc9cb2 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -1998,7 +1998,7 @@ static int pick_commits(struct todo_list *todo_list, struct replay_opts *opts)
 				struct commit *commit = item->commit;
 				if (!res)
 					fprintf(stderr,
-						_("Stopped at %s...  %.*s"),
+						_("Stopped at %s...  %.*s\n"),
 						short_commit_name(commit),
 						item->arg_len, item->arg);
 				return error_with_patch(commit,
-- 
2.12.1.500.gab5fba24ee-goog


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH] sequencer: fix missing newline
  2017-03-23 17:02 [PATCH] sequencer: fix missing newline Brandon Williams
@ 2017-03-23 17:40 ` Johannes Schindelin
  2017-03-23 17:47   ` Brandon Williams
  2017-03-23 18:19 ` Junio C Hamano
  2017-03-23 22:12 ` Jonathan Nieder
  2 siblings, 1 reply; 9+ messages in thread
From: Johannes Schindelin @ 2017-03-23 17:40 UTC (permalink / raw)
  To: Brandon Williams; +Cc: git

Hi Brandon,

On Thu, 23 Mar 2017, Brandon Williams wrote:

> When using rebase --interactive where one of the lines is marked as
> 'edit' this is the resulting output:
> 
>     Stopped at ec3b9c4...  stuffYou can amend the commit now, with

Ugh, I should have caught this. The warning() call implicitly adds a
newline, the fprintf() doesn't.

Patch is obviously good.

Thanks,
Dscho

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] sequencer: fix missing newline
  2017-03-23 17:40 ` Johannes Schindelin
@ 2017-03-23 17:47   ` Brandon Williams
  2017-03-23 18:22     ` Jeff King
  0 siblings, 1 reply; 9+ messages in thread
From: Brandon Williams @ 2017-03-23 17:47 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: git

On 03/23, Johannes Schindelin wrote:
> Hi Brandon,
> 
> On Thu, 23 Mar 2017, Brandon Williams wrote:
> 
> > When using rebase --interactive where one of the lines is marked as
> > 'edit' this is the resulting output:
> > 
> >     Stopped at ec3b9c4...  stuffYou can amend the commit now, with
> 
> Ugh, I should have caught this. The warning() call implicitly adds a
> newline, the fprintf() doesn't.
> 
> Patch is obviously good.

All good.  If we're keeping score for finding each others bugs, I still
think you're winning :)

-- 
Brandon Williams

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] sequencer: fix missing newline
  2017-03-23 17:02 [PATCH] sequencer: fix missing newline Brandon Williams
  2017-03-23 17:40 ` Johannes Schindelin
@ 2017-03-23 18:19 ` Junio C Hamano
  2017-03-23 22:12 ` Jonathan Nieder
  2 siblings, 0 replies; 9+ messages in thread
From: Junio C Hamano @ 2017-03-23 18:19 UTC (permalink / raw)
  To: Brandon Williams; +Cc: git, johannes.schindelin, Jeff King

Brandon Williams <bmwill@google.com> writes:

> When using rebase --interactive where one of the lines is marked as
> 'edit' this is the resulting output:
>
>     Stopped at ec3b9c4...  stuffYou can amend the commit now, with
>
>       git commit --amend
>
>     Once you are satisfied with your changes, run
>
>       git rebase --continue
>
> A newline character is missing at the end of the "Stopped at ..." line and
> before the "You can amend ..." line.  This patch fixes the malformed output by
> adding the missing newline character to the end of the "Stopped at ..." line.
>
> Signed-off-by: Brandon Williams <bmwill@google.com>
> ---
>  sequencer.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Oops, obviously correct.  Thanks.

> diff --git a/sequencer.c b/sequencer.c
> index 8183a83c1..d76dc9cb2 100644
> --- a/sequencer.c
> +++ b/sequencer.c
> @@ -1998,7 +1998,7 @@ static int pick_commits(struct todo_list *todo_list, struct replay_opts *opts)
>  				struct commit *commit = item->commit;
>  				if (!res)
>  					fprintf(stderr,
> -						_("Stopped at %s...  %.*s"),
> +						_("Stopped at %s...  %.*s\n"),
>  						short_commit_name(commit),
>  						item->arg_len, item->arg);
>  				return error_with_patch(commit,

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] sequencer: fix missing newline
  2017-03-23 17:47   ` Brandon Williams
@ 2017-03-23 18:22     ` Jeff King
  2017-03-23 18:24       ` Jeff King
  2017-03-23 18:24       ` Brandon Williams
  0 siblings, 2 replies; 9+ messages in thread
From: Jeff King @ 2017-03-23 18:22 UTC (permalink / raw)
  To: Brandon Williams; +Cc: Johannes Schindelin, git

On Thu, Mar 23, 2017 at 10:47:16AM -0700, Brandon Williams wrote:

> On 03/23, Johannes Schindelin wrote:
> > Hi Brandon,
> > 
> > On Thu, 23 Mar 2017, Brandon Williams wrote:
> > 
> > > When using rebase --interactive where one of the lines is marked as
> > > 'edit' this is the resulting output:
> > > 
> > >     Stopped at ec3b9c4...  stuffYou can amend the commit now, with
> > 
> > Ugh, I should have caught this. The warning() call implicitly adds a
> > newline, the fprintf() doesn't.
> > 
> > Patch is obviously good.
> 
> All good.  If we're keeping score for finding each others bugs, I still
> think you're winning :)

It's my bug, actually. Brown paper bag, anyone?

-Peff

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] sequencer: fix missing newline
  2017-03-23 18:22     ` Jeff King
@ 2017-03-23 18:24       ` Jeff King
  2017-03-23 18:24       ` Brandon Williams
  1 sibling, 0 replies; 9+ messages in thread
From: Jeff King @ 2017-03-23 18:24 UTC (permalink / raw)
  To: Brandon Williams; +Cc: Johannes Schindelin, git

On Thu, Mar 23, 2017 at 02:22:21PM -0400, Jeff King wrote:

> > > > When using rebase --interactive where one of the lines is marked as
> > > > 'edit' this is the resulting output:
> > > > 
> > > >     Stopped at ec3b9c4...  stuffYou can amend the commit now, with
> > > 
> > > Ugh, I should have caught this. The warning() call implicitly adds a
> > > newline, the fprintf() doesn't.
> > > 
> > > Patch is obviously good.
> > 
> > All good.  If we're keeping score for finding each others bugs, I still
> > think you're winning :)
> 
> It's my bug, actually. Brown paper bag, anyone?

The most embarrassing part is that I've been running with this for days
and didn't notice. I guess I just gloss over the hint text.

-Peff

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] sequencer: fix missing newline
  2017-03-23 18:22     ` Jeff King
  2017-03-23 18:24       ` Jeff King
@ 2017-03-23 18:24       ` Brandon Williams
  1 sibling, 0 replies; 9+ messages in thread
From: Brandon Williams @ 2017-03-23 18:24 UTC (permalink / raw)
  To: Jeff King; +Cc: Johannes Schindelin, git

On 03/23, Jeff King wrote:
> On Thu, Mar 23, 2017 at 10:47:16AM -0700, Brandon Williams wrote:
> 
> > On 03/23, Johannes Schindelin wrote:
> > > Hi Brandon,
> > > 
> > > On Thu, 23 Mar 2017, Brandon Williams wrote:
> > > 
> > > > When using rebase --interactive where one of the lines is marked as
> > > > 'edit' this is the resulting output:
> > > > 
> > > >     Stopped at ec3b9c4...  stuffYou can amend the commit now, with
> > > 
> > > Ugh, I should have caught this. The warning() call implicitly adds a
> > > newline, the fprintf() doesn't.
> > > 
> > > Patch is obviously good.
> > 
> > All good.  If we're keeping score for finding each others bugs, I still
> > think you're winning :)
> 
> It's my bug, actually. Brown paper bag, anyone?

TIL I should use 'blame' before actually blaming someone ;P

-- 
Brandon Williams

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] sequencer: fix missing newline
  2017-03-23 17:02 [PATCH] sequencer: fix missing newline Brandon Williams
  2017-03-23 17:40 ` Johannes Schindelin
  2017-03-23 18:19 ` Junio C Hamano
@ 2017-03-23 22:12 ` Jonathan Nieder
  2017-03-23 22:38   ` Junio C Hamano
  2 siblings, 1 reply; 9+ messages in thread
From: Jonathan Nieder @ 2017-03-23 22:12 UTC (permalink / raw)
  To: Brandon Williams; +Cc: git, johannes.schindelin

Brandon Williams wrote:

> When using rebase --interactive where one of the lines is marked as
> 'edit' this is the resulting output:
>
>     Stopped at ec3b9c4...  stuffYou can amend the commit now, with
[...]
> Signed-off-by: Brandon Williams <bmwill@google.com>
> ---
>  sequencer.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Thanks for fixing it.  I don't see any other fprintf in the file with
missing \r or \n at the end, so this fix looks complete.

Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] sequencer: fix missing newline
  2017-03-23 22:12 ` Jonathan Nieder
@ 2017-03-23 22:38   ` Junio C Hamano
  0 siblings, 0 replies; 9+ messages in thread
From: Junio C Hamano @ 2017-03-23 22:38 UTC (permalink / raw)
  To: Jonathan Nieder; +Cc: Brandon Williams, git, johannes.schindelin

Jonathan Nieder <jrnieder@gmail.com> writes:

> Brandon Williams wrote:
>
>> When using rebase --interactive where one of the lines is marked as
>> 'edit' this is the resulting output:
>>
>>     Stopped at ec3b9c4...  stuffYou can amend the commit now, with
> [...]
>> Signed-off-by: Brandon Williams <bmwill@google.com>
>> ---
>>  sequencer.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> Thanks for fixing it.  I don't see any other fprintf in the file with
> missing \r or \n at the end, so this fix looks complete.
>
> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>

Thanks.

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2017-03-23 22:38 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-23 17:02 [PATCH] sequencer: fix missing newline Brandon Williams
2017-03-23 17:40 ` Johannes Schindelin
2017-03-23 17:47   ` Brandon Williams
2017-03-23 18:22     ` Jeff King
2017-03-23 18:24       ` Jeff King
2017-03-23 18:24       ` Brandon Williams
2017-03-23 18:19 ` Junio C Hamano
2017-03-23 22:12 ` Jonathan Nieder
2017-03-23 22:38   ` Junio C Hamano

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.