diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-01-23 08:08:21 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-01-23 08:08:21 +0000 |
commit | b389cd59a68dc7bb07914606f05170dbcdc539e5 (patch) | |
tree | d53ac14ca8076a587e643c52388e566933e0db5f /Build/source/texk/web2c/ptexdir | |
parent | 22efddb6662307ee6480c4fa9c3944f92f137907 (diff) |
tftopl, vftovp: Add missing space in error message
git-svn-id: svn://tug.org/texlive/trunk@25178 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/ptexdir')
-rw-r--r-- | Build/source/texk/web2c/ptexdir/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/ptexdir/ptftopl.ch | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/Build/source/texk/web2c/ptexdir/ChangeLog b/Build/source/texk/web2c/ptexdir/ChangeLog index 6348ec6e327..dbf239c0316 100644 --- a/Build/source/texk/web2c/ptexdir/ChangeLog +++ b/Build/source/texk/web2c/ptexdir/ChangeLog @@ -1,3 +1,7 @@ +2012-01-22 Peter Breitenlohner <peb@mppmu.mpg.de> + + * ptftopl.ch: Adapt to missing space added in ../tftopl.ch. + 2012-01-07 Peter Breitenlohner <peb@mppmu.mpg.de> * pdvitype.ch: Remove an unnecessary change in previous. diff --git a/Build/source/texk/web2c/ptexdir/ptftopl.ch b/Build/source/texk/web2c/ptexdir/ptftopl.ch index a4e0937c723..691b87506de 100644 --- a/Build/source/texk/web2c/ptexdir/ptftopl.ch +++ b/Build/source/texk/web2c/ptexdir/ptftopl.ch @@ -116,7 +116,7 @@ else @x [21] l.485 - pTeX: ng has to be treated specially if (bc>ec+1)or(ec>255) then abort('The character code range ', @.The character code range...@> - bc:1,'..',ec:1,'is illegal!'); + bc:1,'..',ec:1,' is illegal!'); if (nw=0)or(nh=0)or(nd=0)or(ni=0) then abort('Incomplete subfiles for character dimensions!'); @.Incomplete subfiles...@> @@ -130,7 +130,7 @@ case file_format of tfm_format: begin if (bc>ec+1)or(ec>255) then abort('The character code range ', @.The character code range...@> - bc:1,'..',ec:1,'is illegal!'); + bc:1,'..',ec:1,' is illegal!'); if (nw=0)or(nh=0)or(nd=0)or(ni=0) then abort('Incomplete subfiles for character dimensions!'); @.Incomplete subfiles...@> @@ -143,7 +143,7 @@ tfm_format: begin jfm_format,vfm_format: begin ng:=ne; if (bc>ec+1)or(ec>255)or(bc<>0) then abort('The character code range ', @.The character code range...@> - bc:1,'..',ec:1,'is illegal!'); + bc:1,'..',ec:1,' is illegal!'); if (nw=0)or(nh=0)or(nd=0)or(ni=0) then abort('Incomplete subfiles for character dimensions!'); @.Incomplete subfiles...@> |