Index: /trunk/doc/manual/docbook-refentry-to-C-help.xsl
===================================================================
--- /trunk/doc/manual/docbook-refentry-to-C-help.xsl	(revision 56443)
+++ /trunk/doc/manual/docbook-refentry-to-C-help.xsl	(revision 56444)
@@ -567,5 +567,12 @@
       <xsl:message terminate="yes">Empty @condition for help-scope remark.</xsl:message>
     </xsl:if>
-    <xsl:text>HELP_SCOPE_</xsl:text><xsl:value-of select="substring-before($sNormalized, ' ')"/>
+    <xsl:choose>
+      <xsl:when test="substring-before($sNormalized, ' ') = 'GLOBAL'">
+        <xsl:text>REFENTRYSTR_SCOPE_GLOBAL</xsl:text>
+      </xsl:when>
+      <xsl:otherwise>
+        <xsl:text>HELP_SCOPE_</xsl:text><xsl:value-of select="substring-before($sNormalized, ' ')"/>
+      </xsl:otherwise>
+    </xsl:choose>
     <xsl:call-template name="calc-scope-const-from-remark-worker">
       <xsl:with-param name="sList" select="substring-after($sNormalized, ' ')"/>
@@ -576,5 +583,12 @@
     <xsl:param name="sList"/>
     <xsl:if test="$sList != ''">
-      <xsl:text> | HELP_SCOPE_</xsl:text><xsl:value-of select="substring-before($sList, ' ')"/>
+      <xsl:choose>
+        <xsl:when test="substring-before($sList, ' ') = 'GLOBAL'">
+          <xsl:text>| REFENTRYSTR_SCOPE_GLOBAL</xsl:text>
+        </xsl:when>
+        <xsl:otherwise>
+          <xsl:text> | HELP_SCOPE_</xsl:text><xsl:value-of select="substring-before($sList, ' ')"/>
+        </xsl:otherwise>
+      </xsl:choose>
       <xsl:call-template name="calc-scope-const-from-remark-worker">
         <xsl:with-param name="sList" select="substring-after($sList, ' ')"/>
