aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRoland Eggner <edvx1@systemanalysen.net>2013-02-01 13:30:47 -0500
committerYann E. MORIN <yann.morin.1998@free.fr>2013-02-08 19:42:41 -0500
commit2c68115cb3d2863004f1dd5c01e3adbd54facd4c (patch)
tree054e61406216c63c3fb36ffaab21fc27110a85be /scripts
parent0b61650044e9044d3843047fe015fc0ea7943430 (diff)
kconfig: nconf: rewrite labels of function keys line
>From: Roland Eggner <edvx1@systemanalysen.net> More reasonable labels of function keys line. Rename labels and keep menu width, as required for fitting on COLUMNS=80 terminals: • s/Insts/Help 2/ • s/Config/ShowAll/ Signed-off-by: Roland Eggner <edvx1@systemanalysen.net> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig/nconf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/kconfig/nconf.c b/scripts/kconfig/nconf.c
index 65c672cce823..dbf31edd22b2 100644
--- a/scripts/kconfig/nconf.c
+++ b/scripts/kconfig/nconf.c
@@ -312,19 +312,19 @@ struct function_keys function_keys[] = {
312 }, 312 },
313 { 313 {
314 .key_str = "F2", 314 .key_str = "F2",
315 .func = "Sym Info", 315 .func = "SymInfo",
316 .key = F_SYMBOL, 316 .key = F_SYMBOL,
317 .handler = handle_f2, 317 .handler = handle_f2,
318 }, 318 },
319 { 319 {
320 .key_str = "F3", 320 .key_str = "F3",
321 .func = "Insts", 321 .func = "Help 2",
322 .key = F_INSTS, 322 .key = F_INSTS,
323 .handler = handle_f3, 323 .handler = handle_f3,
324 }, 324 },
325 { 325 {
326 .key_str = "F4", 326 .key_str = "F4",
327 .func = "Config", 327 .func = "ShowAll",
328 .key = F_CONF, 328 .key = F_CONF,
329 .handler = handle_f4, 329 .handler = handle_f4,
330 }, 330 },
@@ -348,7 +348,7 @@ struct function_keys function_keys[] = {
348 }, 348 },
349 { 349 {
350 .key_str = "F8", 350 .key_str = "F8",
351 .func = "Sym Search", 351 .func = "SymSearch",
352 .key = F_SEARCH, 352 .key = F_SEARCH,
353 .handler = handle_f8, 353 .handler = handle_f8,
354 }, 354 },