texinfo-commits
[Top][All Lists]
Advanced

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

[6632] texi2dvi path sep for mingw, djgpp


From: Gavin D. Smith
Subject: [6632] texi2dvi path sep for mingw, djgpp
Date: Fri, 18 Sep 2015 13:06:01 +0000

Revision: 6632
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=6632
Author:   gavin
Date:     2015-09-18 13:06:00 +0000 (Fri, 18 Sep 2015)
Log Message:
-----------
texi2dvi path sep for mingw, djgpp

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/util/texi2dvi

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2015-09-17 21:33:02 UTC (rev 6631)
+++ trunk/ChangeLog     2015-09-18 13:06:00 UTC (rev 6632)
@@ -1,9 +1,14 @@
-2015-09-16  Gavin Smith  <address@hidden>
+2015-09-18  Gavin Smith  <address@hidden>
 
+       * util/texi2dvi: Don't exempt mingw and djgpp from using ; as a 
+       path separator.  Suggested by Eli Zaretskii.
+
+2015-09-17  Gavin Smith  <address@hidden>
+
        * doc/info-stnd.texi (Invoking Info, Printing Nodes): Use @env 
        in index entries and in text for environment variables.
 
-2015-09-16  Gavin Smith  <address@hidden>
+2015-09-17  Gavin Smith  <address@hidden>
 
        * doc/texinfo.tex (\entry): Use a finite \rightskip to encourage
        more words onto the earlier lines.  Increase \linepenalty and
@@ -15,7 +20,7 @@
 
        (\initial): Move initial slightly to left.
 
-2015-09-16  Gavin Smith  <address@hidden>
+2015-09-17  Gavin Smith  <address@hidden>
 
        * util/texi2dvi (run_tex_suite): Call xref_files_changed right 
        after run_core_conversion to avoid one extra generation of the 
@@ -25,7 +30,7 @@
        file to avoid it being overwritten by run_core_conversion, and 
        so it can be checked by xref_files_changed.
 
-2015-09-16  Gavin Smith  <address@hidden>
+2015-09-17  Gavin Smith  <address@hidden>
 
        * doc/texinfo.tex (\entry): Store index entry in a \vtop to 
        allow something else to be added first.

Modified: trunk/util/texi2dvi
===================================================================
--- trunk/util/texi2dvi 2015-09-17 21:33:02 UTC (rev 6631)
+++ trunk/util/texi2dvi 2015-09-18 13:06:00 UTC (rev 6632)
@@ -86,10 +86,10 @@
 : ${EGREP=egrep}
 
 # Systems which define $COMSPEC or $ComSpec use semicolons to separate
-# directories in TEXINPUTS -- except for Cygwin et al., where COMSPEC
+# directories in TEXINPUTS -- except for Cygwin, where COMSPEC
 # might be inherited, but : is used.
 if test -n "$COMSPEC$ComSpec" \
-   && uname | $EGREP -iv 'cygwin|mingw|djgpp' >/dev/null; then
+   && uname | $EGREP -iv 'cygwin' >/dev/null; then
   path_sep=";"
 else
   path_sep=":"




reply via email to

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