From 37ee4c01eb75c5130705d24fca672cc65bc31806 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Fri, 20 Mar 2020 21:25:54 +0000 Subject: musixtex (20mar20) git-svn-id: svn://tug.org/texlive/trunk@54431 c570f23f-e606-0410-a88d-b1316a301751 --- .../texlive/linked_scripts/musixtex/musixtex.lua | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) (limited to 'Build') diff --git a/Build/source/texk/texlive/linked_scripts/musixtex/musixtex.lua b/Build/source/texk/texlive/linked_scripts/musixtex/musixtex.lua index f591940b20f..5f600b99558 100755 --- a/Build/source/texk/texlive/linked_scripts/musixtex/musixtex.lua +++ b/Build/source/texk/texlive/linked_scripts/musixtex/musixtex.lua @@ -1,12 +1,12 @@ #!/usr/bin/env texlua -VERSION = "0.21" +VERSION = "0.22" --[[ musixtex.lua: processes MusiXTeX files using prepmx and/or pmxab and/or autosp as pre-processors (and deletes intermediate files) - (c) Copyright 2011-2018 Bob Tennent rdt@cs.queensu.ca + (c) Copyright 2011-2020 Bob Tennent rdt@cs.queensu.ca and Dirk Laurie dirk.laurie@gmail.com This program is free software; you can redistribute it and/or modify it @@ -29,6 +29,10 @@ VERSION = "0.21" ChangeLog: + version 0.22 2020-03-20 RDT + add -X option + add -version, --version, -help, --help options + version 0.21 2018-07-27 RDT add -P option. @@ -134,8 +138,8 @@ Usage: [texlua] musixtex.lua { option | basename[.mtx | .pmx | .aspc | .tex | . The normal route after preprocessing goes tex-dvi-ps-pdf, but shorter routes are also available, see the options. The default processing route for .tex files is etex-musixflx-etex. -Options: -v version - -h help +Options: -v, --version version + -h, --help help -l latex source -p direct tex-pdf (pdftex etc) -F fmt use fmt as the TeX processor @@ -146,6 +150,7 @@ Options: -v version -m stop at pmx -M prepmxx use prepmxx as the mtx preprocessor -A autospx use autospx as the aspc preprocessor + -X pmxabx use pmxabx as the pmx preprocessor -t stop at tex/mid -s stop at dvi -g stop at ps @@ -289,9 +294,9 @@ function report_error(filename) end function process_option(this_arg) - if this_arg == "-v" then + if this_arg == "-v" or this_arg == "-version" or this_arg == "--version" then os.exit(0) - elseif this_arg == "-h" then + elseif this_arg == "-h" or this_arg == "-help" or this_arg == "--help" then usage() os.exit(0) elseif this_arg == "-l" then @@ -345,6 +350,9 @@ function process_option(this_arg) elseif this_arg == "-P" then narg = narg+1 ps2pdf = arg[narg] + elseif this_arg == "-X" then + narg = narg+1 + pmx = arg[narg] else print("! Unknown option "..this_arg.." ignored") end -- cgit v1.2.3