diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/elfgcchack.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/elfgcchack.xsl b/doc/elfgcchack.xsl index 11169f99..1adf340e 100644 --- a/doc/elfgcchack.xsl +++ b/doc/elfgcchack.xsl @@ -106,7 +106,7 @@ extern __typeof (__xmlGenericErrorContext) __xmlGenericErrorContext__internal_al <xsl:template match="function"> <xsl:variable name="str" select="string(@name)"/> - <xsl:if test="starts-with(@name, 'xml') or starts-with(@name, 'html') or contains(@name, 'Push') or contains(@name, 'Pop')"> + <xsl:if test="(starts-with(@name, 'xml') or starts-with(@name, 'html') or contains(@name, 'Push') or contains(@name, 'Pop')) and (not(contains(@name, 'xmlDllMain')))"> <xsl:variable name="alias" select="concat($str, '__internal_alias')"/> <xsl:apply-templates select="cond"/> <xsl:text>#ifdef bottom_</xsl:text> |