all repos — openbox @ e2c3582a5c0230cae0571e8f92829b910039f179

openbox fork - make it a bit more like ryudo

use new token structs. free token lists.
Dana Jansens danakj@orodu.net
commit

e2c3582a5c0230cae0571e8f92829b910039f179

parent

5da148530ee8931c8ed7771c373146afaf2b14e1

1 files changed, 16 insertions(+), 9 deletions(-)

jump to
M openbox/parse.copenbox/parse.c

@@ -5,7 +5,7 @@ static GHashTable *reg = NULL;

static ParseFunc func = NULL; /* parse tokens from the [openbox] section of the rc file */ -static void parse_rc_token(ParseTokenType type, union ParseToken token); +static void parse_rc_token(ParseToken *token); void destkey(gpointer key) { g_free(key); }

@@ -31,20 +31,27 @@ else

g_hash_table_insert(reg, g_ascii_strdown(section, -1), (void*)func); } -void parse_free_token(ParseTokenType type, union ParseToken token) +void parse_free_token(ParseToken *token) { - switch (type) { + GSList *it; + + switch (token->type) { case TOKEN_STRING: - g_free(token.string); + g_free(token-data.string); break; case TOKEN_IDENTIFIER: - g_free(token.identifier); + g_free(token->data.identifier); + break; + case TOKEN_LIST: + for (it = token->data.list; it; it = it->next) { + parse_free_token(it->data); + g_free(it->data); + } + g_slist_free(token->data.list); break; case TOKEN_REAL: case TOKEN_INTEGER: case TOKEN_BOOL: - case TOKEN_LBRACKET: - case TOKEN_RBRACKET: case TOKEN_LBRACE: case TOKEN_RBRACE: case TOKEN_EQUALS:

@@ -59,10 +66,10 @@ {

func = (ParseFunc)g_hash_table_lookup(reg, section); } -void parse_token(ParseTokenType type, union ParseToken token) +void parse_token(ParseToken *token) { if (func != NULL) - func(type, token); + func(token); } static void parse_rc_token(ParseToken *token)