1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-08 20:58:58 +00:00

(merge_widget_value): Fix incorrect assignment of

safe_strdup'd help string.
This commit is contained in:
Gerd Moellmann 2000-02-18 11:35:16 +00:00
parent c382fb0af7
commit 2114e13f51

View File

@ -509,7 +509,7 @@ merge_widget_value (val1, val2, level)
val1->help, val2->help);
change = max (change, VISIBLE_CHANGE);
safe_free_str (val1->help);
val1->key = safe_strdup (val2->help);
val1->help = safe_strdup (val2->help);
}
if (val1->enabled != val2->enabled)
{