diff options
author | Timo Sirainen <cras@irssi.org> | 2000-12-17 07:39:22 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-12-17 07:39:22 +0000 |
commit | bbc33bff5e4ef2acee69dd45a5581231f466b3ac (patch) | |
tree | c4171b5bd170676d881810790c49dabce303146b /src/irc | |
parent | aac80846b89108414a81773ad4bcdaba4401663d (diff) | |
download | irssi-bbc33bff5e4ef2acee69dd45a5581231f466b3ac.zip |
/SET prompt, /SET prompt_window - Specifies the text in prompt.
'prompt' is used when channel or query is active in window and
'prompt_window' is used with empty windows.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1005 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/core/ctcp.c | 2 | ||||
-rw-r--r-- | src/irc/core/irc-commands.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/core/ctcp.c b/src/irc/core/ctcp.c index 3eb140f7..3d904dd0 100644 --- a/src/irc/core/ctcp.c +++ b/src/irc/core/ctcp.c @@ -87,7 +87,7 @@ static void ctcp_version(IRC_SERVER_REC *server, const char *data, g_return_if_fail(nick != NULL); reply = parse_special_string(settings_get_str("ctcp_version_reply"), - SERVER(server), NULL, "", NULL); + SERVER(server), NULL, "", NULL, 0); str = g_strdup_printf("NOTICE %s :\001VERSION %s\001", nick, reply); ctcp_send_reply(server, str); g_free(str); diff --git a/src/irc/core/irc-commands.c b/src/irc/core/irc-commands.c index ed0984f8..67a91b5e 100644 --- a/src/irc/core/irc-commands.c +++ b/src/irc/core/irc-commands.c @@ -772,7 +772,7 @@ static void cmd_wall(const char *data, IRC_SERVER_REC *server, WI_ITEM_REC *item args = g_strconcat(chanrec->name, " ", msg, NULL); msg = parse_special_string(settings_get_str("wall_format"), - SERVER(server), item, args, NULL); + SERVER(server), item, args, NULL, 0); g_free(args); for (tmp = nicks; tmp != NULL; tmp = tmp->next) { |