diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-04-10 22:12:30 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-04-10 22:12:30 +0200 |
| commit | a4fd80b4ec1a2c2abc936312c73e0ed0133f1a39 (patch) | |
| tree | d1d8e19e5c0d6ab661ef193aa9ed9bf31f5cde85 /term.c | |
| parent | 3026218eaa0d3be59a898939da5126ca03bc5969 (diff) | |
add title
Diffstat (limited to 'term.c')
| -rw-r--r-- | term.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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 |