From: Gerd Moellmann Date: Thu, 3 Aug 2000 20:21:52 +0000 (+0000) Subject: (Fx_file_dialog): Use NULL instead of 0 at the end of X-Git-Tag: emacs-pretest-21.0.90~2509 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d16700638b5681e86d5d62194748548da7bcee6f;p=emacs.git (Fx_file_dialog): Use NULL instead of 0 at the end of variable argument lists of XtVaGetValues and XtVaSetValues. --- diff --git a/src/xfns.c b/src/xfns.c index 7874e4a75f0..740a7c15c6e 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -10276,7 +10276,7 @@ selection dialog's entry field, if MUSTMATCH is non-nil.") 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);