diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-09-29 12:10:03 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-09-29 12:10:03 +0000 |
commit | 0323ce1ea85d7370460950d588eb4211013a3fd7 (patch) | |
tree | 525fd73c1aae68dfb17bdfa72ec3b3427a77dad0 /Build/source/texk/cjkutils/sjisconv.c | |
parent | 72013d593ef332228ec66fa5183787703d6641b3 (diff) |
cjkutils: bug fixes; add simple test cases
git-svn-id: svn://tug.org/texlive/trunk@24133 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/cjkutils/sjisconv.c')
-rw-r--r-- | Build/source/texk/cjkutils/sjisconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/cjkutils/sjisconv.c b/Build/source/texk/cjkutils/sjisconv.c index 3fcfbe1ae33..a844dd101eb 100644 --- a/Build/source/texk/cjkutils/sjisconv.c +++ b/Build/source/texk/cjkutils/sjisconv.c @@ -16,7 +16,7 @@ fprintf(stdout,"\\def\\CJKpreproc{%s}",banner); ch= fgetc(stdin); while(!feof(stdin)) -{if((ch>=0x81&&ch<=0x9F)||(ch>=0xE0&&ch<=0xEF)) +{if((ch>=0x81&&ch<=0x9F)||(ch>=0xE0&&ch<=0xFC)) {fprintf(stdout,"\177%c\177",ch); ch= fgetc(stdin); |