texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Fri Feb 25 04:22:01 EST 2005)


From: Karl Berry
Subject: texinfo update (Fri Feb 25 04:22:01 EST 2005)
Date: Fri, 25 Feb 2005 04:22:09 -0500

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.469
retrieving revision 1.470
diff -c -r1.469 -r1.470
*** ChangeLog   22 Feb 2005 14:42:12 -0000      1.469
--- ChangeLog   25 Feb 2005 08:55:02 -0000      1.470
***************
*** 1,3 ****
--- 1,7 ----
+ 2005-02-24  Stepan Kasal  <address@hidden>
+ 
+       * util/texi2dvi (get_xref_files): No need to use ls, save a process.
+ 
  2005-02-22  Akim Demaille  <address@hidden>
  
        * util/texi2dvi (absolute_filenames): Skip nonexistent directories.
Index: util/texi2dvi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.45
retrieving revision 1.46
diff -c -r1.45 -r1.46
*** util/texi2dvi       22 Feb 2005 14:42:13 -0000      1.45
--- util/texi2dvi       25 Feb 2005 08:55:03 -0000      1.46
***************
*** 1,6 ****
  #! /bin/sh
  # texi2dvi --- produce DVI (or PDF) files from Texinfo (or LaTeX) sources.
! # $Id: texi2dvi,v 1.45 2005/02/22 14:42:13 karl Exp $
  #
  # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
  # 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
--- 1,6 ----
  #! /bin/sh
  # texi2dvi --- produce DVI (or PDF) files from Texinfo (or LaTeX) sources.
! # $Id: texi2dvi,v 1.46 2005/02/25 08:55:03 kasal Exp $
  #
  # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
  # 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
***************
*** 32,38 ****
  unset RUNNING_KSH
  
  # This string is expanded by rcs automatically when this file is checked out.
! rcs_revision='$Revision: 1.45 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
--- 32,38 ----
  unset RUNNING_KSH
  
  # This string is expanded by rcs automatically when this file is checked out.
! rcs_revision='$Revision: 1.46 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
***************
*** 358,369 ****
  {
    # Find all files having root filename with a two-letter extension,
    # saves the ones that are really Texinfo-related files.
-   # Use `ls' because some patterns are likely not to match.
    # - .?o?
    #   .toc, .log, LaTeX tables and lists, FiXme's .lox, maybe more.
    # - bu[0-9]*.aux
    #   Sub bibliography when using the LaTeX bibunits package.
!   for this_file in `(ls "$1".?o? "$1".aux bu[0-9]*.aux "$1".?? "$1".idx) 2>&6`
    do
      # If file is empty, skip it.
      test -s "$this_file" || continue
--- 358,368 ----
  {
    # Find all files having root filename with a two-letter extension,
    # saves the ones that are really Texinfo-related files.
    # - .?o?
    #   .toc, .log, LaTeX tables and lists, FiXme's .lox, maybe more.
    # - bu[0-9]*.aux
    #   Sub bibliography when using the LaTeX bibunits package.
!   for this_file in "$1".?o? "$1".aux bu[0-9]*.aux "$1".?? "$1".idx
    do
      # If file is empty, skip it.
      test -s "$this_file" || continue
P ChangeLog
P util/texi2dvi


reply via email to

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