diff options
author | Luigi Scarso <luigi.scarso@gmail.com> | 2024-03-19 16:55:48 +0000 |
---|---|---|
committer | Luigi Scarso <luigi.scarso@gmail.com> | 2024-03-19 16:55:48 +0000 |
commit | a184f84d4ff7999c500728355c9e22c32ebf0a33 (patch) | |
tree | 1cd87b40cf14a5befc3692ce9e8e7d92dd10e3c1 /Build/source | |
parent | e28f6cfdfeb00b211b9766a06f4025f76a3aef17 (diff) |
Fixed wrong initialization of startup_filename (thanks to Wang Weixuan).
git-svn-id: svn://tug.org/texlive/trunk@70703 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/lua/luainit.c | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/luatexdir/luatex.c | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/luatexdir/luatex_svnversion.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/Build/source/texk/web2c/luatexdir/lua/luainit.c b/Build/source/texk/web2c/luatexdir/lua/luainit.c index 4d80d7e4ad8..daad05fc38b 100644 --- a/Build/source/texk/web2c/luatexdir/lua/luainit.c +++ b/Build/source/texk/web2c/luatexdir/lua/luainit.c @@ -387,7 +387,7 @@ static void parse_options(int ac, char **av) lua_offset = optind; luainit = 1; } else if (ARGUMENT_IS("lua")) { - startup_filename = optarg; + startup_filename = xstrdup(optarg); lua_offset = (optind - 1); luainit = 1; #ifdef LuajitTeX @@ -499,7 +499,7 @@ static void parse_options(int ac, char **av) initversionstring(&versions); print_version_banner(); /* *INDENT-OFF* */ - puts("\n\nThe LuaTeX team is Hans Hagen, Hartmut Henkel, Taco Hoekwater, Luigi Scarso.\n\n" + puts("\n\nThe luatex project is a ConTeXt community project by\nHans Hagen, Hartmut Henkel, Taco Hoekwater and Luigi Scarso.\nThe current maintainers are Hans Hagen and Luigi Scarso.\n\n" MyName " merges and builds upon (parts of) the code from these projects:\n\n" "tex : Donald Knuth\n" "etex : Peter Breitenlohner, Phil Taylor and friends\n" diff --git a/Build/source/texk/web2c/luatexdir/luatex.c b/Build/source/texk/web2c/luatexdir/luatex.c index bfe87ba1b22..0b4158518fa 100644 --- a/Build/source/texk/web2c/luatexdir/luatex.c +++ b/Build/source/texk/web2c/luatexdir/luatex.c @@ -33,8 +33,8 @@ */ int luatex_version = 118; -int luatex_revision = '0'; -const char *luatex_version_string = "1.18.0"; +int luatex_revision = '1'; +const char *luatex_version_string = "1.18.1"; const char *engine_name = my_name; #include <kpathsea/c-ctype.h> diff --git a/Build/source/texk/web2c/luatexdir/luatex_svnversion.h b/Build/source/texk/web2c/luatexdir/luatex_svnversion.h index fe390ab59e5..29fa2dfb368 100644 --- a/Build/source/texk/web2c/luatexdir/luatex_svnversion.h +++ b/Build/source/texk/web2c/luatexdir/luatex_svnversion.h @@ -1,4 +1,4 @@ #ifndef luatex_svn_revision_h #define luatex_svn_revision_h -#define luatex_svn_revision 7611 +#define luatex_svn_revision 7616 #endif |