diff options
| author | Paul Buetow <paul@buetow.org> | 2008-10-14 20:38:27 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-10-14 20:38:27 +0000 |
| commit | d527f50159f056dc165fa7eaf7bf80425a1e758d (patch) | |
| tree | 03e8aa97c25fbc014876e5113dd66d4a44adac4d /src/core/function.c | |
| parent | 71185ab0ab0b08b4d5bb2e750ff85e11f105a453 (diff) | |
GC removed, temporaly
Diffstat (limited to 'src/core/function.c')
| -rw-r--r-- | src/core/function.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/core/function.c b/src/core/function.c index 979454d..fdbf308 100644 --- a/src/core/function.c +++ b/src/core/function.c @@ -95,10 +95,8 @@ _process(Interpret *p_interpret, Token *p_token_store, Token *p_token_op, printf("PROCESS OPERATOR %s %s\n", tt_get_name(tt_op), tt_get_name(tt_op2)); - token_print(p_token_next); - printf("\n"); - token_print(p_token_store); - printf("\n"); + token_print_ln(p_token_next); + token_print_ln(p_token_store); #endif /* DEBUG_FUNCTION_PROCESS */ if (p_token_op2 != NULL) { @@ -527,11 +525,10 @@ _process(Interpret *p_interpret, Token *p_token_store, Token *p_token_op, } #ifdef DEBUG_FUNCTION_PROCESS - token_print(p_token_store); - printf("\n\n"); + token_print_ln(p_token_store); #endif /* DEBUG_FUNCTION_PROCESS */ - token_delete(p_token_next); + //token_delete(p_token_next); } void |
