diff options
author | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2020-06-15 11:27:22 +0000 |
---|---|---|
committer | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2020-06-15 11:27:22 +0000 |
commit | 8300efe29160315794b910f76b730a0012ee4aae (patch) | |
tree | a27b805d4518d966f47cabd2f3a5cf7b9b2d00fa /Build | |
parent | 49bbb921d593c99e17222554dc1a665981b04814 (diff) |
gftodvi.ch: Suppress a compiler warning
git-svn-id: svn://tug.org/texlive/trunk@55554 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/web2c/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/gftodvi.ch | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index 7fa5fd62fee..4012a3faad7 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,3 +1,7 @@ +2020-06-15 Hironobu Yamashita <h.y.acetaminophen@gmail.com> + + * gftodvi.ch: Suppress a compiler warning. + 2020-06-10 Andreas Scherer <https://ascherer.github.io> * bibtex.ch, diff --git a/Build/source/texk/web2c/gftodvi.ch b/Build/source/texk/web2c/gftodvi.ch index 07a5ed024bb..a66511b1ed6 100644 --- a/Build/source/texk/web2c/gftodvi.ch +++ b/Build/source/texk/web2c/gftodvi.ch @@ -332,7 +332,7 @@ else begin if (c=">")or(c=":") then end else if (c=".")and(ext_delimiter=0) then ext_delimiter:=pool_ptr; @y -else begin if (c="/") then +else begin if c="/" then begin area_delimiter:=pool_ptr; ext_delimiter:=0; end else if c="." then ext_delimiter:=pool_ptr; |