summaryrefslogtreecommitdiff
path: root/ptyim.c
diff options
context:
space:
mode:
authorHaoran S. Diao (刁浩然) <0@hairydiode.xyz>2025-09-12 23:02:08 -0700
committerHaoran S. Diao (刁浩然) <0@hairydiode.xyz>2025-09-12 23:02:08 -0700
commit9a178602e7f4e2bc8cd57363794a54a08ba4f1f8 (patch)
tree23f81c327418d63cddb1bcdea92ba724e7d6d95d /ptyim.c
parentd8797a1f88e23e07241a20fd9bc75c6d10f3d416 (diff)
Removed debug print
Diffstat (limited to 'ptyim.c')
-rw-r--r--ptyim.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ptyim.c b/ptyim.c
index 329e371..c402684 100644
--- a/ptyim.c
+++ b/ptyim.c
@@ -196,7 +196,6 @@ int main (int argc, char * argv[], char * envp[]) {
//feeds input char into the escape state
//machine
in_state = update_esc_state(read_buffer, 1, in_state);
- fprintf(stderr, "%c: %d\n", read_buffer[0],in_state);
//skips if the char was anything but
//normal
if (in_state == NORMAL || in_state ==DOUBLE_ESC) {