# HG changeset patch
# User Space Falcon <falcon@ivan.Harhan.ORG>
# Date 1439068999 0
# Node ID a93e4b07fdf31c3c55a0e97bfcca24ce03c1a3f8
# Parent  dcdf606dfaaa2c6177253690faa9300e673eb88e
unet-destar: pass attributes through

diff -r dcdf606dfaaa -r a93e4b07fdf3 ueda/unet-utils/unet-destar.c
--- a/ueda/unet-utils/unet-destar.c	Sat Aug 08 21:19:24 2015 +0000
+++ b/ueda/unet-utils/unet-destar.c	Sat Aug 08 21:23:19 2015 +0000
@@ -112,6 +112,7 @@
 		switch(rdout.typecode) {
 		case UNETOBJ_PRIMITIVE:
 		case UNETOBJ_ALTNAME:
+		case UNETOBJ_ATTR:
 			continue;
 		case UNETOBJ_PIN:
 			if (!rdout.connect_to_net) {
@@ -180,6 +181,10 @@
 			fprintf(tempFILE, "  %s %s\n", rdout.keyword,
 				rdout.objname);
 			continue;
+		case UNETOBJ_ATTR:
+			fprintf(tempFILE, "  ATTR %s=%s\n", rdout.objname,
+				rdout.attr_value);
+			continue;
 		case UNETOBJ_PIN:
 		case UNETOBJ_PINMAP:
 			process_component_pin();