Re: [PATCH] shell: Fixing bug in line editing of the shell with CTRL-U.

2020-09-28 Thread Frank Kühndel
Hello, we fixed the minor issues in the patch, created two tickets (#4096 for milestone 5 and #4097 for 6) and Sebastian Huber added the fix to the git sources. Many thank to all reviewers for their helpful comments. Greetings, Frank On 9/27/20 9:26 AM, Chris Johns wrote: > On 26/9/20 2:06 am,

Re: [PATCH] shell: Fixing bug in line editing of the shell with CTRL-U.

2020-09-27 Thread Chris Johns
On 26/9/20 2:06 am, Joel Sherrill wrote: > On Fri, Sep 25, 2020, 10:06 AM Gedare Bloom > wrote: > > On Fri, Sep 25, 2020 at 3:11 AM Frank Kuehndel > > wrote: > > > > This patch fixes a tiny bug in the command

Re: [PATCH] shell: Fixing bug in line editing of the shell with CTRL-U.

2020-09-25 Thread Joel Sherrill
On Fri, Sep 25, 2020, 10:06 AM Gedare Bloom wrote: > On Fri, Sep 25, 2020 at 3:11 AM Frank Kuehndel > wrote: > > > > This patch fixes a tiny bug in the command line editing of the RTEMS > shell. Typing CTRL-U in the shell should remove all characters left of the > cursor. After pressing CTRL-U,

Re: [PATCH] shell: Fixing bug in line editing of the shell with CTRL-U.

2020-09-25 Thread Gedare Bloom
On Fri, Sep 25, 2020 at 3:11 AM Frank Kuehndel wrote: > > This patch fixes a tiny bug in the command line editing of the RTEMS shell. > Typing CTRL-U in the shell should remove all characters left of the cursor. > After pressing CTRL-U, the current implementation does wrongly place the > cursor

[PATCH] shell: Fixing bug in line editing of the shell with CTRL-U.

2020-09-25 Thread Frank Kuehndel
This patch fixes a tiny bug in the command line editing of the RTEMS shell. Typing CTRL-U in the shell should remove all characters left of the cursor. After pressing CTRL-U, the current implementation does wrongly place the cursor at the end of the line instead at its beginning. To reproduce