(init_tiff_functions, init_gif_functions, init_svg_functions):
Arglist and w32_delayed_load calling convention changed.
(gs_type): Remove init_gs_functions; there is no such function.
+ (valid_image_p, make_image): Fix caller to lookup_image_type.
2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
/* Function prototypes. */
static struct image_type *define_image_type (struct image_type *, Lisp_Object);
-static struct image_type *lookup_image_type (Lisp_Object, Lisp_Object);
+static struct image_type *lookup_image_type (Lisp_Object);
static void image_error (const char *format, Lisp_Object, Lisp_Object);
static void x_laplace (struct frame *, struct image *);
static void x_emboss (struct frame *, struct image *);
if (CONSP (tem) && SYMBOLP (XCAR (tem)))
{
struct image_type *type;
- type = lookup_image_type (XCAR (tem), Qnil);
+ type = lookup_image_type (XCAR (tem));
if (type)
valid_p = type->valid_p (object);
}
eassert (valid_image_p (spec));
img->dependencies = NILP (file) ? Qnil : list1 (file);
- img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL), Qnil);
+ img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
eassert (img->type != NULL);
img->spec = spec;
img->lisp_data = Qnil;