]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
kconfig: fix the rule of mainmenu_stmt symbol
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 9 Aug 2018 06:47:06 +0000 (15:47 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 13 Aug 2018 03:04:51 +0000 (12:04 +0900)
The rule of mainmenu_stmt does not have debug print of zconf_lineno(),
but if it had, it would print a wrong line number for the same reason
as commit b2d00d7c61c8 ("kconfig: fix line numbers for if-entries in
menu tree").

The mainmenu_stmt does not need to eat following empty lines because
they are reduced to common_stmt.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
scripts/kconfig/zconf.y

index 96081aa0fef082cb7f79ef4d4717dc881e2716e7..22fceb264cf51b6972c7d09357265d416c4157a5 100644 (file)
@@ -31,7 +31,7 @@ struct symbol *symbol_hash[SYMBOL_HASHSIZE];
 static struct menu *current_menu, *current_entry;
 
 %}
-%expect 31
+%expect 30
 
 %union
 {
@@ -117,7 +117,7 @@ start: mainmenu_stmt stmt_list | stmt_list;
 
 /* mainmenu entry */
 
-mainmenu_stmt: T_MAINMENU prompt nl
+mainmenu_stmt: T_MAINMENU prompt T_EOL
 {
        menu_add_prompt(P_MENU, $2, NULL);
 };