summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/texdoc/texdoc.tlu
blob: 90b507e283a2ef452c77f974f65d2c13e8b86ec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env texlua

-- texdoc.tlu: small wrapper around main.tlu
-- (makes it easier to install a new version of texdoc in TEXMFHOME)
--
-- The TeX Live team, GPLv3, see texdoclib.tlu for details

kpse.set_program_name(arg[-1], 'texdoc')
require('texdoc.main')

-- vim: ft=lua: