Mercurial > emacs
changeset 27756:d0d4542bbdac
(merge_widget_value): Fix incorrect assignment of
safe_strdup'd help string.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Fri, 18 Feb 2000 11:35:16 +0000 |
parents | 3a803d09d619 |
children | 12df8818f3f2 |
files | lwlib/lwlib.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lwlib/lwlib.c Fri Feb 18 10:50:09 2000 +0000 +++ b/lwlib/lwlib.c Fri Feb 18 11:35:16 2000 +0000 @@ -509,7 +509,7 @@ 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) {