wmstatus: fix the binding parser
Alpine 3.20 Success Details
OpenBSD 7.5 Success Details

This commit is contained in:
Přemysl Eric Janouch 2024-08-07 18:30:46 +02:00
parent 180b16faee
commit 9042aeaa93
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

View File

@ -939,7 +939,7 @@ parse_binding (const char *line, struct strv *out)
{
case 0: edge = table[state][0]; break;
case '\t':
case '\n': edge = table[state][4]; break;
case '\n':
case ' ': edge = table[state][1]; break;
case '\'': edge = table[state][2]; break;
case '\\': edge = table[state][3]; break;