[KoCo-CVS] [Commit] cjkcodecs/src/maps alg_jisx0201.h
Brought to you by:
perky
From: Hye-Shik C. <pe...@us...> - 2003-06-05 10:20:27
|
perky 03/06/05 03:20:26 Modified: src/maps alg_jisx0201.h Log: Untab to spaces. Revision Changes Path 1.4 +2 -2 cjkcodecs/src/maps/alg_jisx0201.h Index: alg_jisx0201.h =================================================================== RCS file: /cvsroot/koco/cjkcodecs/src/maps/alg_jisx0201.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- alg_jisx0201.h 5 Jun 2003 10:18:10 -0000 1.3 +++ alg_jisx0201.h 5 Jun 2003 10:20:25 -0000 1.4 @@ -1,4 +1,4 @@ -/* $Id: alg_jisx0201.h,v 1.3 2003/06/05 10:18:10 perky Exp $ */ +/* $Id: alg_jisx0201.h,v 1.4 2003/06/05 10:20:25 perky Exp $ */ #define JISX0201_R_ENCODE(c, assi) \ if ((c) < 0x5c) (assi) = (c); \ @@ -19,7 +19,7 @@ else if ((c) < 0x7e) (assi) = (c); \ else if ((c) == 0x7e) (assi) = 0x203e; #define JISX0201_K_DECODE(c, assi) \ - if ((c) >= 0xa1 && (c) <= 0xdf) \ + if ((c) >= 0xa1 && (c) <= 0xdf) \ (assi) = 0xfec0 + (c); #define JISX0201_DECODE(c, assi) \ JISX0201_R_DECODE(c, assi) \ |