diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-04-04 07:22:33 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-04-04 07:22:33 +0000 |
commit | 324c500b9b31e7e3c61ff592955e3203ec8f42db (patch) | |
tree | fc453c66833c0f6dd642a5c64001101b9caadff5 | |
parent | 19a894c5ca9f078006980249a69dece268a1de14 (diff) |
e-pTeX: Yet an other bug fix from Hironori Kitagawa
git-svn-id: svn://tug.org/texlive/trunk@21952 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/web2c/eptexdir/ChangeLog.TL | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/eptexdir/eptex.ech | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/eptexdir/ChangeLog.TL b/Build/source/texk/web2c/eptexdir/ChangeLog.TL index d2a12c8b640..0cb4282b1f4 100644 --- a/Build/source/texk/web2c/eptexdir/ChangeLog.TL +++ b/Build/source/texk/web2c/eptexdir/ChangeLog.TL @@ -1,6 +1,10 @@ ChangeLog.TL: TeX Live (TL) changes for e-pTeX ============================================== +2011-04-01 Hironori Kitagawa <h_kitagawa2001@yahoo.co.jp> + + * eptex.ech: Yet an other Bug fix. + 2011-03-31 Hironori Kitagawa <h_kitagawa2001@yahoo.co.jp> * eptex.ech: Bug fix and TeX formatting. diff --git a/Build/source/texk/web2c/eptexdir/eptex.ech b/Build/source/texk/web2c/eptexdir/eptex.ech index f81427e64ed..63e799bf088 100644 --- a/Build/source/texk/web2c/eptexdir/eptex.ech +++ b/Build/source/texk/web2c/eptexdir/eptex.ech @@ -80,7 +80,7 @@ if not is_char_node(tx) then while q<>tx do begin if is_char_node(q) then r:=q else if (type(q)<>disp_node)and - ((type(tx)<>math_node)or(subtype(tx)<>end_M_code)) then r:=q; + ((type(q)<>math_node)or(subtype(q)<>end_M_code)) then r:=q; q:=link(q); end; tx:=r; |