1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

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
This commit is contained in:
Timo Sirainen 2001-12-17 19:47:23 +00:00 committed by cras
parent f126e1b2c3
commit 4bc4da5c6b

View File

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