diff src/w32fns.c @ 39812:66e0816837a8

Update calls to openp.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 12 Oct 2001 03:37:43 +0000
parents 6192be048459
children 579177964efa
line wrap: on
line diff
--- a/src/w32fns.c	Fri Oct 12 03:23:25 2001 +0000
+++ b/src/w32fns.c	Fri Oct 12 03:37:43 2001 +0000
@@ -551,7 +551,7 @@
     }
 
   /* 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 @@
   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;