Werner LEMBERG <[EMAIL PROTECTED]> ha escrit:

> Processing groff.texinfo from groff's CVS I see, compared to version
> 4.12, the following, for example:
[..]
> -Appendix K Concept Index
> -************************
> +Anhang K Concept Index
> +**********************

Thanks for noticing.  Attached is a patch that fixes this bug.

Regards,
Sergey

Index: makeinfo/sectioning.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/sectioning.c,v
retrieving revision 1.29
diff -p -u -r1.29 sectioning.c
--- makeinfo/sectioning.c       1 Jul 2007 21:20:33 -0000       1.29
+++ makeinfo/sectioning.c       26 Sep 2008 11:53:35 -0000
@@ -119,7 +119,7 @@ get_sectioning_number (int level, int nu
   if ((num == ENUM_SECT_APP)
       && (i == 0)
       && (enum_marker == APPENDIX_MAGIC))
-    sprintf (p, _("Appendix %c"), numbers[i] + 64);
+    sprintf (p, getdocumenttext ("Appendix %c"), numbers[i] + 64);
   else
     sprintf (p, "%d", numbers[i]);
 

Reply via email to