diff options
author | Sebastian Pipping <sping@gentoo.org> | 2010-11-17 00:32:57 +0000 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2010-11-17 00:32:57 +0000 |
commit | 3ed53620d6eadae69e459c6a502f196312d53885 (patch) | |
tree | f2c7f7e3ca05a3a5e206f5c2fa62ea0964bc89f1 /app-text/htmltidy | |
parent | Cleanup (diff) | |
download | gentoo-2-3ed53620d6eadae69e459c6a502f196312d53885.tar.gz gentoo-2-3ed53620d6eadae69e459c6a502f196312d53885.tar.bz2 gentoo-2-3ed53620d6eadae69e459c6a502f196312d53885.zip |
app-text/htmltidy: Remove unused patch (bug #344411)
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Diffstat (limited to 'app-text/htmltidy')
-rw-r--r-- | app-text/htmltidy/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/htmltidy/files/03-htmltidy-docbook.patch | 98 |
2 files changed, 5 insertions, 99 deletions
diff --git a/app-text/htmltidy/ChangeLog b/app-text/htmltidy/ChangeLog index 809a2cf96884..249d00bc12bd 100644 --- a/app-text/htmltidy/ChangeLog +++ b/app-text/htmltidy/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/htmltidy # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/htmltidy/ChangeLog,v 1.56 2010/03/30 08:32:24 wired Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/htmltidy/ChangeLog,v 1.57 2010/11/17 00:32:57 sping Exp $ + + 17 Nov 2010; Sebastian Pipping <sping@gentoo.org> + -files/03-htmltidy-docbook.patch: + Remove unused patch (bug #344411) *htmltidy-20090325-r1 (30 Mar 2010) diff --git a/app-text/htmltidy/files/03-htmltidy-docbook.patch b/app-text/htmltidy/files/03-htmltidy-docbook.patch deleted file mode 100644 index 78f1082c43ab..000000000000 --- a/app-text/htmltidy/files/03-htmltidy-docbook.patch +++ /dev/null @@ -1,98 +0,0 @@ ---- src/pprint.c.old 2003-11-08 13:01:16.000000000 +0800 -+++ src/pprint.c 2003-11-08 13:03:05.000000000 +0800 -@@ -40,7 +40,7 @@ - static int TextEndsWithNewline( Lexer *lexer, Node *node, uint mode ); - static int TextStartsWithWhitespace( Lexer *lexer, Node *node, uint start, uint mode ); - static Bool InsideHead( TidyDocImpl* doc, Node *node ); --static Bool ShouldIndent( TidyDocImpl* doc, Node *node ); -+Bool ShouldIndent( TidyDocImpl* doc, Node *node ); - - #if SUPPORT_ASIAN_ENCODINGS - /* #431953 - start RJ Wraplen adjusted for smooth international ride */ -@@ -706,7 +706,7 @@ - } - } - --static void PPrintChar( TidyDocImpl* doc, uint c, uint mode ) -+void PPrintChar( TidyDocImpl* doc, uint c, uint mode ) - { - tmbchar entity[128]; - ctmbstr p; -@@ -941,7 +941,7 @@ - to UTF-8 is deferred to the WriteChar() routine called - to flush the line buffer. - */ --static void PPrintText( TidyDocImpl* doc, uint mode, uint indent, -+void PPrintText( TidyDocImpl* doc, uint mode, uint indent, - Node* node ) - { - uint start = node->start; -@@ -982,13 +982,11 @@ - } - } - --#if 0 --static void PPrintString( TidyDocImpl* doc, uint indent, ctmbstr str ) -+void PPrintString( TidyDocImpl* doc, uint indent, ctmbstr str ) - { - while ( *str != '\0' ) - AddChar( &doc->pprint, *str++ ); - } --#endif /* 0 */ - - - static void PPrintAttrValue( TidyDocImpl* doc, uint indent, -@@ -1370,7 +1368,7 @@ - AddChar( pprint, '>' ); - } - --static void PPrintComment( TidyDocImpl* doc, uint indent, Node* node ) -+void PPrintComment( TidyDocImpl* doc, uint indent, Node* node ) - { - TidyPrintImpl* pprint = &doc->pprint; - -@@ -1454,7 +1452,7 @@ - PCondFlushLine( doc, indent ); - } - --static void PPrintPI( TidyDocImpl* doc, uint indent, Node *node ) -+void PPrintPI( TidyDocImpl* doc, uint indent, Node *node ) - { - TidyPrintImpl* pprint = &doc->pprint; - tchar c; -@@ -1485,7 +1483,7 @@ - PCondFlushLine( doc, indent ); - } - --static void PPrintXmlDecl( TidyDocImpl* doc, uint indent, Node *node ) -+void PPrintXmlDecl( TidyDocImpl* doc, uint indent, Node *node ) - { - AttVal* att; - uint saveWrap; -@@ -1574,7 +1572,7 @@ - WrapOn( doc, saveWrap ); - } - --static void PPrintCDATA( TidyDocImpl* doc, uint indent, Node *node ) -+void PPrintCDATA( TidyDocImpl* doc, uint indent, Node *node ) - { - uint saveWrap; - TidyPrintImpl* pprint = &doc->pprint; -@@ -1593,7 +1591,7 @@ - WrapOn( doc, saveWrap ); /* restore wrapping */ - } - --static void PPrintSection( TidyDocImpl* doc, uint indent, Node *node ) -+void PPrintSection( TidyDocImpl* doc, uint indent, Node *node ) - { - TidyPrintImpl* pprint = &doc->pprint; - Bool wrapSect = cfgBool( doc, TidyWrapSection ); -@@ -1900,7 +1898,7 @@ - - - --static Bool ShouldIndent( TidyDocImpl* doc, Node *node ) -+Bool ShouldIndent( TidyDocImpl* doc, Node *node ) - { - uint indentContent = cfg( doc, TidyIndentContent ); - if ( indentContent == no ) |