mirror of
https://github.com/weechat/weechat.git
synced 2026-06-27 05:16:38 +02:00
Removed charset conversion for commands (only allowed in text sent to channel/private)
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
WeeChat - Wee Enhanced Environment for Chat
|
||||
===========================================
|
||||
|
||||
ChangeLog - 2006-04-10
|
||||
ChangeLog - 2006-04-11
|
||||
|
||||
Version 0.1.9 (under dev!):
|
||||
* removed color encoding in commands (only allowed in text sent to
|
||||
channel/private)
|
||||
* removed color encoding and charset conversion for commands (only
|
||||
allowed in text sent to channel/private)
|
||||
* added hostnames associeted to nicks (available for /ban completion)
|
||||
* added "+p" mode for channels, fixed mode display in status bar
|
||||
* added nick alignment options
|
||||
|
||||
@@ -954,12 +954,7 @@ user_command (t_irc_server *server, t_irc_channel *channel, char *command, int o
|
||||
if ((command[0] == '/') && (command[1] != '/'))
|
||||
{
|
||||
/* WeeChat internal command (or IRC command) */
|
||||
command_encoded = channel_iconv_encode (server, channel, command);
|
||||
(void) exec_weechat_command (server, channel,
|
||||
(command_encoded) ? command_encoded : command,
|
||||
only_builtin);
|
||||
if (command_encoded)
|
||||
free (command_encoded);
|
||||
(void) exec_weechat_command (server, channel, command, only_builtin);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
WeeChat - Wee Enhanced Environment for Chat
|
||||
===========================================
|
||||
|
||||
ChangeLog - 2006-04-10
|
||||
ChangeLog - 2006-04-11
|
||||
|
||||
Version 0.1.9 (under dev!):
|
||||
* removed color encoding in commands (only allowed in text sent to
|
||||
channel/private)
|
||||
* removed color encoding and charset conversion for commands (only
|
||||
allowed in text sent to channel/private)
|
||||
* added hostnames associeted to nicks (available for /ban completion)
|
||||
* added "+p" mode for channels, fixed mode display in status bar
|
||||
* added nick alignment options
|
||||
|
||||
@@ -954,12 +954,7 @@ user_command (t_irc_server *server, t_irc_channel *channel, char *command, int o
|
||||
if ((command[0] == '/') && (command[1] != '/'))
|
||||
{
|
||||
/* WeeChat internal command (or IRC command) */
|
||||
command_encoded = channel_iconv_encode (server, channel, command);
|
||||
(void) exec_weechat_command (server, channel,
|
||||
(command_encoded) ? command_encoded : command,
|
||||
only_builtin);
|
||||
if (command_encoded)
|
||||
free (command_encoded);
|
||||
(void) exec_weechat_command (server, channel, command, only_builtin);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user