# HG changeset patch # User Matti Hamalainen # Date 1206687921 -7200 # Node ID 5794aa593490b63ac4ed856802bead892582bd5f # Parent 53ed80a5b20589dde56213130995e6c54f4cdc56 Renamed TUP_MAX_VAR to TUPLEZ_MAX_VARS. diff -r 53ed80a5b205 -r 5794aa593490 src/audacious/tuple_compiler.h --- a/src/audacious/tuple_compiler.h Fri Mar 28 09:04:59 2008 +0200 +++ b/src/audacious/tuple_compiler.h Fri Mar 28 09:05:21 2008 +0200 @@ -25,7 +25,7 @@ #include "tuple.h" -#define TUP_MAX_VARS (4) +#define TUPLEZ_MAX_VARS (4) enum { @@ -78,8 +78,8 @@ typedef struct _TupleEvalNode { gint opcode; /* operator, see OP_ enums */ - gint var[TUP_MAX_VARS]; /* tuple / global variable references */ - gboolean global[TUP_MAX_VARS]; + gint var[TUPLEZ_MAX_VARS]; /* tuple / global variable references */ + gboolean global[TUPLEZ_MAX_VARS]; gchar *text; /* raw text, if any (OP_RAW) */ gint function, expression; /* for OP_FUNCTION and OP_EXPRESSION */ struct _TupleEvalNode *children, *next, *prev; /* children of this struct, and pointer to next node. */