summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorBerke Viktor <berkeviktor@aol.com>2011-11-23 13:58:50 +0100
committerBerke Viktor <berkeviktor@aol.com>2011-11-23 13:58:50 +0100
commit08ee077396f971eec805c7db96c7c4b160adc436 (patch)
tree00ffb9af84940f780bd24ac3543ad0d9917f2987 /src
parent9ab089e2e49dd300fae7a76596b444dc974b40e9 (diff)
no manual saving, auto-save changes during /set
Diffstat (limited to 'src')
-rw-r--r--src/common/cfgfiles.c6
-rw-r--r--src/common/outbound.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/common/cfgfiles.c b/src/common/cfgfiles.c
index 2aad854a..53e0865c 100644
--- a/src/common/cfgfiles.c
+++ b/src/common/cfgfiles.c
@@ -1084,7 +1084,13 @@ cmd_set (struct session *sess, char *tbuf, char *word[], char *word_eol[])
 	while (vars[i].name);
 
 	if (!finds && !quiet)
+	{
 		PrintText (sess, "No such variable.\n");
+	}
+	else if (prefs.autosave && !save_config ())
+	{
+		PrintText (sess, "Error saving changes to disk.\n");
+	}
 
 	return TRUE;
 }
diff --git a/src/common/outbound.c b/src/common/outbound.c
index 32302efe..917562b9 100644
--- a/src/common/outbound.c
+++ b/src/common/outbound.c
@@ -3647,7 +3647,7 @@ const struct commands xc_cmds[] = {
 #endif
 	{"RECV", cmd_recv, 1, 0, 1, N_("RECV <text>, 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")},
+	/*{"SAVECONF", cmd_saveconf, 0, 0, 1, N_("SAVECONF, saves the current settings to disk")},*/
 	{"SAY", cmd_say, 0, 0, 1,
 	 N_("SAY <text>, sends the text to the object in the current window")},
 	{"SEND", cmd_send, 0, 0, 1, N_("SEND <nick> [<file>]")},