From bb594d2aa648619f02f04d8db0b7efffa24b9c77 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 6 Dec 2000 05:35:34 +0000 Subject: [PATCH] bugfix in handling command(), cmdchar at start of command was still required.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@975 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/perl/perl-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/perl/perl-common.c b/src/perl/perl-common.c index e029b6dd..df4fd222 100644 --- a/src/perl/perl-common.c +++ b/src/perl/perl-common.c @@ -293,7 +293,7 @@ void perl_command(const char *cmd, SERVER_REC *server, WI_ITEM_REC *item) sendcmd = g_strdup_printf("%c%s", *cmdchars, cmd); } - signal_emit("send command", 3, cmd, server, item); + signal_emit("send command", 3, sendcmd, server, item); if (sendcmd != cmd) g_free(sendcmd); }