From 52d8f0723de8d11ff1ad66bcd06290094121f193 Mon Sep 17 00:00:00 2001
From: Ivan Radic <ivnrdc@gmail.com>
Date: Sun, 19 Sep 2010 23:07:24 +0200
Subject: [PATCH 5/6] disable print object for block control and block header

---
 src/print.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/print.c b/src/print.c
index f2384d1..75a6008 100644
--- a/src/print.c
+++ b/src/print.c
@@ -324,10 +324,14 @@ dwg_print_object(Dwg_Object *obj)
     dwg_print_MLINE(dat, obj);
     break;
   case DWG_TYPE_BLOCK_CONTROL:
+#if 0
     dwg_print_BLOCK_CONTROL(dat, obj);
+#endif
     break;
   case DWG_TYPE_BLOCK_HEADER:
+#if 0
     dwg_print_BLOCK_HEADER(dat, obj);
+#endif
     break;
   case DWG_TYPE_LAYER_CONTROL:
     dwg_print_LAYER_CONTROL(dat, obj);
-- 
1.6.5.2

