From: Jason Rumney Date: Tue, 16 Apr 2002 23:19:52 +0000 (+0000) Subject: (Fx_file_dialog): Decode file name before using. X-Git-Tag: emacs-pretest-21.2.91~300 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=05817c8e60541dd0b0f84aae7d70d0505f394363;p=emacs.git (Fx_file_dialog): Decode file name before using. --- diff --git a/src/w32fns.c b/src/w32fns.c index cd21fe81c58..bd51244e87f 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -13138,7 +13138,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;