1998-05-15  Ulrich Drepper  <drepper@cygnus.com>

	* iconvdata/iso-2022-kr.c (PREPARE_LOOP): Use correct variable to
	point to output buffer.
This commit is contained in:
Ulrich Drepper 1998-05-15 21:56:41 +00:00
parent e3e0a182a7
commit c9fc0e2228
2 changed files with 11 additions and 6 deletions

View File

@ -1,3 +1,8 @@
1998-05-15 Ulrich Drepper <drepper@cygnus.com>
* iconvdata/iso-2022-kr.c (PREPARE_LOOP): Use correct variable to
point to output buffer.
1998-05-15 21:07 Ulrich Drepper <drepper@cygnus.com> 1998-05-15 21:07 Ulrich Drepper <drepper@cygnus.com>
* iconv/gconv.h (gconv_step_data): Add new fields invocation_counter * iconv/gconv.h (gconv_step_data): Add new fields invocation_counter

View File

@ -28,7 +28,7 @@
/* This makes obvious what everybody knows: 0x1b is the Esc character. */ /* This makes obvious what everybody knows: 0x1b is the Esc character. */
#define ESC 0x1b #define ESC 0x1b
/* The shift sequences for this charset (we it does not use ESC). */ /* The shift sequences for this charset (it does not use ESC). */
#define SI 0x0f #define SI 0x0f
#define SO 0x0e #define SO 0x0e
@ -48,13 +48,13 @@
if (!FROM_DIRECTION && !data->internal_use && data->invocation_counter == 0)\ if (!FROM_DIRECTION && !data->internal_use && data->invocation_counter == 0)\
{ \ { \
/* Emit the designator sequence. */ \ /* Emit the designator sequence. */ \
if (outptr + 4 > outend) \ if (outbuf + 4 > outend) \
return GCONV_FULL_OUTPUT; \ return GCONV_FULL_OUTPUT; \
\ \
*outptr++ = '\x1b'; \ *outbuf++ = ESC; \
*outptr++ = '\x24'; \ *outbuf++ = '$'; \
*outptr++ = '\x29'; \ *outbuf++ = ')'; \
*outptr++ = '\x43'; \ *outbuf++ = 'C'; \
} }
#define EXTRA_LOOP_ARGS , set #define EXTRA_LOOP_ARGS , set