aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-08-03 20:21:52 +0000
committerGerd Moellmann2000-08-03 20:21:52 +0000
commitd16700638b5681e86d5d62194748548da7bcee6f (patch)
tree27405272ee8452ffc50ef908158b132d835844d5 /src
parent5268b4422dbd9f66fb432e4225174f8c09f97bf4 (diff)
downloademacs-d16700638b5681e86d5d62194748548da7bcee6f.tar.gz
emacs-d16700638b5681e86d5d62194748548da7bcee6f.zip
(Fx_file_dialog): Use NULL instead of 0 at the end of
variable argument lists of XtVaGetValues and XtVaSetValues.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c2
1 files changed, 1 insertions, 1 deletions
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.")
10276 XmString text; 10276 XmString text;
10277 String data; 10277 String data;
10278 10278
10279 XtVaGetValues (dialog, XmNtextString, &text, 0); 10279 XtVaGetValues (dialog, XmNtextString, &text, NULL);
10280 XmStringGetLtoR (text, XmFONTLIST_DEFAULT_TAG, &data); 10280 XmStringGetLtoR (text, XmFONTLIST_DEFAULT_TAG, &data);
10281 XmStringFree (text); 10281 XmStringFree (text);
10282 file = build_string (data); 10282 file = build_string (data);