diff options
author | Timo Sirainen <cras@irssi.org> | 2003-01-21 07:01:44 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2003-01-21 07:01:44 +0000 |
commit | eff24e706ea28b25976165399d43b651c971d63e (patch) | |
tree | 4909d5d3335178b7b1cf07504a5953373bb50245 /src/irc/core/irc.h | |
parent | be7bf6872df99ab21d83610b606f9c4a2f4c3682 (diff) | |
download | irssi-eff24e706ea28b25976165399d43b651c971d63e.zip |
Added '!' into nick flags, used by some ircd
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3098 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/core/irc.h')
-rw-r--r-- | src/irc/core/irc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/core/irc.h b/src/irc/core/irc.h index 7006d9f6..77d7dc98 100644 --- a/src/irc/core/irc.h +++ b/src/irc/core/irc.h @@ -21,7 +21,7 @@ typedef struct _REDIRECT_REC REDIRECT_REC; #define isnickflag(a) \ ((a) == '@' || (a) == '+' || (a) == '%' || /* op / voice */ \ - (a) == '%' || (a) == '.') /* extensions: half-op / owner */ + (a) == '%' || (a) == '.' || (a) == '!') /* extensions: half-op / owners */ #define ischannel(a) \ ((a) == '#' || /* normal */ \ |