Zebediah Figura (@zfigura) commented about dlls/msado15/filter.l:
+"<=" { return (yylval->operation = TOKEN_LESS_EQ); } +like { return TOKEN_LIKE; }
+[A-Za-z_0-9]* { yylval->sval = strdup(yytext); return TOKEN_COLUMN; }
+%%
+int recordset_parse_filter(WCHAR *filter, struct recordset *recordset) +{
- char *str;
- parser_param p;
- YY_BUFFER_STATE buffer;
- int len;
- int ret;
- TRACE("(%s)\n", debugstr_w(filter));
Isn't this already traced earlier?