From 89c96c2114b0c9af96bc3a58e95900285efde7c1 Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Sun, 3 Jul 2016 02:16:39 -0700 Subject: [PATCH] Newline between fkr output should go to stderr --- src/fish_key_reader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fish_key_reader.cpp b/src/fish_key_reader.cpp index 100a03670..ee4d80da2 100644 --- a/src/fish_key_reader.cpp +++ b/src/fish_key_reader.cpp @@ -173,7 +173,7 @@ static double output_elapsed_time(double prev_tstamp, bool first_char_seen) { double now = timef(); long long int delta_tstamp_us = 1000000 * (now - prev_tstamp); - if (delta_tstamp_us >= 200000 && first_char_seen) putchar('\n'); + if (delta_tstamp_us >= 200000 && first_char_seen) putc('\n', stderr); if (delta_tstamp_us >= 1000000) { fprintf(stderr, " "); } else {