aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2014-01-29 23:21:48 +0100
committerThomas White <taw@bitwiz.org.uk>2014-01-29 23:21:48 +0100
commite76b7c9f7d610e54a616defbcefa5359c57d9be3 (patch)
tree5c1b0679481e90a4c2d7e2a1cf2760b64f8c6ff6
parent0faa3eb25866f25da1957f7a4fb5493816d9e4f3 (diff)
Reduce verbosity
-rw-r--r--src/sc_interp.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/sc_interp.c b/src/sc_interp.c
index 78a5589..4d7f396 100644
--- a/src/sc_interp.c
+++ b/src/sc_interp.c
@@ -553,10 +553,7 @@ int sc_interp_add_blocks(SCInterpreter *scin, SCBlock *bl, SCBlock *output)
const char *options = sc_block_options(bl);
SCBlock *child = sc_block_child(bl);
- if ( bl == output ) {
- scin->output = 1;
- show_sc_block(bl, "");
- }
+ if ( bl == output ) scin->output = 1;
if ( child != NULL ) {
sc_interp_save(scin);