Re: [PATCH 2/2] fix showing xmon help

2007-07-22 Thread Milton Miller
On Jul 20, 2007, at 3:15 AM, Ishizaki Kou wrote: > Milton Miller <[EMAIL PROTECTED]> wrote: >> On Jul 18, 2007, at 11:12 AM, Andreas Schwab wrote: >> >>> Milton Miller <[EMAIL PROTECTED]> writes: >>> > case '?': > - printf(help_string); > +

Re: [PATCH 2/2] fix showing xmon help

2007-07-20 Thread Ishizaki Kou
Milton Miller <[EMAIL PROTECTED]> wrote: > On Jul 18, 2007, at 11:12 AM, Andreas Schwab wrote: > > > Milton Miller <[EMAIL PROTECTED]> writes: > > > >>> case '?': > >>> - printf(help_string); > >>> + xmon_puts(help_string); > >>>

Re: [PATCH 2/2] fix showing xmon help

2007-07-18 Thread Milton Miller
On Jul 18, 2007, at 11:12 AM, Andreas Schwab wrote: > Milton Miller <[EMAIL PROTECTED]> writes: > >>> case '?': >>> - printf(help_string); >>> + xmon_puts(help_string); >>> break; >>> >> >> nonstdio.h #defines pri

Re: [PATCH 2/2] fix showing xmon help

2007-07-18 Thread Andreas Schwab
Milton Miller <[EMAIL PROTECTED]> writes: >> case '?': >> - printf(help_string); >> + xmon_puts(help_string); >> break; >> > > nonstdio.h #defines printf to xmon_printf. Please add a similar line > for puts, and

Re: [PATCH 2/2] fix showing xmon help

2007-07-18 Thread Milton Miller
On Wed Jul 18 19:26:40 EST 2007, Ishizaki Kou wrote: > In some configuration, xmon help string is larger than xmon_printf > buffer. We need not to use printf. This patch adds xmon_puts and > change to use it to show help string. [Since I'm requesting changes I'll suggest a new change log.] In so

[PATCH 2/2] fix showing xmon help

2007-07-18 Thread Ishizaki Kou
In some configuration, xmon help string is larger than xmon_printf buffer. We need not to use printf. This patch adds xmon_puts and change to use it to show help string. Signed-off-by: Kou Ishizaki <[EMAIL PROTECTED]> --- This patch depends on [PATCH 1/2]. Index: linux-powerpc-git/arch/powerpc