* lib/unicodeio.c: Do not include ignore-value.h.
(fwrite_success_callback): Use plain fwrite, not ignore_value + fwrite.
* modules/unicodeio (Depends-on): Depend on stdio, not ignore-value.
2013-01-04 Paul Eggert <eggert@cs.ucla.edu>
+ unicodeio: depend on stdio, not ignore-value
+ * lib/unicodeio.c: Do not include ignore-value.h.
+ (fwrite_success_callback): Use plain fwrite, not ignore_value + fwrite.
+ * modules/unicodeio (Depends-on): Depend on stdio, not ignore-value.
+
fprintftime: depend on stdio, not ignore-value
* lib/strftime.c [FPRINTFTIME]: Do not include ignore-value.h.
(cpy) [FPRINTFTIME]: Use plain fwrite, not ignore_value of fwrite,
#include "localcharset.h"
#include "unistr.h"
-#include "ignore-value.h"
/* When we pass a Unicode character to iconv(), we must pass it in a
suitable encoding. The standardized Unicode encodings are
conditions (STREAM is an open stream and not wide-character oriented)
when fwrite() returns a value != buflen it also sets STREAM's error
indicator. */
- ignore_value (fwrite (buf, 1, buflen, stream));
+ fwrite (buf, 1, buflen, stream);
return 0;
}
gettext-h
localcharset
error
-ignore-value
+stdio
configure.ac:
gl_UNICODEIO
Maintainer:
Bruno Haible
-