Commit 94d4e1b6 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

kconfig: remove redundant menu_block rule



The code block surrounded by "menu" ... "endmenu" is stmt_list.

Remove the redundant menu_block symbol entirely.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 4891796c
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
@@ -354,14 +354,7 @@ menu_end: end
	}
};

menu_stmt: menu_entry menu_block menu_end
;

menu_block:
	  /* empty */
	| menu_block common_stmt
	| menu_block menu_stmt
	| menu_block choice_stmt
menu_stmt: menu_entry stmt_list menu_end
;

source_stmt: T_SOURCE prompt T_EOL