summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-11-07 06:16:25 +0000
committerMamoru Komachi <usata@gentoo.org>2004-11-07 06:16:25 +0000
commitbcad61ba8c9ab19bf2faa14e4a02962229f8960c (patch)
treed8fac6fe6ff31985e6f568ddd97d0b32ee1cc8b1 /app-text/sablotron/files
parentRequire dev-perl/XML-Parser only if doc USE flag is set; bug #69452. (diff)
downloadhistorical-bcad61ba8c9ab19bf2faa14e4a02962229f8960c.tar.gz
historical-bcad61ba8c9ab19bf2faa14e4a02962229f8960c.tar.bz2
historical-bcad61ba8c9ab19bf2faa14e4a02962229f8960c.zip
Removed unnecessary patch in files directory.
Diffstat (limited to 'app-text/sablotron/files')
-rw-r--r--app-text/sablotron/files/Sablot-0.96.1.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/app-text/sablotron/files/Sablot-0.96.1.patch b/app-text/sablotron/files/Sablot-0.96.1.patch
deleted file mode 100644
index b6a099cf7a93..000000000000
--- a/app-text/sablotron/files/Sablot-0.96.1.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-Index: parser.cpp
-diff -c parser.cpp:1.63 parser.cpp:1.63.2.1
-*** parser.cpp:1.63 Mon Sep 2 12:06:48 2002
---- parser.cpp Mon Sep 9 12:39:21 2002
-***************
-*** 428,436 ****
- if (!(firstTime && rawBuffer[0] == (char) 0xEF &&
- rawBuffer[1] == (char) 0xBB && rawBuffer[2] == (char) 0xBF))
- S.setCurrLine(XML_GetCurrentLineNumber(parser));
-! int code = XML_GetErrorCode(parser);
- Str eCodeStr, eNameStr;
-! eCodeStr = code;
- eNameStr = (char*) XML_ErrorString(code);
- // XML_ParserFree(parser); -- done later
- Err2T(this_, S, E_XML, eCodeStr, eNameStr);
---- 428,436 ----
- if (!(firstTime && rawBuffer[0] == (char) 0xEF &&
- rawBuffer[1] == (char) 0xBB && rawBuffer[2] == (char) 0xBF))
- S.setCurrLine(XML_GetCurrentLineNumber(parser));
-! XML_Error code = XML_GetErrorCode(parser);
- Str eCodeStr, eNameStr;
-! eCodeStr = (int)code;
- eNameStr = (char*) XML_ErrorString(code);
- // XML_ParserFree(parser); -- done later
- Err2T(this_, S, E_XML, eCodeStr, eNameStr);
-Index: situa.cpp
-diff -c situa.cpp:1.23 situa.cpp:1.23.6.1
-*** situa.cpp:1.23 Thu Jul 4 16:12:34 2002
---- situa.cpp Mon Sep 9 13:12:12 2002
-***************
-*** 262,268 ****
- {
- if (l[i] > size / __numargs)
- {
-! b[i] = new char[size / __numargs];
- strcpy(b[i], "...");
- strcpy(b[i] + 3, a[i] + (l[i] - size / __numargs + 3));
- }
---- 262,268 ----
- {
- if (l[i] > size / __numargs)
- {
-! b[i] = new char[size / __numargs + 1];
- strcpy(b[i], "...");
- strcpy(b[i] + 3, a[i] + (l[i] - size / __numargs + 3));
- }