nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 9c6a62d319d8696f12b090a2751af3607e977f66
parent 38c8845b0539336e45137275cdeac591cdd4ad2a
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Thu,  6 Mar 2025 12:19:29 +0100

tweaks: remove an unwanted newline from a debugging message

Diffstat:
Msrc/winio.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/winio.c b/src/winio.c @@ -304,7 +304,7 @@ void read_keys_from(WINDOW *frame) nodelay(frame, FALSE); #ifdef DEBUG - fprintf(stderr, "\nSequence of hex codes:"); + fprintf(stderr, "Sequence of hex codes:"); for (size_t i = 0; i < waiting_codes; i++) fprintf(stderr, " %3x", key_buffer[i]); fprintf(stderr, "\n");