@Keuronde commented on this pull request.
I didn't find a better way...
{
geany_debug("Relative path %s, root folder %s", locale_filename, root_folder); gchar *absolute_path; - absolute_path = g_strconcat(root_folder, &(locale_filename[1]), NULL); + absolute_path = g_strconcat(root_folder, "/", locale_filename, NULL);
Is there a better way to add a "path separator" than using "/" ? I didn't find any constant in the glib...