@LiquidCake commented on this pull request.
>
/* force saving the file to enable all the related actions(tab
name, filetype, etc.) */
document_save_file(doc, TRUE);
- }
+ }
+}
+
+
+static gboolean is_persistent_untitled_doc_file_name(const gchar *filename)
+{
+ if (filename == NULL)
+ return FALSE;
+
+ return g_str_has_prefix(filename,
PERSISTENT_UNTITLED_DOC_FILE_NAME_PREFIX);
+}
+
+
+static gboolean is_persistent_untitled_doc_file(const gchar *file_path_utf8)
done
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3911#discussion_r1852745168
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3911/review/[email protected]>