comparison src/image.c @ 83770:9109a293afb7

Comment.
author Glenn Morris <rgm@gnu.org>
date Thu, 30 Aug 2007 05:05:58 +0000
parents 14a686983252
children 162e36293ef2
comparison
equal deleted inserted replaced
83769:7b7c42786f4a 83770:9109a293afb7
2375 search_path = Fcons (Fexpand_file_name (build_string ("images"), 2375 search_path = Fcons (Fexpand_file_name (build_string ("images"),
2376 Vdata_directory), 2376 Vdata_directory),
2377 Vx_bitmap_file_path); 2377 Vx_bitmap_file_path);
2378 GCPRO2 (file_found, search_path); 2378 GCPRO2 (file_found, search_path);
2379 2379
2380 /* Try to find FILE in data-directory, then x-bitmap-file-path. */ 2380 /* Try to find FILE in data-directory/images, then x-bitmap-file-path. */
2381 fd = openp (search_path, file, Qnil, &file_found, Qnil); 2381 fd = openp (search_path, file, Qnil, &file_found, Qnil);
2382 2382
2383 if (fd == -1) 2383 if (fd == -1)
2384 file_found = Qnil; 2384 file_found = Qnil;
2385 else 2385 else