浏览代码

kconfig/[mn]conf: make it explicit in the search box that a regexp is possible

Reported-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Jean Delvare <jdelvare@suse.de>
Cc: Michal Marek <mmarek@suse.cz>
Yann E. MORIN 12 年之前
父节点
当前提交
a1ce636f56
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      scripts/kconfig/mconf.c
  2. 1 1
      scripts/kconfig/nconf.c

+ 1 - 1
scripts/kconfig/mconf.c

@@ -401,7 +401,7 @@ static void search_conf(void)
 	struct subtitle_part stpart;
 	struct subtitle_part stpart;
 
 
 	title = str_new();
 	title = str_new();
-	str_printf( &title, _("Enter %s (sub)string to search for "
+	str_printf( &title, _("Enter %s (sub)string or regexp to search for "
 			      "(with or without \"%s\")"), CONFIG_, CONFIG_);
 			      "(with or without \"%s\")"), CONFIG_, CONFIG_);
 
 
 again:
 again:

+ 1 - 1
scripts/kconfig/nconf.c

@@ -695,7 +695,7 @@ static void search_conf(void)
 	int dres;
 	int dres;
 
 
 	title = str_new();
 	title = str_new();
-	str_printf( &title, _("Enter %s (sub)string to search for "
+	str_printf( &title, _("Enter %s (sub)string or regexp to search for "
 			      "(with or without \"%s\")"), CONFIG_, CONFIG_);
 			      "(with or without \"%s\")"), CONFIG_, CONFIG_);
 
 
 again:
 again: