]> git.saurik.com Git - bison.git/blobdiff - data/xslt/bison.xsl
package: bump to 2014
[bison.git] / data / xslt / bison.xsl
index b5d163d3ce2f49c6a30fcd3f1d204280f68c9f9a..039ba74941d9e46a3ae34d7f6733aa0eda197fa3 100644 (file)
@@ -3,7 +3,7 @@
 <!--
     bison.xsl - common templates for Bison XSLT.
 
-    Copyright (C) 2007-2010 Free Software Foundation, Inc.
+    Copyright (C) 2007-2014 Free Software Foundation, Inc.
 
     This file is part of Bison, the GNU Compiler Compiler.
 
   <xsl:value-of select="string-length(translate($conflict-data, 's', ''))"/>
 </xsl:template>
 
+<xsl:template name="space">
+  <xsl:param name="repeat">0</xsl:param>
+  <xsl:param name="fill" select="' '"/>
+  <xsl:if test="number($repeat) &gt;= 1">
+    <xsl:call-template name="space">
+      <xsl:with-param name="repeat" select="$repeat - 1"/>
+      <xsl:with-param name="fill" select="$fill"/>
+    </xsl:call-template>
+    <xsl:value-of select="$fill"/>
+  </xsl:if>
+</xsl:template>
+
 </xsl:stylesheet>