aboutsummaryrefslogtreecommitdiffstats
path: root/mac/src/macfns.c
diff options
context:
space:
mode:
authorStefan Monnier2001-10-12 03:37:43 +0000
committerStefan Monnier2001-10-12 03:37:43 +0000
commitc0ec53ad99ba41fca0f34440c232c8ad203f4259 (patch)
treecad8633f767ceaed67cf3788e59e21c344ea695d /mac/src/macfns.c
parentb81a1b72a82185bc426d31f914a5d3d7fee14c4e (diff)
downloademacs-c0ec53ad99ba41fca0f34440c232c8ad203f4259.tar.gz
emacs-c0ec53ad99ba41fca0f34440c232c8ad203f4259.zip
Update calls to openp.
Diffstat (limited to 'mac/src/macfns.c')
-rw-r--r--mac/src/macfns.c4
1 files changed, 2 insertions, 2 deletions
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)
513 } 513 }
514 514
515 /* Search bitmap-file-path for the file, if appropriate. */ 515 /* Search bitmap-file-path for the file, if appropriate. */
516 fd = openp (Vx_bitmap_file_path, file, "", &found, 0); 516 fd = openp (Vx_bitmap_file_path, file, Qnil, &found, 0);
517 if (fd < 0) 517 if (fd < 0)
518 return -1; 518 return -1;
519 /* LoadLibraryEx won't handle special files handled by Emacs handler. */ 519 /* LoadLibraryEx won't handle special files handled by Emacs handler. */
@@ -5367,7 +5367,7 @@ x_find_image_file (file)
5367 GCPRO2 (file_found, search_path); 5367 GCPRO2 (file_found, search_path);
5368 5368
5369 /* Try to find FILE in data-directory, then x-bitmap-file-path. */ 5369 /* Try to find FILE in data-directory, then x-bitmap-file-path. */
5370 fd = openp (search_path, file, "", &file_found, 0); 5370 fd = openp (search_path, file, Qnil, &file_found, 0);
5371 5371
5372 if (fd < 0) 5372 if (fd < 0)
5373 file_found = Qnil; 5373 file_found = Qnil;