[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[5649] THUMBPDF_CMD instead of THUMBPDF
From: |
karl |
Subject: |
[5649] THUMBPDF_CMD instead of THUMBPDF |
Date: |
Sun, 08 Jun 2014 22:02:27 +0000 |
Revision: 5649
http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=5649
Author: karl
Date: 2014-06-08 22:02:26 +0000 (Sun, 08 Jun 2014)
Log Message:
-----------
THUMBPDF_CMD instead of THUMBPDF
Modified Paths:
--------------
trunk/ChangeLog
trunk/NEWS
trunk/util/texi2dvi
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2014-06-08 19:27:34 UTC (rev 5648)
+++ trunk/ChangeLog 2014-06-08 22:02:26 UTC (rev 5649)
@@ -1,3 +1,8 @@
+2014-06-08 Karl Berry <address@hidden>
+
+ * util/texi2dvi: use THUMBPDF_CMD instead of THUMBPDF.
+ Report/suggestion from Kurt Hornik, 8 Jun 2014 09:49:47.
+
2014-06-08 Gavin Smith <address@hidden>
* info/info.c (get_initial_file): For inexact dir match, discard
@@ -26,6 +31,7 @@
* doc/info.texi (Help-^L): "mode line", "screenful",
stand-alone and Emacs Info both use the mode line.
Use x instead of weird C-x 0 to get rid of help msg.
+ Suggestion from Benno Schulenberg, 07 May 2014 23:06:54.
* doc/info-stnd.texi: "mode line", "screenful".
Modified: trunk/NEWS
===================================================================
--- trunk/NEWS 2014-06-08 19:27:34 UTC (rev 5648)
+++ trunk/NEWS 2014-06-08 22:02:26 UTC (rev 5649)
@@ -51,6 +51,10 @@
. handle compressed input file names containing spaces.
. exit successfully if --remove is given and the dir file does not exist.
+* texi2dvi:
+ . look for the environment variable THUMBPDF_CMD instead of THUMBPDF,
+ since thumbpdf itself has used THUMBPDF for options since 2000.
+
5.2 (26 September 2013)
* Language:
. new commands @inlinefmtifelse, @inlineifset, @inlineifclear, for
Modified: trunk/util/texi2dvi
===================================================================
--- trunk/util/texi2dvi 2014-06-08 19:27:34 UTC (rev 5648)
+++ trunk/util/texi2dvi 2014-06-08 22:02:26 UTC (rev 5649)
@@ -392,7 +392,7 @@
directories to consider.
The values of the BIBER, BIBTEX, DVIPDF, DVIPS, HEVEA, LATEX, MAKEINDEX,
-MAKEINFO, PDFLATEX, PDFTEX, T4HT, TEX, TEX4HT, TEXINDEX, and THUMBPDF
+MAKEINFO, PDFLATEX, PDFTEX, T4HT, TEX, TEX4HT, TEXINDEX, and THUMBPDF_CMD
environment variables are used to run those commands, if they are set.
Regarding --dvipdf, if DVIPDF is not set in the environment, the
@@ -1200,7 +1200,7 @@
&& test -r "$in_noext.log" \
&& grep 'thumbpdf\.sty' "$in_noext.log" >&6 2>&1; \
then
- thumbpdf=${THUMBPDF:-thumbpdf}
+ thumbpdf=${THUMBPDF_CMD:-thumbpdf}
thumbcmd="$thumbpdf $in_dir/$in_noext"
verbose "Running $thumbcmd ..."
if $thumbcmd >&5; then
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [5649] THUMBPDF_CMD instead of THUMBPDF,
karl <=