# HG changeset patch # User Matti Hamalainen # Date 1195736116 -7200 # Node ID c4295265f61d7ed707acc37e7be17b2fa1f02fb4 # Parent bd8de2a3cbea7a3da51a3d50cef06c708fd1c1ad Ooooops, another stupid bug - accidentally ${(empty)?..} was compiled into OP_EXISTS .. diff -r bd8de2a3cbea -r c4295265f61d src/audacious/tuple_compiler.c --- a/src/audacious/tuple_compiler.c Thu Nov 22 05:03:51 2007 -0600 +++ b/src/audacious/tuple_compiler.c Thu Nov 22 14:55:16 2007 +0200 @@ -445,7 +445,7 @@ if (tc_get_item(ctx, &c, tmps1, MAX_STR, ':', &literal, "tag", item)) { c++; tmp = tuple_evalnode_new(); - tmp->opcode = OP_EXISTS; + tmp->opcode = OP_IS_EMPTY; if ((tmp->var[0] = tc_get_variable(ctx, tmps1, VAR_FIELD)) < 0) { tuple_error(ctx, "Invalid variable '%s' in '%s'.\n", tmps1, expr); goto ret_error;