mirror of
https://github.com/weechat/weechat.git
synced 2026-07-08 19:05:42 +02:00
Fixed msg command (now allowed in private buffer with "*" as target)
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
WeeChat - Wee Enhanced Environment for Chat
|
||||
===========================================
|
||||
|
||||
ChangeLog - 2006-01-08
|
||||
ChangeLog - 2006-01-10
|
||||
|
||||
|
||||
Version 0.1.7 (under dev!):
|
||||
* fixed msg command (now allowed in private buffer with "*" as target)
|
||||
* removed "irc_default_msg_away" setting, for RFC 2812 conformity
|
||||
(/away command wihtout argument only removes away status)
|
||||
* fixed refresh bug with Solaris when term size is changed
|
||||
|
||||
+149
-140
File diff suppressed because it is too large
Load Diff
@@ -94,7 +94,7 @@ irc_display_nick (t_gui_buffer *buffer, t_irc_nick *nick, char *nickname,
|
||||
if (display_around)
|
||||
gui_printf_type (buffer, type, "%s%s",
|
||||
GUI_COLOR(COLOR_WIN_CHAT_DARK),
|
||||
(nick) ? "<" : ">");
|
||||
(nick || BUFFER_IS_PRIVATE(buffer)) ? "<" : ">");
|
||||
if (nick && cfg_look_nickmode)
|
||||
{
|
||||
if (nick->flags & NICK_CHANOWNER)
|
||||
@@ -130,7 +130,7 @@ irc_display_nick (t_gui_buffer *buffer, t_irc_nick *nick, char *nickname,
|
||||
if (display_around)
|
||||
gui_printf_type (buffer, type, "%s%s",
|
||||
GUI_COLOR(COLOR_WIN_CHAT_DARK),
|
||||
(nick) ? "> " : "< ");
|
||||
(nick || BUFFER_IS_PRIVATE(buffer)) ? "> " : "< ");
|
||||
gui_printf_type (buffer, type, GUI_NO_COLOR);
|
||||
}
|
||||
|
||||
|
||||
+34
-38
File diff suppressed because it is too large
Load Diff
+2
-1
@@ -1,10 +1,11 @@
|
||||
WeeChat - Wee Enhanced Environment for Chat
|
||||
===========================================
|
||||
|
||||
ChangeLog - 2006-01-08
|
||||
ChangeLog - 2006-01-10
|
||||
|
||||
|
||||
Version 0.1.7 (under dev!):
|
||||
* fixed msg command (now allowed in private buffer with "*" as target)
|
||||
* removed "irc_default_msg_away" setting, for RFC 2812 conformity
|
||||
(/away command wihtout argument only removes away status)
|
||||
* fixed refresh bug with Solaris when term size is changed
|
||||
|
||||
+149
-140
File diff suppressed because it is too large
Load Diff
+148
-138
File diff suppressed because it is too large
Load Diff
+152
-142
File diff suppressed because it is too large
Load Diff
+149
-140
File diff suppressed because it is too large
Load Diff
@@ -94,7 +94,7 @@ irc_display_nick (t_gui_buffer *buffer, t_irc_nick *nick, char *nickname,
|
||||
if (display_around)
|
||||
gui_printf_type (buffer, type, "%s%s",
|
||||
GUI_COLOR(COLOR_WIN_CHAT_DARK),
|
||||
(nick) ? "<" : ">");
|
||||
(nick || BUFFER_IS_PRIVATE(buffer)) ? "<" : ">");
|
||||
if (nick && cfg_look_nickmode)
|
||||
{
|
||||
if (nick->flags & NICK_CHANOWNER)
|
||||
@@ -130,7 +130,7 @@ irc_display_nick (t_gui_buffer *buffer, t_irc_nick *nick, char *nickname,
|
||||
if (display_around)
|
||||
gui_printf_type (buffer, type, "%s%s",
|
||||
GUI_COLOR(COLOR_WIN_CHAT_DARK),
|
||||
(nick) ? "> " : "< ");
|
||||
(nick || BUFFER_IS_PRIVATE(buffer)) ? "> " : "< ");
|
||||
gui_printf_type (buffer, type, GUI_NO_COLOR);
|
||||
}
|
||||
|
||||
|
||||
+34
-38
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user