aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig/zconf.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/zconf.l b/scripts/kconfig/zconf.l
index b3855909913c..9a147977dc3f 100644
--- a/scripts/kconfig/zconf.l
+++ b/scripts/kconfig/zconf.l
@@ -102,10 +102,10 @@ n [A-Za-z0-9_-]
102<COMMAND>{ 102<COMMAND>{
103 {n}+ { 103 {n}+ {
104 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng); 104 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
105 BEGIN(PARAM);
106 current_pos.file = current_file; 105 current_pos.file = current_file;
107 current_pos.lineno = yylineno; 106 current_pos.lineno = yylineno;
108 if (id && id->flags & TF_COMMAND) { 107 if (id && id->flags & TF_COMMAND) {
108 BEGIN(PARAM);
109 yylval.id = id; 109 yylval.id = id;
110 return id->token; 110 return id->token;
111 } 111 }