From 2c72b3aaf117a2e883db6b8377bc3473928da1f6 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 7 Apr 2026 06:39:55 -0400 Subject: Remove unused functions from screen.[ch]. 7203 bytes free (though, saving from screen.c isn't that useful since it'll be replaced later). --- src/screen.c | 2 ++ src/screen.h | 3 +++ 2 files changed, 5 insertions(+) diff --git a/src/screen.c b/src/screen.c index 02cc45a..9793a8a 100644 --- a/src/screen.c +++ b/src/screen.c @@ -292,6 +292,7 @@ void scr_print_active(const char *text) { scr_print(scr_active, text); } +/* void scr_print_server(const char *text) { scr_print(SCR_SERVER, text); } @@ -299,6 +300,7 @@ void scr_print_server(const char *text) { void scr_print_priv(const char *text) { scr_print(SCR_SERVER, text); } +*/ void scr_activate(char s) { /* diff --git a/src/screen.h b/src/screen.h index 2959b1e..76f82c9 100644 --- a/src/screen.h +++ b/src/screen.h @@ -94,8 +94,11 @@ void scr_print_active(const char *text); /* print to the currently-displayed screen */ void scr_print_current(const char *text); +/* + // these were never used, so commented out. void scr_print_server(const char *text); void scr_print_priv(const char *text); +*/ /* set a screen's status to active, if it's not the currently-displayed one. scr_print() sets it already, but anything that uses scr_putc() -- cgit v1.2.3