diff options
author | Karl Berry <karl@freefriends.org> | 2020-02-02 22:44:20 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-02-02 22:44:20 +0000 |
commit | 57bf353019ba7087c6b8ab64205abb88139ba4c4 (patch) | |
tree | fd5d11df7c68334269283b00e29494e307a7b525 /Master/texmf-dist/scripts/texdoc/texdoclib-const.tlu | |
parent | 698edf65b4e683cfffd9f8d442edd59683f48d1f (diff) |
texdoc (2feb20)
git-svn-id: svn://tug.org/texlive/trunk@53643 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/texdoc/texdoclib-const.tlu')
-rwxr-xr-x | Master/texmf-dist/scripts/texdoc/texdoclib-const.tlu | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/texmf-dist/scripts/texdoc/texdoclib-const.tlu b/Master/texmf-dist/scripts/texdoc/texdoclib-const.tlu index 5d34bed3f67..9562122d38a 100755 --- a/Master/texmf-dist/scripts/texdoc/texdoclib-const.tlu +++ b/Master/texmf-dist/scripts/texdoc/texdoclib-const.tlu @@ -4,7 +4,7 @@ -- use an empty environment that will become texdoc_env.C (see EOF) local constants = {} -local kpse = kpse +local kpse = kpse or require 'kpse' local setfenv = setfenv local texdoc_env @@ -21,14 +21,14 @@ end -- progname and version fullname = kpse.find_file('texdoc/texdoclib', 'lua') progname = 'Texdoc' -version = '3.1' -release_date = '2019-03-28' +version = '3.2' +release_date = '2020-02-02' -- make sure to update setup_config_from_cl() accordingly -- and set a default value in setup_config_from_defaults() if relevant usage_msg = [[ -Usage: texdoc [OPTION...] NAME... - or: texdoc [OPTION...] ACTION +Usage: texdoc [OPTION]... NAME... + or: texdoc [OPTION]... ACTION Try to find appropriate TeX documentation for the specified NAME(s). Alternatively, perform the given ACTION and exit. @@ -63,7 +63,7 @@ Repository: <https://github.com/TeX-Live/texdoc> Please email bugs to <texdoc@tug.org>.]] copyright_msg = [[ -Copyright 2008 Manuel Pégourié-Gonnard, Takuto Asakura, and the TeX Live Team. +Copyright 2008-2020 Manuel Pégourié-Gonnard, Takuto Asakura, the TeX Live Team. License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it.]] |