diff options
author | Timo Sirainen <cras@irssi.org> | 2002-04-26 20:02:52 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-04-26 20:02:52 +0000 |
commit | 131326fb4988a83585ba20b36c5e26b6bd9bfe6c (patch) | |
tree | ad0d1b12df8010f8c3b3fc338d73785ba281af7b /src/fe-common/irc/module-formats.c | |
parent | 64c8feeede901aa22311aafa6e7ef87d5073f3ad (diff) | |
download | irssi-131326fb4988a83585ba20b36c5e26b6bd9bfe6c.zip |
removed handling of "you're not chanop" event so that the default handler
may print the server which sends it (useful with desyncs)
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2719 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/irc/module-formats.c')
-rw-r--r-- | src/fe-common/irc/module-formats.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/fe-common/irc/module-formats.c b/src/fe-common/irc/module-formats.c index 7f5384f3..eb97acea 100644 --- a/src/fe-common/irc/module-formats.c +++ b/src/fe-common/irc/module-formats.c @@ -110,7 +110,7 @@ FORMAT_REC fecommon_irc_formats[] = { { "end_of_whois", "End of WHOIS", 1, { 0 } }, { "end_of_whowas", "End of WHOWAS", 1, { 0 } }, { "whois_not_found", "There is no such nick $0", 1, { 0 } }, - { "who", "{channelhilight $[-10]0} %|{nick $[!9]1} $[!3]2 $[!2]3 $4@$5 {comment {hilight $6}}", 8, { 0, 0, 0, 0, 0, 0, 0, 0 } }, + { "who", "%#{channelhilight $[-10]0} %|{nick $[!9]1} $[!3]2 $[!2]3 $4@$5 {comment {hilight $6}}", 8, { 0, 0, 0, 0, 0, 0, 0, 0 } }, { "end_of_who", "End of /WHO list", 1, { 0 } }, /* ---- */ @@ -152,7 +152,6 @@ FORMAT_REC fecommon_irc_formats[] = { { "kill_server", "You were {error killed} by {server $0} {reason $1} {comment Path: $2}", 3, { 0, 0, 0 } }, { "error", "{error ERROR} $0", 1, { 0 } }, { "unknown_mode", "Unknown mode character $0", 1, { 0 } }, - { "not_chanop", "You're not channel operator in {channel $0}", 1, { 0 } }, { "default_event", "[$0] $1", 2, { 0, 0 } }, /* ---- */ |