1
0
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:
Sebastien Helleu
2006-01-10 08:52:09 +00:00
parent 8b5137ddeb
commit 8c54d55611
14 changed files with 1272 additions and 1202 deletions
+2 -1
View File
@@ -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
View File
File diff suppressed because it is too large Load Diff
+148 -138
View File
File diff suppressed because it is too large Load Diff
+152 -142
View File
File diff suppressed because it is too large Load Diff
+149 -140
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -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
View File
File diff suppressed because it is too large Load Diff
+2 -1
View File
@@ -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
View File
File diff suppressed because it is too large Load Diff
+148 -138
View File
File diff suppressed because it is too large Load Diff
+152 -142
View File
File diff suppressed because it is too large Load Diff
+149 -140
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -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);
}
File diff suppressed because it is too large Load Diff