diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2021-12-17 04:07:06 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2021-12-17 04:07:06 +0000 |
commit | f0766d14d2d278ee0a6479b62a45ec03461933d5 (patch) | |
tree | 50bc767cf15f2d59c2b86e164def845176704180 /Build | |
parent | d33219b3759b89a722b51ef4cd53c94c7bfcb423 (diff) |
typo
git-svn-id: svn://tug.org/texlive/trunk@61334 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/web2c/hitexdir/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/hitexdir/hitex.w | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/hitexdir/ChangeLog b/Build/source/texk/web2c/hitexdir/ChangeLog index 47a628d7115..fe6358650c6 100644 --- a/Build/source/texk/web2c/hitexdir/ChangeLog +++ b/Build/source/texk/web2c/hitexdir/ChangeLog @@ -1,3 +1,7 @@ +2021-12-17 Akira Kakuto <kakuto@jcom.zaq.ne.jp> + + * hitex.w: Typo. + 2021-12-11 Karl Berry <karl@freefriends.org> * am/hitex.am (hishrink_OBJECTS, hitex_OBJECTS): depend on diff --git a/Build/source/texk/web2c/hitexdir/hitex.w b/Build/source/texk/web2c/hitexdir/hitex.w index b338dde9351..0896164d255 100644 --- a/Build/source/texk/web2c/hitexdir/hitex.w +++ b/Build/source/texk/web2c/hitexdir/hitex.w @@ -33833,7 +33833,7 @@ static void usage_help(void) @t\qquad@>"\t enable extensions required for LaTeX\n"@/ " -ini "@/ @t\qquad@>"\t be initex for dumping formats; this is\n"@/ - @t\qquad@>"\t\t\t also true if the program name is `kinitex'\n"@/ + @t\qquad@>"\t\t\t also true if the program name is `hinitex'\n"@/ " -progname=STRING "@/ @t\qquad@>"\t set program (and fmt) name to STRING\n"@/ " -fmt=FMTNAME "@/ @@ -34572,6 +34572,10 @@ builds of documents. static time_t start_time = ((time_t)-1); static char *source_date_epoch,*force_source_date; +#if defined(_MSC_VER) && _MSC_VER < 1800 +#define strtoull _strtoui64 +#endif + static struct tm *tl_now(void) {@+struct tm *gmt; time_t t; |