[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
texinfo update (Mon Jun 26 05:52:01 EDT 2006)
From: |
Karl Berry |
Subject: |
texinfo update (Mon Jun 26 05:52:01 EDT 2006) |
Date: |
Mon, 26 Jun 2006 05:52:03 -0400 |
Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.616
retrieving revision 1.617
diff -u -r1.616 -r1.617
--- ChangeLog 24 Jun 2006 23:51:03 -0000 1.616
+++ ChangeLog 26 Jun 2006 09:29:41 -0000 1.617
@@ -1,3 +1,7 @@
+2006-06-26 Akim Demaille <address@hidden>
+
+ * util/texi2dvi (generated_files_get): Call uniq.
+
2006-06-07 <address@hidden>
* Makefile.am (AUTOMAKE_OPTIONS): Require Automake 1.9, since
Index: doc/texi2dvi.1
===================================================================
RCS file: /sources/texinfo/texinfo/doc/texi2dvi.1,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- doc/texi2dvi.1 19 Jun 2006 23:12:34 -0000 1.54
+++ doc/texi2dvi.1 26 Jun 2006 09:29:41 -0000 1.55
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35.
-.TH TEXI2DVI "1" "June 2006" "texi2dvi 1.84" "User Commands"
+.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36.
+.TH TEXI2DVI "1" "June 2006" "texi2dvi 1.85" "User Commands"
.SH NAME
texi2dvi \- convert Texinfo documents to DVI
.SH SYNOPSIS
@@ -92,7 +92,7 @@
.SS "Build modes:"
.TP
\fB\-\-build\fR=\fIMODE\fR
-specify the treatment of auxiliary files [local]
+specify the treatment of auxiliary files [tidy]
.TP
\fB\-\-tidy\fR
same as \fB\-\-build\fR=\fItidy\fR
@@ -103,7 +103,7 @@
\fB\-\-build\-dir\fR=\fIDIR\fR
specify where the tidy compilation is performed;
implies \fB\-\-tidy\fR;
-defaults to TEXI2DVI_BUILD_DIRECTORY [.]
+defaults to TEXI2DVI_BUILD_DIRECTORY [/tmp/akim.t2d]
.TP
\fB\-\-mostly\-clean\fR
remove the auxiliary files and directories
@@ -139,7 +139,7 @@
.IP
\- clutter can be reduced to zero using \fB\-\-build\-dir=\fR/tmp/$USER.t2d or
.HP
-\fB\-\-build\-dir=\fR/u/karl/.t2d.
+\fB\-\-build\-dir=\fR/home/akim/.t2d.
.IP
\- the output file is updated after every succesful TeX run, for
.TP
Index: doc/version.texi
===================================================================
RCS file: /sources/texinfo/texinfo/doc/version.texi,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- doc/version.texi 18 Jun 2006 23:39:43 -0000 1.41
+++ doc/version.texi 26 Jun 2006 09:29:41 -0000 1.42
@@ -1,4 +1,4 @@
address@hidden UPDATED 1 June 2006
address@hidden UPDATED 26 June 2006
@set UPDATED-MONTH June 2006
@set EDITION 4.8.90
@set VERSION 4.8.90
Index: util/texi2dvi
===================================================================
RCS file: /sources/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- util/texi2dvi 21 Jun 2006 08:18:09 -0000 1.85
+++ util/texi2dvi 26 Jun 2006 09:29:41 -0000 1.86
@@ -1,6 +1,6 @@
#! /bin/sh
# texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
-# $Id: texi2dvi,v 1.85 2006/06/21 08:18:09 akim Exp $
+# $Id: texi2dvi,v 1.86 2006/06/26 09:29:41 akim Exp $
#
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
@@ -35,7 +35,7 @@
set -e
# This string is expanded by rcs automatically when this file is checked out.
-rcs_revision='$Revision: 1.85 $'
+rcs_revision='$Revision: 1.86 $'
rcs_version=`set - $rcs_revision; echo $2`
program=`echo $0 | sed -e 's!.*/!!'`
version="texi2dvi (GNU Texinfo 4.8) $rcs_version
@@ -637,7 +637,9 @@
echo $file
fi
done |
- sort
+ sort |
+ # Some files are opened several times, e.g., listings.sty's *.vrb.
+ uniq
}
P ChangeLog
P doc/texi2dvi.1
P doc/version.texi
P util/texi2dvi
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- texinfo update (Mon Jun 26 05:52:01 EDT 2006),
Karl Berry <=