texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo/makeinfo index.c,1.12,1.13


From: dirt
Subject: texinfo/makeinfo index.c,1.12,1.13
Date: Thu, 5 Feb 2004 01:20:48 +0100

Update of /cvsroot/texinfo/texinfo/makeinfo
In directory sheep:/tmp/cvs-serv22953/makeinfo

Modified Files:
        index.c 
Log Message:
2004-02-05  Alper Ersoy  <address@hidden>

        * makeinfo/index.c (insert_index_output_line_no): made ``(line NNN)'' 
not
        translatable for Info output.



Index: index.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/index.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** index.c     3 Feb 2004 12:15:59 -0000       1.12
--- index.c     5 Feb 2004 00:20:45 -0000       1.13
***************
*** 625,629 ****
    char *out_line_no_str = (char *) xmalloc (str_size);
  
!   snprintf (out_line_no_str, str_size, _("(line %*d)"),
        output_line_number_len, line_number);
  
--- 625,633 ----
    char *out_line_no_str = (char *) xmalloc (str_size);
  
!   /* Do not translate ``(line NNN)'' below for !no_headers case (Info output),
!      because it's something like the ``* Menu'' strings.  For plaintext output
!      it should be translated though.  */
!   snprintf (out_line_no_str, str_size,
!       no_headers ? _("(line %*d)") : "(line %*d)",
        output_line_number_len, line_number);
  



reply via email to

[Prev in Thread] Current Thread [Next in Thread]