mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
Update.
2004-03-07 Andreas Jaeger <aj@suse.de> * iconvdata/iso-2022-cn-ext.c (BODY): Remove cast used as lvalue. * iconvdata/tcvn5712-1.c (EMIT_SHIFT_TO_INIT): Likewise. * iconvdata/euc-jisx0213.c (EMIT_SHIFT_TO_INIT): Likewise. * iconvdata/shift_jisx0213.c (EMIT_SHIFT_TO_INIT): Likewise. * iconvdata/tscii.c (EMIT_SHIFT_TO_INIT): Likewise.
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
2004-03-07 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* iconvdata/iso-2022-cn-ext.c (BODY): Remove cast used as lvalue.
|
||||||
|
* iconvdata/tcvn5712-1.c (EMIT_SHIFT_TO_INIT): Likewise.
|
||||||
|
* iconvdata/euc-jisx0213.c (EMIT_SHIFT_TO_INIT): Likewise.
|
||||||
|
* iconvdata/shift_jisx0213.c (EMIT_SHIFT_TO_INIT): Likewise.
|
||||||
|
* iconvdata/tscii.c (EMIT_SHIFT_TO_INIT): Likewise.
|
||||||
|
|
||||||
2004-03-07 Ulrich Drepper <drepper@redhat.com>
|
2004-03-07 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* sysdeps/generic/ldsodefs.h: Move _dl_initial_searclist,
|
* sysdeps/generic/ldsodefs.h: Move _dl_initial_searclist,
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/* Conversion from and to EUC-JISX0213.
|
/* Conversion from and to EUC-JISX0213.
|
||||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Bruno Haible <bruno@clisp.org>, 2002.
|
Contributed by Bruno Haible <bruno@clisp.org>, 2002.
|
||||||
|
|
||||||
@@ -83,7 +83,8 @@
|
|||||||
if (__builtin_expect (outbuf + 4 <= outend, 1)) \
|
if (__builtin_expect (outbuf + 4 <= outend, 1)) \
|
||||||
{ \
|
{ \
|
||||||
/* Write out the last character. */ \
|
/* Write out the last character. */ \
|
||||||
*((uint32_t *) outbuf)++ = data->__statep->__count >> 3; \
|
*((uint32_t *) outbuf) = data->__statep->__count >> 3; \
|
||||||
|
outbuf += sizeof (uint32_t); \
|
||||||
data->__statep->__count = 0; \
|
data->__statep->__count = 0; \
|
||||||
} \
|
} \
|
||||||
else \
|
else \
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/* Conversion from and to Shift_JISX0213.
|
/* Conversion from and to Shift_JISX0213.
|
||||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Bruno Haible <bruno@clisp.org>, 2002.
|
Contributed by Bruno Haible <bruno@clisp.org>, 2002.
|
||||||
|
|
||||||
@@ -83,7 +83,8 @@
|
|||||||
if (__builtin_expect (outbuf + 4 <= outend, 1)) \
|
if (__builtin_expect (outbuf + 4 <= outend, 1)) \
|
||||||
{ \
|
{ \
|
||||||
/* Write out the last character. */ \
|
/* Write out the last character. */ \
|
||||||
*((uint32_t *) outbuf)++ = data->__statep->__count >> 3; \
|
*((uint32_t *) outbuf) = data->__statep->__count >> 3; \
|
||||||
|
outbuf += sizeof (uint32_t); \
|
||||||
data->__statep->__count = 0; \
|
data->__statep->__count = 0; \
|
||||||
} \
|
} \
|
||||||
else \
|
else \
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/* Conversion to and from TCVN5712-1.
|
/* Conversion to and from TCVN5712-1.
|
||||||
Copyright (C) 2001, 2002 Free Software Foundation, Inc.
|
Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@redhat.com>, 2001.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2001.
|
||||||
|
|
||||||
@@ -68,7 +68,8 @@
|
|||||||
if (__builtin_expect (outbuf + 4 <= outend, 1)) \
|
if (__builtin_expect (outbuf + 4 <= outend, 1)) \
|
||||||
{ \
|
{ \
|
||||||
/* Write out the last character. */ \
|
/* Write out the last character. */ \
|
||||||
*((uint32_t *) outbuf)++ = data->__statep->__count >> 3; \
|
*((uint32_t *) outbuf) = data->__statep->__count >> 3; \
|
||||||
|
outbuf += sizeof (uint32_t); \
|
||||||
data->__statep->__count = 0; \
|
data->__statep->__count = 0; \
|
||||||
} \
|
} \
|
||||||
else \
|
else \
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/* Conversion from and to TSCII.
|
/* Conversion from and to TSCII.
|
||||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Bruno Haible <bruno@clisp.org>, 2002.
|
Contributed by Bruno Haible <bruno@clisp.org>, 2002.
|
||||||
|
|
||||||
@@ -98,7 +98,8 @@
|
|||||||
break; \
|
break; \
|
||||||
} \
|
} \
|
||||||
/* Write out the pending character. */ \
|
/* Write out the pending character. */ \
|
||||||
*((uint32_t *) outbuf)++ = data->__statep->__count >> 8; \
|
*((uint32_t *) outbuf) = data->__statep->__count >> 8; \
|
||||||
|
outbuf += sizeof (uint32_t); \
|
||||||
/* Retrieve the successor state. */ \
|
/* Retrieve the successor state. */ \
|
||||||
data->__statep->__count = \
|
data->__statep->__count = \
|
||||||
tscii_next_state[(data->__statep->__count >> 4) & 0x0f]; \
|
tscii_next_state[(data->__statep->__count >> 4) & 0x0f]; \
|
||||||
|
Reference in New Issue
Block a user