@LiquidCake commented on this pull request.


In plugins/saveactions.c:

> +	}
+
+	static glong temp_file_name_prefix_len = strlen(PERSISTENT_TEMP_FILE_NAME_PREFIX);
+
+	max_temp_file_number = 0;
+
+	foreach_dir(filename, dir)
+	{
+		utf8_filename = utils_get_utf8_from_locale(filename);
+
+		if (is_temp_saved_file(utf8_filename))
+		{
+			temp_file_number_str = g_utf8_substring(utf8_filename, temp_file_name_prefix_len, -1);
+			temp_file_number = atoi(temp_file_number_str);
+
+			if (temp_file_number > max_temp_file_number)

done


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany/pull/3911/review/2134374201@github.com>