Mercurial > emacs
changeset 30573:3bb43339533c
(Fx_file_dialog): Use NULL instead of 0 at the end of
variable argument lists of XtVaGetValues and XtVaSetValues.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Thu, 03 Aug 2000 20:21:52 +0000 |
parents | f0463edb8518 |
children | 2a22be2633b2 |
files | src/xfns.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xfns.c Thu Aug 03 20:11:01 2000 +0000 +++ b/src/xfns.c Thu Aug 03 20:21:52 2000 +0000 @@ -10276,7 +10276,7 @@ XmString text; String data; - XtVaGetValues (dialog, XmNtextString, &text, 0); + XtVaGetValues (dialog, XmNtextString, &text, NULL); XmStringGetLtoR (text, XmFONTLIST_DEFAULT_TAG, &data); XmStringFree (text); file = build_string (data);