1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-06 01:12:40 +02:00

app: fix ignoring paths with parentheses.

I had the case of a path with parentheses in the folder name. Just don't assume
any character should not be in a path.
This commit is contained in:
Jehan
2023-04-12 12:37:56 +02:00
parent 73f607fd73
commit 42bc6ba1c0

View File

@@ -723,7 +723,7 @@ user_update_sessionrc (const GMatchInfo *matched_value,
#define GIMPRC_UPDATE_PATTERN \
"\\(theme [^)]*\\)" "|" \
"\\(.*-path [^)]*\\)"
"^ *\\(.*-path \".*\"\\) *$"
static gboolean
user_update_gimprc (const GMatchInfo *matched_value,