From 879e6cf909460d4d3fd9edb94e1e98e503430f59 Mon Sep 17 00:00:00 2001 From: "Michael[tm] Smith" Date: Wed, 14 Mar 2012 20:05:12 +0900 Subject: [PATCH] Put "experimental" in the meta@generator output too. --- src/lexer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lexer.c b/src/lexer.c index a595639..36b9794 100644 --- a/src/lexer.c +++ b/src/lexer.c @@ -1407,10 +1407,10 @@ Bool TY_(AddGenerator)( TidyDocImpl* doc ) if (head) { #ifdef PLATFORM_NAME - TY_(tmbsnprintf)(buf, sizeof(buf), "HTML Tidy for "PLATFORM_NAME" %s", + TY_(tmbsnprintf)(buf, sizeof(buf), "HTML Tidy for HTML5 (experimental) for "PLATFORM_NAME" %s", tidyReleaseDate()); #else - TY_(tmbsnprintf)(buf, sizeof(buf), "HTML Tidy %s", tidyReleaseDate()); + TY_(tmbsnprintf)(buf, sizeof(buf), "HTML Tidy for HTML5 (experimental) %s", tidyReleaseDate()); #endif for ( node = head->content; node; node = node->next )