summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-12-12 22:56:27 +0000
committerKarl Berry <karl@freefriends.org>2013-12-12 22:56:27 +0000
commit6798abfc65601a62a920b9771c803c8ee2f2a8af (patch)
treecaafe524385d6f3355d5287328964b9feeacd01d /Build
parent58e9dc36a6522eda2493956fc1afa754ad91ed75 (diff)
pmx (12dec13)
git-svn-id: svn://tug.org/texlive/trunk@32395 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-xBuild/source/texk/texlive/linked_scripts/glossaries/makeglossaries4
-rwxr-xr-xBuild/source/texk/texlive/linked_scripts/pmx/pmx2pdf.lua14
2 files changed, 15 insertions, 3 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/glossaries/makeglossaries b/Build/source/texk/texlive/linked_scripts/glossaries/makeglossaries
index fc1082e176d..b1c6782ac70 100755
--- a/Build/source/texk/texlive/linked_scripts/glossaries/makeglossaries
+++ b/Build/source/texk/texlive/linked_scripts/glossaries/makeglossaries
@@ -2,7 +2,7 @@
# File : makeglossaries
# Author : Nicola Talbot
-# Version : 2.09 (2013/11/12)
+# Version : 2.10 (2013/12/01)
# Description: simple Perl script that calls makeindex or xindy.
# Intended for use with "glossaries.sty" (saves having to remember
# all the various switches)
@@ -729,6 +729,8 @@ sub xindy{
else
{
$langparam = "";
+ # v2.10 initialise $language to suppress warnings
+ $language = "";
}
# most languages work with xindy's default codepage, but
diff --git a/Build/source/texk/texlive/linked_scripts/pmx/pmx2pdf.lua b/Build/source/texk/texlive/linked_scripts/pmx/pmx2pdf.lua
index 5d257cf76f4..23a14bcf100 100755
--- a/Build/source/texk/texlive/linked_scripts/pmx/pmx2pdf.lua
+++ b/Build/source/texk/texlive/linked_scripts/pmx/pmx2pdf.lua
@@ -1,12 +1,12 @@
#!/usr/bin/env texlua
-VERSION = "0.2.1"
+VERSION = "0.3.1"
--[[
pmx2pdf: processes MusiXTeX files using pmxab as a pre-processor
(and deletes intermediate files)
- (c) Copyright 2011-12 Bob Tennent rdt@cs.queensu.ca
+ (c) Copyright 2011-13 Bob Tennent rdt@cs.queensu.ca
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
@@ -27,6 +27,11 @@ VERSION = "0.2.1"
--[[
ChangeLog:
+ version 0.3.1 2013-12-11 RDT
+ added -F fmt option
+
+ version 0.3.0 2013-12-10 RDT
+ added -c option to preprocess using pmxchords
version 0.2.1 2012-05-15 RDT
renamed to avoid possible name clashes
@@ -48,6 +53,8 @@ function usage()
print(" -s stop at dvi")
print(" -t stop at tex/mid")
print(" -i retain intermediate files")
+ print(" -c preprocess using pmxchords")
+ print(" -F fmt use fmt as the TeX processor")
print(" -f restore default processing")
end
@@ -100,6 +107,9 @@ repeat
tex = ""; dvi = ""; ps2pdf = ""
elseif this_arg == "-i" then
intermediate = 0
+ elseif this_arg == "-F" then
+ narg = narg+1
+ tex = arg[narg]
else
filename = this_arg
if filename ~= "" and string.sub(filename, -4, -1) == ".pmx" then