Index: trunk/FACT++/src/fitsdump.cc
===================================================================
--- trunk/FACT++/src/fitsdump.cc	(revision 11565)
+++ trunk/FACT++/src/fitsdump.cc	(revision 11566)
@@ -406,13 +406,16 @@
         string str;
         double d;
+        int l;
 
         const MyKeyword *kw = static_cast<MyKeyword*>(it->second);
         kw->keytype();
-        out << "## " << setw(8) << kw->name() << "='";
+        out << "## " << setw(8) << kw->name() << " = " << setw(10);
         if (kw->keytype()==16)
-            out << kw->value(str);
+            out << ("'"+kw->value(str)+"'");
+        if (kw->keytype()==31)
+            out << kw->value(l);
         if (kw->keytype()==82)
             out << kw->value(d);
-        out << "' \t(" << kw->comment() << ")" << endl;
+        out << " / " << kw->comment() << endl;
     }
 }
