summaryrefslogtreecommitdiff
path: root/src/irc
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-11-17 15:59:33 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-11-17 15:59:33 +0000
commit94ad289e7c311f4acd6b5c99773712cf3e7c569e (patch)
tree763fb6ef3f4cfa94feb2885f3f19b4ed2cc6397e /src/irc
parent000328d9e678d1bd45849785566fdaae666e6368 (diff)
downloadirssi-94ad289e7c311f4acd6b5c99773712cf3e7c569e.zip
added +q channel mode to HAS_MODE_ARG_ALWAYS() list.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2043 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc')
-rw-r--r--src/irc/core/modes.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/irc/core/modes.h b/src/irc/core/modes.h
index 7da90ab7..a8b7ecdd 100644
--- a/src/irc/core/modes.h
+++ b/src/irc/core/modes.h
@@ -3,8 +3,9 @@
/* modes that have argument always */
#define HAS_MODE_ARG_ALWAYS(mode) \
- ((mode) == 'b' || (mode) == 'e' || (mode) == 'I' || (mode) == 'k' || \
- (mode) == 'o' || (mode) == 'h' || (mode) == 'v' || (mode) == 'O')
+ ((mode) == 'b' || (mode) == 'e' || (mode) == 'I' || (mode) == 'q' || \
+ (mode) == 'o' || (mode) == 'h' || (mode) == 'v' || (mode) == 'O' || \
+ (mode) == 'k')
/* modes that have argument when being set (+) */
#define HAS_MODE_ARG_SET(mode) \