>From 5eac6d23d1aa5ae8b658e75e721674e201910130 Mon Sep 17 00:00:00 2001 From: Mats Erik Andersson Date: Sun, 15 Sep 2013 16:21:45 +0200 Subject: [PATCH] pmccabe2html: Tagging error in HTML template. Two erroneous tags prevented lynx to render the page. One is doubly marking the end "", the other was misnamed, needing a tag "span". --- ChangeLog | 5 +++++ build-aux/pmccabe2html | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0007e17..6213d84 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-09-15 Mats Erik Andersson + + * build-aux/pmccabe2html: Fix two tag errors, each of + which invalidates the resulting HTML source. + 2013-09-09 Eric Blake glob: fix compilation diff --git a/build-aux/pmccabe2html b/build-aux/pmccabe2html index 863c73e..6ac7530 100644 --- a/build-aux/pmccabe2html +++ b/build-aux/pmccabe2html @@ -211,7 +211,7 @@ function html_header () print cssline } print "-->" - print "" + print "" close(css) } print "" @@ -852,7 +852,7 @@ END { if (output_lang == "html") { print "
" package_name " Cyclomatic Complexity Report
" - print "

Report generated at: " strftime() "

" + print "

Report generated at: " strftime() "

" } if (output_lang == "wiki") { -- 1.8.4.rc3