X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/b81a1b72a82185bc426d31f914a5d3d7fee14c4e..c0ec53ad99ba41fca0f34440c232c8ad203f4259:/src/w32fns.c diff --git a/src/w32fns.c b/src/w32fns.c index 5173a25fe9..f1884e0f4e 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -551,7 +551,7 @@ x_create_bitmap_from_file (f, file) } /* Search bitmap-file-path for the file, if appropriate. */ - fd = openp (Vx_bitmap_file_path, file, "", &found, 0); + fd = openp (Vx_bitmap_file_path, file, Qnil, &found, 0); if (fd < 0) return -1; emacs_close (fd); @@ -8654,7 +8654,7 @@ x_find_image_file (file) GCPRO2 (file_found, search_path); /* Try to find FILE in data-directory, then x-bitmap-file-path. */ - fd = openp (search_path, file, "", &file_found, 0); + fd = openp (search_path, file, Qnil, &file_found, 0); if (fd == -1) file_found = Qnil;