1
0
mirror of https://github.com/irssi/irssi.git synced 2025-02-02 15:08:01 -05:00

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
This commit is contained in:
Timo Sirainen 2001-11-17 15:59:33 +00:00 committed by cras
parent 000328d9e6
commit 94ad289e7c

View File

@ -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) \