texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Tue Aug 30 10:22:54 EDT 2005)


From: Karl Berry
Subject: texinfo update (Tue Aug 30 10:22:54 EDT 2005)
Date: Tue, 30 Aug 2005 10:23:04 -0400

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.531
retrieving revision 1.532
diff -c -r1.531 -r1.532
*** ChangeLog   19 Aug 2005 12:14:20 -0000      1.531
--- ChangeLog   30 Aug 2005 13:55:55 -0000      1.532
***************
*** 1,3 ****
--- 1,8 ----
+ 2005-08-30  Karl Berry  <address@hidden>
+ 
+       * makeinfo/xref.c (cm_xref): if the following wrong char is ),
+       suggest @pxref.  Suggested by Kevin Ryde, 30 Aug 2005 09:23:39 +1000.
+ 
  2005-08-17  Predrag Rakic  <address@hidden>
  
        * doc/txi-sr.tex: Serbian translation.
Index: makeinfo/xref.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/xref.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -c -r1.8 -r1.9
*** makeinfo/xref.c     15 May 2005 00:00:08 -0000      1.8
--- makeinfo/xref.c     30 Aug 2005 13:55:55 -0000      1.9
***************
*** 1,7 ****
  /* xref.c -- cross references for Texinfo.
!    $Id: xref.c,v 1.8 2005/05/15 00:00:08 karl Exp $
  
!    Copyright (C) 2004 Free Software Foundation, Inc.
  
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
--- 1,7 ----
  /* xref.c -- cross references for Texinfo.
!    $Id: xref.c,v 1.9 2005/08/30 13:55:55 karl Exp $
  
!    Copyright (C) 2004, 2005 Free Software Foundation, Inc.
  
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
***************
*** 387,393 ****
        if (temp == -1)
          warning (_("End of file reached while looking for `.' or `,'"));
        else if (temp != '.' && temp != ',')
!         warning (_("`.' or `,' must follow @%s, not `%c'"), command, temp);
      }
  }
  
--- 387,397 ----
        if (temp == -1)
          warning (_("End of file reached while looking for `.' or `,'"));
        else if (temp != '.' && temp != ',')
!         {
!           warning (_("`.' or `,' must follow @%s, not `%c'"), command, temp);
!           if (temp == ')')
!             warning (_("for cross-references in parentheses, use @pxref"));
!         }
      }
  }
  
P ChangeLog
P makeinfo/xref.c


reply via email to

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