@LiquidCake commented on this pull request.


In plugins/saveactions.c:

> +
+		g_free(old_file_name);
+	}
+}
+
+
+static void persistent_temp_files_document_save_cb(GObject *obj, GeanyDocument *doc, gpointer user_data)
+{
+	gchar *new_file_path, *old_file_path;
+
+	new_file_path = DOC_FILENAME(doc);
+	old_file_path = plugin_get_document_data(geany_plugin, doc, new_file_path);
+
+	if (old_file_path != NULL)
+	{
+		gchar *old_file_name = g_path_get_basename(old_file_path);

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/2134378368@github.com>