summaryrefslogtreecommitdiff
path: root/src/core/function.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/function.c')
-rw-r--r--src/core/function.c11
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