lexer.l (cdd38c5f1ce4398ec58fec95904b75824daab7b5) | lexer.l (b75b0a819af9f78fc395b189cddd40f590194d20) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 4 */ 5%option nostdinit noyywrap never-interactive full ecs 6%option 8bit nodefault yylineno 7%x ASSIGN_VAL HELP STRING 8%{ --- 85 unchanged lines hidden (view full) --- 94"allnoconfig_y" return T_ALLNOCONFIG_Y; 95"bool" return T_BOOL; 96"choice" return T_CHOICE; 97"comment" return T_COMMENT; 98"config" return T_CONFIG; 99"def_bool" return T_DEF_BOOL; 100"def_tristate" return T_DEF_TRISTATE; 101"default" return T_DEFAULT; | 1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 4 */ 5%option nostdinit noyywrap never-interactive full ecs 6%option 8bit nodefault yylineno 7%x ASSIGN_VAL HELP STRING 8%{ --- 85 unchanged lines hidden (view full) --- 94"allnoconfig_y" return T_ALLNOCONFIG_Y; 95"bool" return T_BOOL; 96"choice" return T_CHOICE; 97"comment" return T_COMMENT; 98"config" return T_CONFIG; 99"def_bool" return T_DEF_BOOL; 100"def_tristate" return T_DEF_TRISTATE; 101"default" return T_DEFAULT; |
102"defconfig_list" return T_DEFCONFIG_LIST; | |
103"depends" return T_DEPENDS; 104"endchoice" return T_ENDCHOICE; 105"endif" return T_ENDIF; 106"endmenu" return T_ENDMENU; 107"help" return T_HELP; 108"hex" return T_HEX; 109"if" return T_IF; 110"imply" return T_IMPLY; --- 360 unchanged lines hidden --- | 102"depends" return T_DEPENDS; 103"endchoice" return T_ENDCHOICE; 104"endif" return T_ENDIF; 105"endmenu" return T_ENDMENU; 106"help" return T_HELP; 107"hex" return T_HEX; 108"if" return T_IF; 109"imply" return T_IMPLY; --- 360 unchanged lines hidden --- |