texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Thu Feb 10 20:52:01 EST 2005)


From: Karl Berry
Subject: texinfo update (Thu Feb 10 20:52:01 EST 2005)
Date: Thu, 10 Feb 2005 20:52:09 -0500

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.462
retrieving revision 1.463
diff -c -r1.462 -r1.463
*** ChangeLog   9 Feb 2005 19:14:52 -0000       1.462
--- ChangeLog   11 Feb 2005 01:31:03 -0000      1.463
***************
*** 1,3 ****
--- 1,11 ----
+ 2005-02-10  Karl Berry  <address@hidden>
+ 
+       * info/dir.c (dir_file_list_entry_type): use dev_t and ino_t
+       instead of unsigned long.  (Breaks on cygwin.)  David Hunter
+       bug-texinfo mail, 08 Feb 2005 23:05:37 -0500.  Paul Eggert says
+       these types should were present in 7th Edition and consequently
+       should be portable to any Unixish system.
+ 
  2005-02-09  Akim Demaille  <address@hidden>
  
        * util/texi2dvi (report): New.  Use it.
Index: info/dir.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/info/dir.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -c -r1.3 -r1.4
*** info/dir.c  11 Apr 2004 17:56:45 -0000      1.3
--- info/dir.c  11 Feb 2005 01:31:03 -0000      1.4
***************
*** 1,5 ****
  /* dir.c -- how to build a special "dir" node from "localdir" files.
!    $Id: dir.c,v 1.3 2004/04/11 17:56:45 karl Exp $
  
     Copyright (C) 1993, 1997, 1998, 2004 Free Software Foundation, Inc.
  
--- 1,5 ----
  /* dir.c -- how to build a special "dir" node from "localdir" files.
!    $Id: dir.c,v 1.4 2005/02/11 01:31:03 karl Exp $
  
     Copyright (C) 1993, 1997, 1998, 2004 Free Software Foundation, Inc.
  
***************
*** 44,51 ****
  
  typedef struct
  {
!   unsigned long device;
!   unsigned long inode;
  } dir_file_list_entry_type;
  
  static int
--- 44,51 ----
  
  typedef struct
  {
!   dev_t device;
!   ino_t inode;
  } dir_file_list_entry_type;
  
  static int
P ChangeLog
P info/dir.c


reply via email to

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