* commands/help.c (grub_cmd_help): Fix a typo.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-07-10 02:40:41 +02:00
parent 249975ba6b
commit 5bc24388fb
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2010-07-10 Vladimir Serbinenko <phcoder@gmail.com>
* commands/help.c (grub_cmd_help): Fix a typo.
2010-07-10 Vladimir Serbinenko <phcoder@gmail.com> 2010-07-10 Vladimir Serbinenko <phcoder@gmail.com>
* normal/term.c (put_glyphs_terminal): Fix state->num_lines counting. * normal/term.c (put_glyphs_terminal): Fix state->num_lines counting.

View file

@ -115,7 +115,7 @@ grub_cmd_help (grub_extcmd_t ext __attribute__ ((unused)), int argc,
if (cmd->flags & GRUB_COMMAND_FLAG_EXTCMD) if (cmd->flags & GRUB_COMMAND_FLAG_EXTCMD)
grub_arg_show_help ((grub_extcmd_t) cmd->data); grub_arg_show_help ((grub_extcmd_t) cmd->data);
else else
grub_printf ("%s %s %s\n%s\b", _("Usage:"), cmd->name, _(cmd->summary), grub_printf ("%s %s %s\n%s\n", _("Usage:"), cmd->name, _(cmd->summary),
_(cmd->description)); _(cmd->description));
} }
} }