Mercurial > hg > xemacs-beta
comparison src/dialog-x.c @ 1726:a8d8f419b459
[xemacs-hg @ 2003-09-30 15:26:34 by james]
Add type information to xfree to avoid alias creation.
author | james |
---|---|
date | Tue, 30 Sep 2003 15:27:01 +0000 |
parents | 01c57eb70ae9 |
children | 04bc9d2f42c7 |
comparison
equal
deleted
inserted
replaced
1725:7ff8f4d70aec | 1726:a8d8f419b459 |
---|---|
205 } | 205 } |
206 else /* it's a button */ | 206 else /* it's a button */ |
207 { | 207 { |
208 allow_text_p = 0; /* only allow text field at the front */ | 208 allow_text_p = 0; /* only allow text field at the front */ |
209 if (wv->value) | 209 if (wv->value) |
210 xfree (wv->value); | 210 xfree (wv->value, char *); |
211 wv->value = wv->name; /* what a mess... */ | 211 wv->value = wv->name; /* what a mess... */ |
212 wv->name = xstrdup (button_names [n]); | 212 wv->name = xstrdup (button_names [n]); |
213 | 213 |
214 if (partition_seen) | 214 if (partition_seen) |
215 rbuttons++; | 215 rbuttons++; |