From f844caecef4174f1fd52c1e810a836489935a01d Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 13 Apr 2026 02:08:22 -0400 Subject: Save a tiny bit of space. 7701 bytes free. --- src/cmd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cmd.c') diff --git a/src/cmd.c b/src/cmd.c index 9055c33..fad8a93 100644 --- a/src/cmd.c +++ b/src/cmd.c @@ -199,7 +199,7 @@ static void do_optional_chan(void) { } txbuf_set_str(cmd_def->cmd); - txbuf_append_chr(' '); + txbuf_append_spc(); txbuf_append_str(target); if(arg2) txbuf_append_str2(" :", arg2); @@ -218,7 +218,7 @@ static void send_ctcp(void) { txbuf_append_str(arg2); if(arg3) txbuf_append_str2(" ", arg3); - txbuf_append_chr('\x01'); + txbuf_append_01(); txbuf_send(); } @@ -409,7 +409,7 @@ static char cmd_local(void) { static void cmd_remote(void) { txbuf_set_str(command); if(arg1) { - txbuf_append_chr(' '); + txbuf_append_spc(); txbuf_append_str(arg1); } txbuf_send(); -- cgit v1.2.3