aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2002-04-16 22:26:33 +0000
committerJason Rumney2002-04-16 22:26:33 +0000
commitf8a58bacc7392397b82d32d1326329e1009a8bc5 (patch)
treee07746a46493d8899f077b061be20a636d9fb622 /src
parent54a0ce0f2253ba3f5e0580b347dbc63fc7410dd3 (diff)
downloademacs-f8a58bacc7392397b82d32d1326329e1009a8bc5.tar.gz
emacs-f8a58bacc7392397b82d32d1326329e1009a8bc5.zip
(Fx_file_dialog): Decode file name before using.
Diffstat (limited to 'src')
-rw-r--r--src/w32fns.c2
1 files changed, 1 insertions, 1 deletions
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. */)
14287 if (GetOpenFileName (&file_details)) 14287 if (GetOpenFileName (&file_details))
14288 { 14288 {
14289 dostounix_filename (filename); 14289 dostounix_filename (filename);
14290 file = build_string (filename); 14290 file = DECODE_FILE(build_string (filename));
14291 } 14291 }
14292 else 14292 else
14293 file = Qnil; 14293 file = Qnil;