Skip to content

Commit

Permalink
fixed a reroot rendering mistake
Browse files Browse the repository at this point in the history
git-svn-id: https://slps.svn.sourceforge.net/svnroot/slps@652 ab42f6e0-554d-0410-b580-99e487e6eeb2
  • Loading branch information
grammarware committed Jun 3, 2009
1 parent cea9cfb commit d832775
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion shared/xsl/xbgf2xbnf.xslt
Expand Up @@ -188,7 +188,11 @@
<xsl:template match="xbgf:reroot">
<xsl:value-of select="local-name()" />
<xsl:text>(</xsl:text>
<xsl:value-of select="./root"/>
<xsl:value-of select="./root[1]"/>
<xsl:for-each select="./root[position()>1]">
<xsl:text>, </xsl:text>
<xsl:value-of select="."/>
</xsl:for-each>
<xsl:text>);
</xsl:text>
</xsl:template>
Expand Down

0 comments on commit d832775

Please sign in to comment.