From de0ab101451106198302bcededa7b562b511a124 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 1 Oct 2001 07:04:11 +0000 Subject: [PATCH] /SET translation was broken - fixed by lam@e-gate.pl. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1815 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/core/translation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-common/core/translation.c b/src/fe-common/core/translation.c index a4828117..c674b9a2 100644 --- a/src/fe-common/core/translation.c +++ b/src/fe-common/core/translation.c @@ -126,7 +126,7 @@ static void read_settings(void) return; } - if (current_translation != NULL && + if (current_translation == NULL || strcmp(translation, current_translation) != 0) { g_free_not_null(current_translation); current_translation = g_strdup(translation);