]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_create_bitmap_from_file, x_find_image_file): Update call to openp.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 30 Apr 2002 01:04:05 +0000 (01:04 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 30 Apr 2002 01:04:05 +0000 (01:04 +0000)
src/ChangeLog
src/macfns.c
src/w32fns.c
src/xfns.c

index 998bdebb361997c2345baaade447a2777713dee0..75f0ad9a9cd4fe6bd8a1b16bf6a473a7ae2c977b 100644 (file)
@@ -5,6 +5,25 @@
 
 2002-04-29  Stefan Monnier  <monnier@cs.yale.edu>
 
+       * lread.c (openp): Change arg exec_only to predicate.
+       (build_load_history): Use XCAR/XCDR.
+       (Flocate_file_internal): New fun.
+       (syms_of_lread): Defsubr it.
+       (Fload): Update call to openp.
+
+       * lisp.h (openp): Update prototype.
+
+       * xfns.c (x_create_bitmap_from_file, x_find_image_file):
+       * w32proc.c (sys_spawnve):
+       * w32fns.c (x_create_bitmap_from_file, x_find_image_file):
+       * w32.c (check_windows_init_file):
+       * sound.c (Fplay_sound_internal):
+       * process.c (Fstart_process):
+       * macfns.c (x_create_bitmap_from_file, x_find_image_file):
+       * mac.c (run_mac_command):
+       * emacs.c (init_cmdargs):
+       * callproc.c (Fcall_process): Update call to openp.
+
        * textprop.c (remove_properties): Don't use XCAR without CONSP.
 
        * xterm.c (XTread_socket): Disable the Xutf8LookupString code.
index a4235d7c6531e4d977f960dfabbb9c17401b09c1..159b93971faade4cb3199f1851588220112bbe83 100644 (file)
@@ -539,7 +539,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, "", &found, Qnil);
   if (fd < 0)
     return -1;
   /* LoadLibraryEx won't handle special files handled by Emacs handler.  */
@@ -5570,7 +5570,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, Qnil, &file_found, 0);
+  fd = openp (search_path, file, Qnil, &file_found, Qnil);
   
   if (fd < 0)
     file_found = Qnil;
index b3194b960558b128b6b086cfd6b50073e77e9577..2345b95bdcc73ba9486c868045ef5ca4d5350031 100644 (file)
@@ -576,7 +576,7 @@ x_create_bitmap_from_file (f, file)
     }
 
   /* Search bitmap-file-path for the file, if appropriate.  */
-  fd = openp (Vx_bitmap_file_path, file, Qnil, &found, 0);
+  fd = openp (Vx_bitmap_file_path, file, Qnil, &found, Qnil);
   if (fd < 0)
     return -1;
   emacs_close (fd);
@@ -9454,7 +9454,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, Qnil, &file_found, 0);
+  fd = openp (search_path, file, Qnil, &file_found, Qnil);
   
   if (fd == -1)
     file_found = Qnil;
index e88421e73b07d3a72c58a01f2844c5be3809e7f6..7bf02c286a316b948c295bf4a91ca15cb9946722 100644 (file)
@@ -649,7 +649,7 @@ x_create_bitmap_from_file (f, file)
     }
 
   /* Search bitmap-file-path for the file, if appropriate.  */
-  fd = openp (Vx_bitmap_file_path, file, Qnil, &found, 0);
+  fd = openp (Vx_bitmap_file_path, file, Qnil, &found, Qnil);
   if (fd < 0)
     return -1;
   emacs_close (fd);
@@ -6674,7 +6674,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, Qnil, &file_found, 0);
+  fd = openp (search_path, file, Qnil, &file_found, Qnil);
   
   if (fd == -1)
     file_found = Qnil;