Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 261636
b: refs/heads/master
c: f98ee76
h: refs/heads/master
v: v3
  • Loading branch information
Arnaud Lacombe authored and Michal Marek committed Jul 13, 2011
1 parent 84193c6 commit 770221f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5416857867c9cc94aba641898c567d9707de30f1
refs/heads/master: f98ee76955f883abf2ea2a5e5b43deab01734f47
7 changes: 6 additions & 1 deletion trunk/scripts/kconfig/nconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -1220,7 +1220,12 @@ static void conf_message_callback(const char *fmt, va_list ap)

static void show_help(struct menu *menu)
{
struct gstr help = str_new();
struct gstr help;

if (!menu)
return;

help = str_new();
menu_get_ext_help(menu, &help);
show_scroll_win(main_window, _(menu_get_prompt(menu)), str_get(&help));
str_free(&help);
Expand Down

0 comments on commit 770221f

Please sign in to comment.