mirror of
https://github.com/weechat/weechat.git
synced 2026-07-04 00:33:13 +02:00
Fixed /set command when internal server name contains one or many dots
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
WeeChat - Wee Enhanced Environment for Chat
|
||||
===========================================
|
||||
|
||||
ChangeLog - 2006-03-11
|
||||
ChangeLog - 2006-03-14
|
||||
|
||||
|
||||
Version 0.1.8 (under dev!):
|
||||
* fixed /set command when internal server name contains one or many dots
|
||||
* fixed get_info plugin API function when no server at all is opened
|
||||
* fixed display bug when top of buffer is displayed and first line is
|
||||
removed (according to "history_max_lines" setting)
|
||||
* fixed /mode command output
|
||||
|
||||
@@ -2973,7 +2973,7 @@ weechat_cmd_set (t_irc_server *server, t_irc_channel *channel,
|
||||
|
||||
if (value)
|
||||
{
|
||||
pos = strchr (option, '.');
|
||||
pos = strrchr (option, '.');
|
||||
if (pos)
|
||||
{
|
||||
/* server config option modification */
|
||||
|
||||
+3
-1
@@ -1,10 +1,12 @@
|
||||
WeeChat - Wee Enhanced Environment for Chat
|
||||
===========================================
|
||||
|
||||
ChangeLog - 2006-03-11
|
||||
ChangeLog - 2006-03-14
|
||||
|
||||
|
||||
Version 0.1.8 (under dev!):
|
||||
* fixed /set command when internal server name contains one or many dots
|
||||
* fixed get_info plugin API function when no server at all is opened
|
||||
* fixed display bug when top of buffer is displayed and first line is
|
||||
removed (according to "history_max_lines" setting)
|
||||
* fixed /mode command output
|
||||
|
||||
@@ -2973,7 +2973,7 @@ weechat_cmd_set (t_irc_server *server, t_irc_channel *channel,
|
||||
|
||||
if (value)
|
||||
{
|
||||
pos = strchr (option, '.');
|
||||
pos = strrchr (option, '.');
|
||||
if (pos)
|
||||
{
|
||||
/* server config option modification */
|
||||
|
||||
Reference in New Issue
Block a user