Handle ipc_socket like ipc-socket

We should use underscores to be consistent
This commit is contained in:
Michael Stapelberg 2009-09-27 20:44:24 +02:00
parent 8f67eba044
commit 058d9cc3a2
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ font { BEGIN(BIND_AWS_COND); return TOKFONT; }
assign { BEGIN(ASSIGN_COND); return TOKASSIGN; }
set[^\n]* { return TOKCOMMENT; }
ipc-socket { BEGIN(BIND_AWS_COND); return TOKIPCSOCKET; }
ipc_socket { BEGIN(BIND_AWS_COND); return TOKIPCSOCKET; }
exec { BEGIN(BIND_AWS_COND); return TOKEXEC; }
client.focused { BEGIN(COLOR_COND); yylval.color = &config.client.focused; return TOKCOLOR; }
client.focused_inactive { BEGIN(COLOR_COND); yylval.color = &config.client.focused_inactive; return TOKCOLOR; }