From 04f5138a6c4a324d974b10fcc9fb98b23ee3f021 Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Wed, 11 Nov 2015 17:05:58 +1100 Subject: [PATCH] Improve a couple of messages in /window create --- source/screen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/screen.c b/source/screen.c index 5e1f46f..7e8712f 100644 --- a/source/screen.c +++ b/source/screen.c @@ -1244,7 +1244,7 @@ void BX_scroll_window(Window *window) { int scroll, i; if (window->holding_something || window->scrollback_point) - ircpanic("Cant scroll this window!"); + ircpanic("Can't scroll this window!"); if ((scroll = get_int_var(SCROLL_LINES_VAR)) <= 0) scroll = 1; @@ -1597,7 +1597,7 @@ extern Window *BX_create_additional_screen (void) s = connect_by_number(NULL, &port, SERVICE_SERVER, PROTOCOL_TCP, 0); if (s < 0) { - yell("Couldnt establish server side -- error [%d]", s); + yell("Couldn't establish server side -- error [%d]", s); return NULL; } @@ -1608,7 +1608,7 @@ extern Window *BX_create_additional_screen (void) case -1: { kill_screen(new); - say("I couldnt fire up a new wserv process"); + say("I couldn't fire up a new wserv process"); break; }