Revert "app (gimprc): Delete dead assignment"
This reverts commitd6d2a0bbd1and allows more than one unknown gimprc token again. Fixes Bug 674096 - Strange behavior with gimprc (cherry picked from commit8851ec0b6e)
This commit is contained in:
parent
be2feeb111
commit
741daccf02
1 changed files with 5 additions and 1 deletions
|
|
@ -115,7 +115,11 @@ gimp_rc_add_unknown_token (GimpConfig *config,
|
|||
token->key = g_strdup (key);
|
||||
token->value = g_strdup (value);
|
||||
|
||||
if (!last)
|
||||
if (last)
|
||||
{
|
||||
last = g_slist_last (g_slist_append (last, token));
|
||||
}
|
||||
else
|
||||
{
|
||||
unknown_tokens = g_slist_append (NULL, token);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue