summaryrefslogtreecommitdiff
path: root/www/tidy-devel/files/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'www/tidy-devel/files/patch-ae')
-rw-r--r--www/tidy-devel/files/patch-ae24
1 files changed, 0 insertions, 24 deletions
diff --git a/www/tidy-devel/files/patch-ae b/www/tidy-devel/files/patch-ae
deleted file mode 100644
index fb56ac67c400..000000000000
--- a/www/tidy-devel/files/patch-ae
+++ /dev/null
@@ -1,24 +0,0 @@
---- lexer.c.orig Fri Aug 4 19:21:05 2000
-+++ lexer.c Thu Nov 15 21:44:03 2001
-@@ -1517,8 +1517,10 @@
-
- continue;
- }
-- else if (c == '&' && mode != IgnoreMarkup)
-- ParseEntity(lexer, mode);
-+ else if (c == '&' && mode != IgnoreMarkup
-+ && !PreserveEntities) {
-+ ParseEntity(lexer, mode);
-+ }
-
- /* this is needed to avoid trimming trailing whitespace */
- if (mode == IgnoreWhitespace)
-@@ -2624,7 +2626,7 @@
- seen_gt = yes;
- }
-
-- if (c == '&')
-+ if (c == '&') /* XXX: possibly need support for PreserveEntities */
- {
- AddCharToLexer(lexer, c);
- ParseEntity(lexer, null);