aelfred/aelfred-icedtea-build.patch
Tomáš Chvátal 43d0b338ed Accepting request 243983 from home:sfalken:branches:Java:packages
Ok, try this one instead, it actually builds this time, since I'm submitting the right patch.

OBS-URL: https://build.opensuse.org/request/show/243983
OBS-URL: https://build.opensuse.org/package/show/Java:packages/aelfred?expand=0&rev=12
2014-08-08 15:40:50 +00:00

47 lines
1.3 KiB
Diff

diff -rupN net.old/sf/saxon/aelfred/XmlParser.java net/sf/saxon/aelfred/XmlParser.java
--- net.old/sf/saxon/aelfred/XmlParser.java 2002-04-12 14:30:00.000000000 -0700
+++ net/sf/saxon/aelfred/XmlParser.java 2014-08-08 07:24:55.979292881 -0700
@@ -1463,7 +1463,7 @@ loop:
{
String name;
int type;
- String enum = null;
+ String enum2 = null;
// Read the attribute name.
name = readNmtoken (true);
@@ -1475,12 +1475,12 @@ loop:
// Get the string of enumerated values
// if necessary.
if (type == ATTRIBUTE_ENUMERATED || type == ATTRIBUTE_NOTATION) {
- enum = dataBufferToString ();
+ enum2 = dataBufferToString ();
}
// Read the default value.
requireWhitespace ();
- parseDefault (elementName, name, type, enum);
+ parseDefault (elementName, name, type, enum2);
}
@@ -1573,7 +1573,7 @@ loop:
String elementName,
String name,
int type,
- String enum
+ String enum2
) throws Exception
{
int valueType = ATTRIBUTE_DEFAULT_SPECIFIED;
@@ -1605,7 +1605,7 @@ loop:
}
} else
value = readLiteral (flags);
- setAttribute (elementName, name, type, enum, value, valueType);
+ setAttribute (elementName, name, type, enum2, value, valueType);
}
Binary files net.old/sf/saxon/aelfred/.XmlParser.java.un~ and net/sf/saxon/aelfred/.XmlParser.java.un~ differ