summaryrefslogtreecommitdiff
path: root/src/gmalloc.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-06-20 00:35:41 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2019-06-20 00:41:13 -0700
commit2dbe05d01a0ce216fa1266074df162ddcd9f9d75 (patch)
tree08e48bc68f0ca69afd442dc65644695ca636580b /src/gmalloc.c
parent2079e40a3cffbfacc79725c8788d56d05f232222 (diff)
downloademacs-2dbe05d01a0ce216fa1266074df162ddcd9f9d75.tar.gz
Remove no-longer-needed fflushes of stderr
* src/gmalloc.c (mabort) [GC_MCHECK && !__GNU_LIBRARY__]: * src/term.c (vfatal): Remove fflush (stderr) when it is now a no-op because newline automatically flushes stderr.
Diffstat (limited to 'src/gmalloc.c')
-rw-r--r--src/gmalloc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gmalloc.c b/src/gmalloc.c
index 779cdb36d67..bac3ffb7e5e 100644
--- a/src/gmalloc.c
+++ b/src/gmalloc.c
@@ -2013,7 +2013,6 @@ mabort (enum mcheck_status status)
__libc_fatal (msg);
#else
fprintf (stderr, "mcheck: %s\n", msg);
- fflush (stderr);
emacs_abort ();
#endif
}