summaryrefslogtreecommitdiff
path: root/src/irc/core/irc.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2002-03-10 16:00:38 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2002-03-10 16:00:38 +0000
commit15e716e28309b8bf7f2c59bab5f0edac59244055 (patch)
tree2880f4693a172c0ffa0f05c33ee3e1acc81efdf2 /src/irc/core/irc.h
parentb89fb4a549846f70c5d679bd6a71f2738ffc43e1 (diff)
downloadirssi-15e716e28309b8bf7f2c59bab5f0edac59244055.zip
Added '.' to known nick flag characters. Also supports having multiple flag
chars in /NAMES list, so eg. "@+nick" works or ".@nick" which is already used by some servers. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2559 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/core/irc.h')
-rw-r--r--src/irc/core/irc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/core/irc.h b/src/irc/core/irc.h
index 957b1e05..7006d9f6 100644
--- a/src/irc/core/irc.h
+++ b/src/irc/core/irc.h
@@ -20,8 +20,8 @@ typedef struct _REDIRECT_REC REDIRECT_REC;
(a) == '+' || (a) == '=' || (a) == '-')
#define isnickflag(a) \
- ((a) == '@' || (a) == '+' || (a) == '%' || /* op / voice / half-op */ \
- (a) == '-' || (a) == '~') /* no idea, just copied from somewhere.. */
+ ((a) == '@' || (a) == '+' || (a) == '%' || /* op / voice */ \
+ (a) == '%' || (a) == '.') /* extensions: half-op / owner */
#define ischannel(a) \
((a) == '#' || /* normal */ \