make sure we include a space between tag printed output
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Wed, 08 Aug 2007 11:16:41 +0200
changeset 1239 e1be6d900bc0
parent 1238 285a9af77aec
child 1240 4d58e61cd780
make sure we include a space between tag printed output
src/common/tags.cc
--- a/src/common/tags.cc	Wed Aug 08 11:16:11 2007 +0200
+++ b/src/common/tags.cc	Wed Aug 08 11:16:41 2007 +0200
@@ -124,6 +124,10 @@
   for (struct TagData *cur = m_next; cur != 0; cur = cur->m_next) 
     {
       TagRegistry::Print (cur->m_id, cur->m_data, os);
+      if (cur->m_next != 0)
+        {
+          os << " ";
+        }
     }
 }