summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2022-10-10 22:34:40 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2022-10-10 23:58:39 +0100
commitd5a0201c54e815180bdffa67e037fe0183428cfd (patch)
tree8cd6867a6e70985ad912293cd0fd8cd6d99d57c4
parent5be76e6dcc1013656f2c10f2dd6f4817e11b2b0d (diff)
downloadswig-d5a0201c54e815180bdffa67e037fe0183428cfd.tar.gz
XML whitespace changes
Remove non-conventional whitespace before closing tag with '>'.
-rw-r--r--Source/Modules/xml.cxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/Source/Modules/xml.cxx b/Source/Modules/xml.cxx
index 5830754b4..ed4213cc5 100644
--- a/Source/Modules/xml.cxx
+++ b/Source/Modules/xml.cxx
@@ -118,7 +118,7 @@ public:
String *k;
indent_level += 4;
print_indent(0);
- Printf(out, "<attributelist id=\"%ld\" addr=\"%p\" >\n", ++id, obj);
+ Printf(out, "<attributelist id=\"%ld\" addr=\"%p\">\n", ++id, obj);
indent_level += 4;
Iterator ki;
ki = First(obj);
@@ -175,7 +175,7 @@ public:
}
indent_level -= 4;
print_indent(0);
- Printf(out, "</attributelist >\n");
+ Printf(out, "</attributelist>\n");
indent_level -= 4;
}
@@ -183,7 +183,7 @@ public:
Node *cobj;
print_indent(0);
- Printf(out, "<%s id=\"%ld\" addr=\"%p\" >\n", nodeType(obj), ++id, obj);
+ Printf(out, "<%s id=\"%ld\" addr=\"%p\">\n", nodeType(obj), ++id, obj);
Xml_print_attributes(obj);
cobj = firstChild(obj);
if (cobj) {
@@ -196,32 +196,32 @@ public:
Printf(out, "\n");
}
print_indent(0);
- Printf(out, "</%s >\n", nodeType(obj));
+ Printf(out, "</%s>\n", nodeType(obj));
}
void Xml_print_parmlist(ParmList *p, const char* markup = "parmlist") {
print_indent(0);
- Printf(out, "<%s id=\"%ld\" addr=\"%p\" >\n", markup, ++id, p);
+ Printf(out, "<%s id=\"%ld\" addr=\"%p\">\n", markup, ++id, p);
indent_level += 4;
while (p) {
print_indent(0);
Printf(out, "<parm id=\"%ld\">\n", ++id);
Xml_print_attributes(p);
print_indent(0);
- Printf(out, "</parm >\n");
+ Printf(out, "</parm>\n");
p = nextSibling(p);
}
indent_level -= 4;
print_indent(0);
- Printf(out, "</%s >\n", markup);
+ Printf(out, "</%s>\n", markup);
}
void Xml_print_baselist(List *p) {
print_indent(0);
- Printf(out, "<baselist id=\"%ld\" addr=\"%p\" >\n", ++id, p);
+ Printf(out, "<baselist id=\"%ld\" addr=\"%p\">\n", ++id, p);
indent_level += 4;
Iterator s;
for (s = First(p); s.item; s = Next(s)) {
@@ -232,7 +232,7 @@ public:
}
indent_level -= 4;
print_indent(0);
- Printf(out, "</baselist >\n");
+ Printf(out, "</baselist>\n");
}
String *Xml_escape_string(String *str) {
@@ -272,21 +272,21 @@ public:
void Xml_print_hash(Hash *p, const char *markup) {
print_indent(0);
- Printf(out, "<%s id=\"%ld\" addr=\"%p\" >\n", markup, ++id, p);
+ Printf(out, "<%s id=\"%ld\" addr=\"%p\">\n", markup, ++id, p);
Xml_print_attributes(p);
indent_level += 4;
Iterator n = First(p);
while (n.key) {
print_indent(0);
- Printf(out, "<%ssitem id=\"%ld\" addr=\"%p\" >\n", markup, ++id, n.item);
+ Printf(out, "<%ssitem id=\"%ld\" addr=\"%p\">\n", markup, ++id, n.item);
Xml_print_attributes(n.item);
print_indent(0);
- Printf(out, "</%ssitem >\n", markup);
+ Printf(out, "</%ssitem>\n", markup);
n = Next(n);
}
indent_level -= 4;
print_indent(0);
- Printf(out, "</%s >\n", markup);
+ Printf(out, "</%s>\n", markup);
}
};