[KoCo-CVS] [Commit] iconvcodec _iconv_codec.c
Brought to you by:
perky
From: Hye-Shik C. <pe...@us...> - 2003-04-20 21:40:08
|
perky 03/04/20 14:40:06 Modified: . _iconv_codec.c Log: Python/win32 declares Py_UNICODE_USING as null macro Revision Changes Path 1.4 +2 -2 iconvcodec/_iconv_codec.c Index: _iconv_codec.c =================================================================== RCS file: /cvsroot/koco/iconvcodec/_iconv_codec.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- _iconv_codec.c 20 Apr 2003 20:45:34 -0000 1.3 +++ _iconv_codec.c 20 Apr 2003 21:40:05 -0000 1.4 @@ -24,14 +24,14 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: _iconv_codec.c,v 1.3 2003/04/20 20:45:34 perky Exp $ + * $Id: _iconv_codec.c,v 1.4 2003/04/20 21:40:05 perky Exp $ */ #include "Python.h" #include <iconv.h> #include "_iconv_codec_compat.h" -#if Py_USING_UNICODE +#ifdef Py_USING_UNICODE # if Py_UNICODE_SIZE == 2 # define UCS_N "UCS-2" # define MBENCODED_LENGTH_MAX 4 |