aboutsummaryrefslogtreecommitdiff
path: root/term.c
diff options
context:
space:
mode:
Diffstat (limited to 'term.c')
-rw-r--r--term.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/term.c b/term.c
index 71769a3..f35756a 100644
--- a/term.c
+++ b/term.c
@@ -834,17 +834,14 @@ ttywrite(const char *s, size_t n, int may_echo)
{
const char *next;
- fprintf(stderr, "1\n");
if (may_echo && IS_SET(MODE_ECHO))
twrite(s, n, 1);
- fprintf(stderr, "2\n");
if (!IS_SET(MODE_CRLF)) {
ttywriteraw(s, n);
return;
}
- fprintf(stderr, "3\n");
/* This is similar to how the kernel handles ONLCR for ttys */
while (n > 0) {
if (*s == '\r') {
@@ -858,7 +855,6 @@ ttywrite(const char *s, size_t n, int may_echo)
n -= next - s;
s = next;
}
- fprintf(stderr, "4\n");
}
void