]> git.eshelyaron.com Git - emacs.git/commitdiff
(construct_drag_n_drop): Decode file name before using.
authorJason Rumney <jasonr@gnu.org>
Tue, 16 Apr 2002 23:24:29 +0000 (23:24 +0000)
committerJason Rumney <jasonr@gnu.org>
Tue, 16 Apr 2002 23:24:29 +0000 (23:24 +0000)
src/ChangeLog
src/w32term.c

index 473dc18101dedf6c40f044cf9877af667d0cef2f..c82bf3f014c9983162f42bf6cfe2800ed7a09d8c 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-17  Jason Rumney  <jasonr@gnu.org>
+
+       * w32fns.c (Fx_file_dialog): Decode file name before using.
+
+       * w32term.c (construct_drag_n_drop): Likewise.
+
 2002-04-16  Gerd Moellmann  <gerd@gnu.org>
 
        * buffer.c (MMAP_ALLOCATED_P): New macro to be set from system
index 235dd74585e1b99eea93ee99775b9a58986fe5f0..50ed23327acc387a1ae69e4b22c7979d829f9bb4 100644 (file)
@@ -6255,7 +6255,7 @@ construct_drag_n_drop (result, msg, f)
        continue;
       name = alloca (len + 1);
       DragQueryFile (hdrop, i, name, len + 1);
-      files = Fcons (build_string (name), files);
+      files = Fcons (DECODE_FILE(build_string (name)), files);
     }
 
   DragFinish (hdrop);