diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-20 22:04:41 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-20 22:04:41 -0700 |
commit | d5cad867eca6beb34092cee18237cbc55100c946 (patch) | |
tree | 20d39dae1f721615c44e40fa07dde05c14514b46 /lib-src/fakemail.c | |
parent | 99ea4cd9ea18070cd2d8bd1e6a34ae05db7213e1 (diff) | |
download | emacs-d5cad867eca6beb34092cee18237cbc55100c946.tar.gz |
[ChangeLog]
fakemail: Remove dependency on ignore-value.
* Makefile.in (GNULIB_MODULES): Add stdio.
* lib/stdio.in.h, m4/stdio_h.m4: New files, automatically
imported from gnulib.
[lib-src/ChangeLog]
fakemail: Remove dependency on ignore-value.
This undoes some of the recent fakemail-related changes.
It is made possible due to recent changes to gnulib's stdio module.
* Makefile.in (fakemail${EXEEXT}): Do not depend on ignore-value.h.
* fakemail.c: Do not include ignore-value.h.
(put_line): Do not use ignore_value.
Diffstat (limited to 'lib-src/fakemail.c')
-rw-r--r-- | lib-src/fakemail.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib-src/fakemail.c b/lib-src/fakemail.c index 780a104b405..940d6219425 100644 --- a/lib-src/fakemail.c +++ b/lib-src/fakemail.c @@ -62,8 +62,6 @@ main () /* This is to declare cuserid. */ #include <unistd.h> - -#include <ignore-value.h> /* Type definitions */ @@ -500,7 +498,7 @@ put_line (const char *string) } } /* Output that much, then break the line. */ - ignore_value (fwrite (s, 1, breakpos - s, rem->handle)); + fwrite (s, 1, breakpos - s, rem->handle); column = 8; /* Skip whitespace and prepare to print more addresses. */ |