diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2013-07-16 20:24:09 +0200 |
---|---|---|
committer | Yann E. MORIN <yann.morin.1998@free.fr> | 2013-07-16 20:26:47 +0200 |
commit | f6eb6e46f766f4e2eb64d2d467ef7efff084c47c (patch) | |
tree | e5e170c30cdf9408b8e86ff9845070d4c01d5840 /scripts/kconfig/nconf.c | |
parent | 26e933e3c35624d80281330c4beb17db4cd4960f (diff) | |
download | linux-f6eb6e46f766f4e2eb64d2d467ef7efff084c47c.tar.bz2 |
kconfig/[mn]conf: shorten title in search-box
No need to repeat the 'CONFIG_' string in the title,
once is explicit enough.
Reported-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Jean Delvare <jdelvare@suse.de>
Diffstat (limited to 'scripts/kconfig/nconf.c')
-rw-r--r-- | scripts/kconfig/nconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/nconf.c b/scripts/kconfig/nconf.c index 7975d8d258c3..4fbecd2473bc 100644 --- a/scripts/kconfig/nconf.c +++ b/scripts/kconfig/nconf.c @@ -695,8 +695,8 @@ static void search_conf(void) int dres; title = str_new(); - str_printf( &title, _("Enter %s (sub)string or regexp to search for " - "(with or without \"%s\")"), CONFIG_, CONFIG_); + str_printf( &title, _("Enter (sub)string or regexp to search for " + "(with or without \"%s\")"), CONFIG_); again: dres = dialog_inputbox(main_window, |