diff options
author | Taco Hoekwater <taco@elvenkind.com> | 2012-04-03 07:26:44 +0000 |
---|---|---|
committer | Taco Hoekwater <taco@elvenkind.com> | 2012-04-03 07:26:44 +0000 |
commit | 406664ddaa5ec2cc4fab778dd3c29df82ecbd4d7 (patch) | |
tree | 94d6983b32d4793550a24e917faae33cc4f30206 /Build/source/texk/web2c/luatexdir/lua | |
parent | 455f995821eadf5d1397f0f8682596a60648089f (diff) |
quick hack to make luatex print banner that ends with '(TeX Live 2012)'
git-svn-id: svn://tug.org/texlive/trunk@25836 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/lua')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/lua/luainit.w | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/Build/source/texk/web2c/luatexdir/lua/luainit.w b/Build/source/texk/web2c/luatexdir/lua/luainit.w index 9c03691d8d7..6d290d04fe7 100644 --- a/Build/source/texk/web2c/luatexdir/lua/luainit.w +++ b/Build/source/texk/web2c/luatexdir/lua/luainit.w @@ -738,16 +738,9 @@ void lua_initialize(int ac, char **av) argc = ac; argv = av; - if (luatex_svn < 0) { - if (asprintf(&banner, "This is LuaTeX, Version %s-%d", - luatex_version_string, luatex_date_info) < 0) { - exit(EXIT_FAILURE); - } - } else { - if (asprintf(&banner, "This is LuaTeX, Version %s-%d (rev %d)", - luatex_version_string, luatex_date_info, luatex_svn) < 0) { - exit(EXIT_FAILURE); - } + if (asprintf(&banner, "This is LuaTeX, Version %s-%d (TeX Live 2012)", + luatex_version_string, luatex_date_info) < 0) { + exit(EXIT_FAILURE); } ptexbanner = banner; |