Parse multiple criteria in commands (+test), better error message for 'focus'

This commit is contained in:
Michael Stapelberg
2011-06-08 23:34:08 +02:00
parent d68e4710fe
commit 9aa7e5fbd6
3 changed files with 33 additions and 6 deletions

View File

@ -143,6 +143,7 @@ class { BEGIN(WANT_QSTRING); return TOK_CLASS; }
id { BEGIN(WANT_QSTRING); return TOK_ID; }
con_id { BEGIN(WANT_QSTRING); return TOK_CON_ID; }
con_mark { BEGIN(WANT_QSTRING); return TOK_MARK; }
title { BEGIN(WANT_QSTRING); return TOK_TITLE; }
[0-9]+ { cmdyylval.number = atoi(yytext); return NUMBER; }