summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2010-05-02 22:29:32 -0700
committerDave Beckett <dave@dajobe.org>2010-05-02 22:29:32 -0700
commit648d5d0883eea419efa7b0d8cd0d4f2112b5af22 (patch)
tree781026c0a3e8a450ac9827e21e37aa199be5f06b /scripts
parent7589770b0626ea5a4fb29f70c2ee739aa987b106 (diff)
downloadraptor-648d5d0883eea419efa7b0d8cd0d4f2112b5af22.tar.gz
add change table titles
Diffstat (limited to 'scripts')
-rw-r--r--scripts/format-changes.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/format-changes.pl b/scripts/format-changes.pl
index 646f9f63..c2cb3d46 100644
--- a/scripts/format-changes.pl
+++ b/scripts/format-changes.pl
@@ -419,11 +419,11 @@ print_end_section_as_docbook_xml();
print_start_section_as_docbook_xml('raptor-changes-changed',
"Changed functions and types in $package $new_version");
-print_changed_functions_as_docbook_xml(undef,
+print_changed_functions_as_docbook_xml('Functions',
"$old_version function",
"$new_version function",
@changed_functions);
-print_changed_types_as_docbook_xml(undef,
+print_changed_types_as_docbook_xml('Types',
"$old_version type",
"$new_version type",
@changed_types);