Commit 72f28cec authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] fix lxdialog behaviour

parent b43f6bb7
...@@ -348,7 +348,7 @@ first_alpha(const char *string, const char *exempt) ...@@ -348,7 +348,7 @@ first_alpha(const char *string, const char *exempt)
c = tolower(string[i]); c = tolower(string[i]);
if (strchr("<[(", c)) ++in_paren; if (strchr("<[(", c)) ++in_paren;
if (strchr(">])", c)) --in_paren; if (strchr(">])", c) && in_paren > 0) --in_paren;
if ((! in_paren) && isalpha(c) && if ((! in_paren) && isalpha(c) &&
strchr(exempt, c) == 0) strchr(exempt, c) == 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment