Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 77973
b: refs/heads/master
c: f7a4b4c
h: refs/heads/master
i:
  77971: b5f465e
v: v3
  • Loading branch information
EGRY Gabor authored and Sam Ravnborg committed Jan 28, 2008
1 parent 8249f04 commit b64c623
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1020026f99069976001816b8198bc04ee342cd2e
refs/heads/master: f7a4b4cdc26846a0ac5b3023cb1b97dc632dfd35
5 changes: 5 additions & 0 deletions trunk/scripts/kconfig/lex.zconf.c_shipped
Original file line number Diff line number Diff line change
Expand Up @@ -1275,6 +1275,11 @@ YY_RULE_SETUP
case 32:
YY_RULE_SETUP
{
while (zconfleng) {
if ((zconftext[zconfleng-1] != ' ') && (zconftext[zconfleng-1] != '\t'))
break;
zconfleng--;
}
append_string(zconftext, zconfleng);
if (!first_ts)
first_ts = last_ts;
Expand Down
5 changes: 5 additions & 0 deletions trunk/scripts/kconfig/zconf.l
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,11 @@ n [A-Za-z0-9_]
append_string("\n", 1);
}
[^ \t\n].* {
while (yyleng) {
if ((yytext[yyleng-1] != ' ') && (yytext[yyleng-1] != '\t'))
break;
yyleng--;
}
append_string(yytext, yyleng);
if (!first_ts)
first_ts = last_ts;
Expand Down

0 comments on commit b64c623

Please sign in to comment.