summaryrefslogtreecommitdiff
path: root/manual/charset.texi
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-01-19 03:54:00 +0000
committerUlrich Drepper <drepper@redhat.com>2000-01-19 03:54:00 +0000
commite3a7ff87496c82371904601ad568e7de86db4fce (patch)
tree4bc03016462a9fd55e31e426387c0ebcac4095a4 /manual/charset.texi
parent63e04088bfe942ec4430985fea2ee024f1c38988 (diff)
Update.
2000-01-18 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/i386/lxstat.c: New file, handles 32bit UIDs. * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise. * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Move _STAT_VER_KERNEL handling up; don't save errno. * sysdeps/unix/sysv/linux/arm/fxstat.c: New file. * sysdeps/unix/sysv/linux/arm/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/arm/xstat.c: Likewise. * sysdeps/unix/sysv/linux/m68k/fxstat.c: Likewise. * sysdeps/unix/sysv/linux/m68k/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/m68k/xstat.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/fxstat.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/xstat.c: Likewise. Reported by Bruno Haible.
Diffstat (limited to 'manual/charset.texi')
-rw-r--r--manual/charset.texi20
1 files changed, 8 insertions, 12 deletions
diff --git a/manual/charset.texi b/manual/charset.texi
index 76b189f5fc..81456f2ee0 100644
--- a/manual/charset.texi
+++ b/manual/charset.texi
@@ -1750,10 +1750,10 @@ desirable solution. Therefore future versions will provide better ones
but they are not yet finished.
If all input from the input buffer is successfully converted and stored
-in the output buffer the function returns the number of conversions
-performed. In all other cases the return value is @code{(size_t) -1}
-and @code{errno} is set appropriately. In this case the value pointed
-to by @var{inbytesleft} is nonzero.
+in the output buffer the function returns the number of non-reversible
+conversions performed. In all other cases the return value is
+@code{(size_t) -1} and @code{errno} is set appropriately. In this case
+the value pointed to by @var{inbytesleft} is nonzero.
@table @code
@item EILSEQ
@@ -2674,7 +2674,7 @@ last written byte. This gives the caller the information on how much
text is available in the output buffer. Beside this the variable
pointed to by the fifth parameter, which is of type @code{size_t}, must
be incremented by the number of characters (@emph{not bytes}) which were
-written in the output buffer. Then the function can return.
+converted in a non-reversible way. Then the function can return.
In case the step is not the last one the later conversion functions have
to get a chance to do their work. Therefore the appropriate conversion
@@ -2713,7 +2713,7 @@ went wrong and we have to recover from this.
A requirement for the conversion function is that the input buffer
pointer (the third argument) always points to the last character which
-was put in the converted form in the output buffer. This is trivial
+was put in the converted form in the output buffer. This is trivially
true after the conversion performed in the current step. But if the
conversion functions deeper down the stream stop prematurely not all
characters from the output buffer are consumed and therefore the input
@@ -2795,10 +2795,6 @@ gconv (struct __gconv_step *step, struct __gconv_step_data *data,
char *outend = data->__outbufend;
char *outptr;
- /* @r{This variable is used to count the number of characters}
- @r{we actually converted.} */
- size_t converted = 0;
-
do
@{
/* @r{Remember the start value for this round.} */
@@ -2819,8 +2815,8 @@ gconv (struct __gconv_step *step, struct __gconv_step_data *data,
@r{available.} */
data->__outbuf = outbuf;
- /* @r{Remember how many characters we converted.} */
- *written += converted;
+ /* @r{If any non-reversible conversions were performed,}
+ @r{add the number to @code{*written}.} */
break;
@}