texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Mon Feb 28 08:52:01 EST 2005)


From: Karl Berry
Subject: texinfo update (Mon Feb 28 08:52:01 EST 2005)
Date: Mon, 28 Feb 2005 08:52:17 -0500

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.470
retrieving revision 1.471
diff -c -r1.470 -r1.471
*** ChangeLog   25 Feb 2005 08:55:02 -0000      1.470
--- ChangeLog   28 Feb 2005 13:41:03 -0000      1.471
***************
*** 1,3 ****
--- 1,8 ----
+ 2005-02-28  Stepan Kasal  <address@hidden>
+ 
+       * util/texi2dvi: When running bibtex, improve quoting and again,
+         we can save a process by not running ls.  (Thanks, Akim.)
+ 
  2005-02-24  Stepan Kasal  <address@hidden>
  
        * util/texi2dvi (get_xref_files): No need to use ls, save a process.
Index: util/texi2dvi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.46
retrieving revision 1.47
diff -c -r1.46 -r1.47
*** util/texi2dvi       25 Feb 2005 08:55:03 -0000      1.46
--- util/texi2dvi       28 Feb 2005 13:41:03 -0000      1.47
***************
*** 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.
--- 1,6 ----
  #! /bin/sh
  # texi2dvi --- produce DVI (or PDF) files from Texinfo (or LaTeX) sources.
! # $Id: texi2dvi,v 1.47 2005/02/28 13:41: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.46 $'
  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.47 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
***************
*** 730,740 ****
      then
        # If using the bibunits package, we might have to run bibtex
        # on subfiles.
!       for f in `(ls "$filename_noext".aux bu[0-9]*.aux) 2>&6`
        do
!       if (grep '^\\bibstyle[{]' $f   \
!           && grep '^\\bibdata[{]' $f \
!           && grep '^\\citation[{]' $f) >&6 2>&1; then
            verbose "Running $bibtex $f ..."
            $bibtex "$f" >&5 ||
              fatal 1 "$bibtex exited with bad status, quitting."
--- 730,741 ----
      then
        # If using the bibunits package, we might have to run bibtex
        # on subfiles.
!       for f in "$filename_noext".aux bu[0-9]*.aux
        do
!       if test -s "$f" && \
!          (grep '^\\bibstyle[{]' "$f"   \
!           && grep '^\\bibdata[{]' "$f" \
!           && grep '^\\citation[{]' "$f") >&6 2>&1; then
            verbose "Running $bibtex $f ..."
            $bibtex "$f" >&5 ||
              fatal 1 "$bibtex exited with bad status, quitting."
P ChangeLog
P util/texi2dvi


reply via email to

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