From 36f67ffe28f2b4a07fef3d48721a40309768e005 Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Wed, 7 Sep 2011 22:08:24 +0200 Subject: [PATCH] add command for saving the preferences --- src/common/outbound.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/common/outbound.c b/src/common/outbound.c index 417ac323..3a4d379c 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -2886,6 +2886,14 @@ cmd_recv (struct session *sess, char *tbuf, char *word[], char *word_eol[]) return FALSE; } +static int +cmd_saveconf (struct session *sess, char *tbuf, char *word[], char *word_eol[]) +{ + save_config (); + + return TRUE; +} + static int cmd_say (struct session *sess, char *tbuf, char *word[], char *word_eol[]) { @@ -3638,6 +3646,7 @@ const struct commands xc_cmds[] = { #endif {"RECV", cmd_recv, 1, 0, 1, N_("RECV , send raw data to xchat, as if it was received from the irc server")}, + {"SAVECONF", cmd_saveconf, 0, 0, 1, N_("SAVECONF, saves the current settings to disk")}, {"SAY", cmd_say, 0, 0, 1, N_("SAY , sends the text to the object in the current window")}, {"SEND", cmd_send, 0, 0, 1, N_("SEND []")},