summaryrefslogtreecommitdiff
path: root/src/irc
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-12-17 19:47:23 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-12-17 19:47:23 +0000
commit4bc4da5c6bc3f4fb52f8f1e7ae30158e5fa38a37 (patch)
treece1ec4f073c568ff002c1c5568641a14dd6c2cbc /src/irc
parentf126e1b2c34e9ad74d3fe9918d410ad8192dfd6e (diff)
downloadirssi-4bc4da5c6bc3f4fb52f8f1e7ae30158e5fa38a37.zip
mode +d is now also treated as having argument (hybrid 7 / dancer realname ban)
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2266 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc')
-rw-r--r--src/irc/core/modes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/core/modes.h b/src/irc/core/modes.h
index a8b7ecdd..12f36896 100644
--- a/src/irc/core/modes.h
+++ b/src/irc/core/modes.h
@@ -4,8 +4,8 @@
/* modes that have argument always */
#define HAS_MODE_ARG_ALWAYS(mode) \
((mode) == 'b' || (mode) == 'e' || (mode) == 'I' || (mode) == 'q' || \
- (mode) == 'o' || (mode) == 'h' || (mode) == 'v' || (mode) == 'O' || \
- (mode) == 'k')
+ (mode) == 'd' || (mode) == 'o' || (mode) == 'h' || (mode) == 'v' || \
+ (mode) == 'O' || (mode) == 'k')
/* modes that have argument when being set (+) */
#define HAS_MODE_ARG_SET(mode) \