[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
texinfo update (Sun Feb 17 19:23:02 EST 2008)
From: |
Karl Berry |
Subject: |
texinfo update (Sun Feb 17 19:23:02 EST 2008) |
Date: |
Sun, 17 Feb 2008 19:23:05 -0500 |
Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.820
retrieving revision 1.821
diff -u -r1.820 -r1.821
--- ChangeLog 17 Feb 2008 19:07:58 -0000 1.820
+++ ChangeLog 18 Feb 2008 00:15:27 -0000 1.821
@@ -1,5 +1,7 @@
2008-02-17 Karl Berry <address@hidden>
+ * util/texi2dvi: path_sep is : on djgpp too. From Eli Z.
+
* makeinfo/makeinfo.c: typos in comments.
* makeinfo/cmds.c (cm_direntry): call close_single_paragraph,
@@ -9,7 +11,7 @@
2008-02-16 Karl Berry <address@hidden>
- * util/texi2dvi: path_sep is ; on mingw as well as cygwin.
+ * util/texi2dvi: path_sep is : on mingw as well as cygwin.
Report from: FX Coudert, 16 Feb 2008 15:43:15.
* makeinfo/cmds.c (cm_cite): avoid double apostrophe in
Index: util/texi2dvi
===================================================================
RCS file: /sources/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- util/texi2dvi 16 Feb 2008 22:58:27 -0000 1.108
+++ util/texi2dvi 18 Feb 2008 00:15:28 -0000 1.109
@@ -1,6 +1,6 @@
#! /bin/sh
# texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
-# $Id: texi2dvi,v 1.108 2008/02/16 22:58:27 karl Exp $
+# $Id: texi2dvi,v 1.109 2008/02/18 00:15:28 karl Exp $
#
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
@@ -33,7 +33,7 @@
set -e
# This string is expanded by rcs automatically when this file is checked out.
-rcs_revision='$Revision: 1.108 $'
+rcs_revision='$Revision: 1.109 $'
rcs_version=`set - $rcs_revision; echo $2`
program=`echo $0 | sed -e 's!.*/!!'`
version="texi2dvi (GNU Texinfo 4.11) $rcs_version
@@ -175,10 +175,10 @@
IFS=" $newline"
# Systems which define $COMSPEC or $ComSpec use semicolons to separate
-# directories in TEXINPUTS -- except for Cygwin, where COMSPEC might be
-# inherited, but : is used.
+# directories in TEXINPUTS -- except for Cygwin et al., where COMSPEC
+# might be inherited, but : is used.
if test -n "$COMSPEC$ComSpec" \
- && uname | $EGREP -iv 'cygwin|mingw' >/dev/null; then
+ && uname | $EGREP -iv 'cygwin|mingw|djgpp' >/dev/null; then
path_sep=";"
else
path_sep=":"
P ChangeLog
P util/texi2dvi
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- texinfo update (Sun Feb 17 19:23:02 EST 2008),
Karl Berry <=