Skip to content
This repository was archived by the owner on Jun 16, 2021. It is now read-only.

Commit 184fca2

Browse files
committed
xsl:sequence to avoid warning from latest saxon
1 parent c27d190 commit 184fca2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

unicodedata.xsl

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
-->
2121
<xsl:variable name="UD" select="tokenize(unparsed-text('UnicodeData-11.0.0.txt'),'[&#10;&#13;]+')"/>
2222
<xsl:variable name="uc" select="doc('unicode.xml')"/>
23-
23+
<xsl:variable name="comb" select="doc('combine.xml')"/>
2424
<!--
2525
<xsl:variable name="MC" select="'MathClass-11.txt'"/>
2626
<xsl:variable name="MC" select="'MathClass-13.txt'"/>
@@ -100,7 +100,7 @@ d:hexs(@c)
100100

101101
<xsl:function name="d:hex" as="xs:integer">
102102
<xsl:param name="x"/>
103-
<xsl:value-of
103+
<xsl:sequence
104104
select="if (empty($x)) then 0 else ($x[last()] + 16* d:hex($x[position()!=last()]))"/>
105105
</xsl:function>
106106

0 commit comments

Comments
 (0)