texinfo-commits
[Top][All Lists]
Advanced

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

texinfo ChangeLog util/texi2dvi


From: Akim Demaille
Subject: texinfo ChangeLog util/texi2dvi
Date: Wed, 15 Apr 2009 14:59:01 +0000

CVSROOT:        /cvsroot/texinfo
Module name:    texinfo
Changes by:     Akim Demaille <akim>    09/04/15 14:59:01

Modified files:
        .              : ChangeLog 
        util           : texi2dvi 

Log message:
        texi2dvi: make $expand a regular Boolean variable.
        * bin/texi2dvi ($expand): Use true/false instead of t/''.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/ChangeLog?cvsroot=texinfo&r1=1.1003&r2=1.1004
http://cvs.savannah.gnu.org/viewcvs/texinfo/util/texi2dvi?cvsroot=texinfo&r1=1.148&r2=1.149

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.1003
retrieving revision 1.1004
diff -u -b -r1.1003 -r1.1004
--- ChangeLog   15 Apr 2009 14:57:58 -0000      1.1003
+++ ChangeLog   15 Apr 2009 14:59:00 -0000      1.1004
@@ -1,5 +1,10 @@
 2009-04-15  Akim Demaille  <address@hidden>
 
+       texi2dvi: make $expand a regular Boolean variable.
+       * bin/texi2dvi ($expand): Use true/false instead of t/''.
+
+2009-04-15  Akim Demaille  <address@hidden>
+
        texi2dvi: fix comments.
        * bin/texi2dvi: here.
 

Index: util/texi2dvi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -b -r1.148 -r1.149
--- util/texi2dvi       15 Apr 2009 14:57:59 -0000      1.148
+++ util/texi2dvi       15 Apr 2009 14:59:00 -0000      1.149
@@ -1,6 +1,6 @@
 #! /bin/sh
 # texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
-# $Id: texi2dvi,v 1.148 2009/04/15 14:57:59 akim Exp $
+# $Id: texi2dvi,v 1.149 2009/04/15 14:59:00 akim Exp $
 #
 # Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003,
 # 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
@@ -33,7 +33,7 @@
 set -e
 
 # This string is expanded automatically when this file is checked out.
-rcs_revision='$Revision: 1.148 $'
+rcs_revision='$Revision: 1.149 $'
 rcs_version=`set - $rcs_revision; echo $2`
 program=`echo $0 | sed -e 's!.*/!!'`
 
@@ -48,7 +48,7 @@
 catcode_special=true
 debug=false
 escape="\\"
-expand=         # t for expansion via makeinfo
+expand=false    # true for expansion via makeinfo
 includes=
 line_error=true # Pass --file-line-error to TeX.
 oname=          # --output
@@ -1219,7 +1219,7 @@
 
   # Unless required by the user, makeinfo expansion is wanted only
   # if texinfo.tex is too old.
-  if test "$expand" = t; then
+  if $expand; then
     makeinfo=${MAKEINFO:-makeinfo}
   else
     # Check if texinfo.tex performs macro expansion by looking for
@@ -1559,7 +1559,7 @@
         --build-dir)  shift; build_dir=$1; build_mode=tidy;;
     -c | --clean) build_mode=clean;;
     -D | --debug) debug=true;;
-    -e | -E | --expand) expand=t;;
+    -e | -E | --expand) expand=true;;
     -h | --help) usage;;
     -I)   shift; list_concat_dirs includes "$1";;
     -l | --lang | --language) shift; set_language=$1;;




reply via email to

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