summaryrefslogtreecommitdiff
path: root/src/core/expandos.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2003-11-20 16:53:10 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2003-11-20 16:53:10 +0000
commitdbc8fd9a1a43cc5beba54471232ba49af300a740 (patch)
tree03a6c830a5210ac6150f748e143d20c5db8a3b66 /src/core/expandos.c
parent2563e6201fe290b4e4ce65487281b4ea2bb3dc0d (diff)
downloadirssi-dbc8fd9a1a43cc5beba54471232ba49af300a740.zip
/SET chanmode_verbose -> chanmode_expando_strip
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3179 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/expandos.c')
-rw-r--r--src/core/expandos.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/expandos.c b/src/core/expandos.c
index 6a1f3503..da04f88b 100644
--- a/src/core/expandos.c
+++ b/src/core/expandos.c
@@ -342,7 +342,7 @@ static char *expando_chanmode(SERVER_REC *server, void *item, int *free_ret)
if (!IS_CHANNEL(item))
return NULL;
- if (settings_get_bool("chanmode_verbose"))
+ if (settings_get_bool("chanmode_expando_strip"))
return CHANNEL(item)->mode;
*free_ret = TRUE;
@@ -575,7 +575,7 @@ void expandos_init(void)
#endif
settings_add_str("misc", "STATUS_OPER", "*");
settings_add_str("lookandfeel", "timestamp_format", "%H:%M");
- settings_add_bool("lookandfeel", "chanmode_verbose", TRUE);
+ settings_add_bool("lookandfeel", "chanmode_expando_strip", TRUE);
client_start_time = time(NULL);
last_sent_msg = NULL; last_sent_msg_body = NULL;