summaryrefslogtreecommitdiff
path: root/src/cm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cm.c')
-rw-r--r--src/cm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cm.c b/src/cm.c
index 74f119d9b68..1f165e90f4a 100644
--- a/src/cm.c
+++ b/src/cm.c
@@ -70,8 +70,7 @@ cmputc (c)
{
if (TTY_TERMSCRIPT (current_tty))
putc (c & 0177, TTY_TERMSCRIPT (current_tty));
- if (putc (c & 0177, TTY_OUTPUT (current_tty)) == EOF)
- abort (); /* XXX For testing only! */
+ putc (c & 0177, TTY_OUTPUT (current_tty));
return c;
}