From: Jason Rumney Date: Tue, 16 Apr 2002 22:26:33 +0000 (+0000) Subject: (Fx_file_dialog): Decode file name before using. X-Git-Tag: ttn-vms-21-2-B4~15571 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f8a58bacc7392397b82d32d1326329e1009a8bc5;p=emacs.git (Fx_file_dialog): Decode file name before using. --- diff --git a/src/w32fns.c b/src/w32fns.c index 3740445a3e5..b3194b96055 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -14287,7 +14287,7 @@ specified. Ensure that file exists if MUSTMATCH is non-nil. */) if (GetOpenFileName (&file_details)) { dostounix_filename (filename); - file = build_string (filename); + file = DECODE_FILE(build_string (filename)); } else file = Qnil;