diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2017-09-06 06:21:53 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2017-09-06 06:21:53 +0000 |
commit | 5dce43f5f2481a42443b1d783213adbbcfb68956 (patch) | |
tree | 51e5e1dc022a324741e3c985a9c6e4dddc74ea7f /Build | |
parent | b605509f44681aa30a7bb71d5700f01b09c29fe9 (diff) |
luatex.c: typo
git-svn-id: svn://tug.org/texlive/trunk@45227 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/luatex.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/luatexdir/luatex.c b/Build/source/texk/web2c/luatexdir/luatex.c index c6ddb639192..3041e027240 100644 --- a/Build/source/texk/web2c/luatexdir/luatex.c +++ b/Build/source/texk/web2c/luatexdir/luatex.c @@ -624,7 +624,8 @@ void topenin(void) seems more in keeping with actual command line processing. */ #define IS_SPC_OR_EOL(c) ((c) == ' ' || (c) == '\r' || (c) == '\n') for (--last; last >= first && IS_SPC_OR_EOL (buffer[last]); --last) - last++; + ; + last++; /* One more time, this time converting to TeX's internal character representation. */ |