summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-08-14 21:17:51 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-08-14 21:17:51 +0000
commitee83de55264eae44fe59095e8072aa540b71b0b6 (patch)
tree315e50c00bf305affc539073eaa2b3809bcd2440 /src
parentab316612d5df292683b4e5e44e2da5a26e5d907d (diff)
downloadirssi-ee83de55264eae44fe59095e8072aa540b71b0b6.zip
/SET wall_format updated, it sent only first word of the wall message
($1 -> $1-) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@606 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src')
-rw-r--r--src/irc/core/irc-commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/core/irc-commands.c b/src/irc/core/irc-commands.c
index b067dda9..b7c93ed4 100644
--- a/src/irc/core/irc-commands.c
+++ b/src/irc/core/irc-commands.c
@@ -1006,7 +1006,7 @@ void irc_commands_init(void)
settings_add_str("misc", "quit_message", "leaving");
settings_add_int("misc", "knockout_time", 300);
- settings_add_str("misc", "wall_format", "[Wall/$0] $1");
+ settings_add_str("misc", "wall_format", "[Wall/$0] $1-");
knockout_tag = g_timeout_add(KNOCKOUT_TIMECHECK, (GSourceFunc) knockout_timeout, NULL);