From dc6297d5df43f87d1ed2ea1b5c1f5a5193ec235a Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 2 Mar 2026 22:03:10 -0500 Subject: Fix "nick already in use" and permutation. --- src/cmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cmd.c') diff --git a/src/cmd.c b/src/cmd.c index d9abc87..7c757b7 100644 --- a/src/cmd.c +++ b/src/cmd.c @@ -25,9 +25,8 @@ static void cmd_chan_text(void) { scr_print_active("/"); scr_print_active(target); } - scr_print_active(" "); + scr_print_active("> "); scr_print_active(command); - scr_print_active(">"); scr_eol_active(); txbuf_set_str("PRIVMSG "); @@ -54,5 +53,6 @@ void cmd_command(const char *cmd) { } void cmd_execute(void) { + if(!*edit_box) return; cmd_command(edit_box); } -- cgit v1.2.3