Mercurial > emacs
diff mac/src/macfns.c @ 39812:66e0816837a8
Update calls to openp.
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Fri, 12 Oct 2001 03:37:43 +0000 |
| parents | 350e6092a4c4 |
| children | 2203939cc090 |
line wrap: on
line diff
--- a/mac/src/macfns.c Fri Oct 12 03:23:25 2001 +0000 +++ b/mac/src/macfns.c Fri Oct 12 03:37:43 2001 +0000 @@ -513,7 +513,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; /* LoadLibraryEx won't handle special files handled by Emacs handler. */ @@ -5367,7 +5367,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 < 0) file_found = Qnil;
