mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 09:14:18 +00:00
Merge from gnulib (comment change only).
This commit is contained in:
parent
83c1803a3a
commit
ca6a2684bd
1 changed files with 8 additions and 1 deletions
|
|
@ -208,7 +208,14 @@ extern char *tzname[];
|
|||
else if (to_uppcase) \
|
||||
fwrite_uppcase (p, (s), _n); \
|
||||
else \
|
||||
fwrite (s, _n, 1, p); \
|
||||
{ \
|
||||
/* Ignore the value of fwrite. The caller can determine whether \
|
||||
an error occured by inspecting ferror (P). All known fwrite \
|
||||
implementations set the stream's error indicator when they \
|
||||
fail due to ENOMEM etc., even though C11 and POSIX.1-2008 do \
|
||||
not require this. */ \
|
||||
fwrite (s, _n, 1, p); \
|
||||
} \
|
||||
} \
|
||||
while (0) \
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue