diff options
Diffstat (limited to 'mac/src')
-rw-r--r-- | mac/src/mac.c | 2 | ||||
-rw-r--r-- | mac/src/macfns.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mac/src/mac.c b/mac/src/mac.c index d0c9d1a36c3..473273f13b7 100644 --- a/mac/src/mac.c +++ b/mac/src/mac.c @@ -2010,7 +2010,7 @@ run_mac_command (argv, workdir, infn, outfn, errfn) strcat (t, newargv[0]); #endif Lisp_Object path; - openp (Vexec_path, build_string (newargv[0]), EXEC_SUFFIXES, &path, + openp (Vexec_path, build_string (newargv[0]), Vexec_suffixes, &path, 1); if (NILP (path)) diff --git a/mac/src/macfns.c b/mac/src/macfns.c index 851b4d98036..9969ead9503 100644 --- a/mac/src/macfns.c +++ b/mac/src/macfns.c @@ -513,7 +513,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; /* LoadLibraryEx won't handle special files handled by Emacs handler. */ @@ -5367,7 +5367,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 < 0) file_found = Qnil; |