lexer.l (ab838577aaaeda12242b7f1e2da3f25c9b4cec3a) lexer.l (6dd85ff178cd76851e2184b13e545f5a88d1be30)
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%{

--- 98 unchanged lines hidden (view full) ---

107"if" return T_IF;
108"imply" return T_IMPLY;
109"int" return T_INT;
110"mainmenu" return T_MAINMENU;
111"menu" return T_MENU;
112"menuconfig" return T_MENUCONFIG;
113"modules" return T_MODULES;
114"on" return T_ON;
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%{

--- 98 unchanged lines hidden (view full) ---

107"if" return T_IF;
108"imply" return T_IMPLY;
109"int" return T_INT;
110"mainmenu" return T_MAINMENU;
111"menu" return T_MENU;
112"menuconfig" return T_MENUCONFIG;
113"modules" return T_MODULES;
114"on" return T_ON;
115"option" return T_OPTION;
116"optional" return T_OPTIONAL;
117"prompt" return T_PROMPT;
118"range" return T_RANGE;
119"select" return T_SELECT;
120"source" return T_SOURCE;
121"string" return T_STRING;
122"tristate" return T_TRISTATE;
123"visible" return T_VISIBLE;

--- 345 unchanged lines hidden ---
115"optional" return T_OPTIONAL;
116"prompt" return T_PROMPT;
117"range" return T_RANGE;
118"select" return T_SELECT;
119"source" return T_SOURCE;
120"string" return T_STRING;
121"tristate" return T_TRISTATE;
122"visible" return T_VISIBLE;

--- 345 unchanged lines hidden ---