texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Mon Sep 5 09:52:01 EDT 2005)


From: Karl Berry
Subject: texinfo update (Mon Sep 5 09:52:01 EDT 2005)
Date: Mon, 05 Sep 2005 09:52:06 -0400

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.533
retrieving revision 1.534
diff -c -r1.533 -r1.534
*** ChangeLog   4 Sep 2005 13:07:40 -0000       1.533
--- ChangeLog   5 Sep 2005 13:46:14 -0000       1.534
***************
*** 1,6 ****
  2005-08-31  Akim Demaille  <address@hidden>
  
!       * utils/texi2dvi: Fix white space issues.
        Quote uses of directory and file names.
        Don't expect "export var=val" to work (e.g., SunOS 5.9): do it in
        two steps.
--- 1,12 ----
+ 2005-09-05  Karl Berry  <address@hidden>  (tiny change)
+ 
+       * util/texi2dvi: look for btxmac.tex's "Undefined citation" message.
+       Then texi2dvi works with (e)plain, too, by setting LATEX=tex.
+       From Oleg Katsitadze.
+ 
  2005-08-31  Akim Demaille  <address@hidden>
  
!       * util/texi2dvi: Fix white space issues.
        Quote uses of directory and file names.
        Don't expect "export var=val" to work (e.g., SunOS 5.9): do it in
        two steps.
Index: util/texi2dvi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.59
retrieving revision 1.60
diff -c -r1.59 -r1.60
*** util/texi2dvi       4 Sep 2005 13:07:40 -0000       1.59
--- util/texi2dvi       5 Sep 2005 13:46:15 -0000       1.60
***************
*** 1,6 ****
  #! /bin/sh
! # texi2dvi --- produce DVI (or PDF) files from Texinfo (or LaTeX) sources.
! # $Id: texi2dvi,v 1.59 2005/09/04 13:07:40 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 (La)TeX) sources.
! # $Id: texi2dvi,v 1.60 2005/09/05 13:46:15 karl 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.59 $'
  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.60 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
***************
*** 48,57 ****
  
  usage="Usage: $program [OPTION]... FILE...
  
! Run each Texinfo or LaTeX FILE through TeX in turn until all
  cross-references are resolved, building all indices.  The directory
  containing each FILE is searched for included files.  The suffix of FILE
! is used to determine its language (LaTeX or Texinfo).
  
  Makeinfo is used to perform Texinfo macro expansion before running TeX
  when needed.
--- 48,58 ----
  
  usage="Usage: $program [OPTION]... FILE...
  
! Run each Texinfo or (La)TeX FILE through TeX in turn until all
  cross-references are resolved, building all indices.  The directory
  containing each FILE is searched for included files.  The suffix of FILE
! is used to determine its language ((La)TeX or Texinfo).  To process
! (e)plain TeX files, set the environment variable LATEX=tex.
  
  Makeinfo is used to perform Texinfo macro expansion before running TeX
  when needed.
***************
*** 103,109 ****
    - PDF and DVI compilation are kept in separate subdirectories
      preventing any possibility of auxiliary file incompatibility.
  
! On the other, because \`tidy' compilation takes place in another
  directory, occasionally TeX won't be able to find some files (e.g., when
  using \\graphicspath): in that case use -I to specify the additional
  directories to consider.
--- 104,110 ----
    - PDF and DVI compilation are kept in separate subdirectories
      preventing any possibility of auxiliary file incompatibility.
  
! On the other hand, because \`tidy' compilation takes place in another
  directory, occasionally TeX won't be able to find some files (e.g., when
  using \\graphicspath): in that case use -I to specify the additional
  directories to consider.
***************
*** 451,460 ****
--- 452,463 ----
      texinfo) bibtex=;;
    esac
  
+   # "Citation undefined" is for LaTeX, "Undefined citation" for btxmac.tex.
    if test -n "$bibtex" \
       && test -r "$filename_noext.aux" \
       && test -r "$filename_noext.log" \
       && (grep 'Warning:.*Citation.*undefined' "$filename_noext.log" \
+           || grep '.*Undefined citation' "$filename_noext.log" \
            || grep 'No file .*\.bbl\.' "$filename_noext.log") \
          >&6 2>&1; \
    then
P ChangeLog
P util/texi2dvi


reply via email to

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