From 649a9e6ba73abc8573013bbfc6c7e8ac9e6be89e Mon Sep 17 00:00:00 2001 From: Stefan Schippers Date: Tue, 18 Aug 2020 23:14:57 +0200 Subject: [PATCH] subst_tok(): remove dbg info --- src/token.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/token.c b/src/token.c index cf841242..ac49a20c 100644 --- a/src/token.c +++ b/src/token.c @@ -791,7 +791,6 @@ char *subst_token(const char *s, const char *tok, const char *new_val) c=*s++; space=SPACE(c); if(c == '"' && !escape) quote=!quote; - dbg(0, "--> c=%c, escape=%d\n", c, escape); /* alloc data */ if(result_pos >= size) { size += CADCHUNKALLOC; @@ -884,7 +883,6 @@ char *subst_token(const char *s, const char *tok, const char *new_val) } state=XVALUE; } else if( state == XVALUE && space && !quote && !escape) { - dbg(0, "XVALUE: c=%c, quote=%d escape=%d\n", c, quote, escape); state=XBEGIN; } /* state actions */