mirror of https://github.com/GNOME/gimp.git
*** empty log message ***
This commit is contained in:
parent
8ffb40b7bf
commit
a39fd6d69f
|
@ -1,3 +1,10 @@
|
|||
Wed May 10 04:58:13 CEST 2000 Marc Lehmann <pcg@goof.com>
|
||||
|
||||
* app/plug_in.c: Fix endless loop problem for certain image_types,
|
||||
added a warning.
|
||||
* plug-ins/script-fu/scripts/asc2img.scm: Change image_types argument
|
||||
from "bar" to "".
|
||||
|
||||
2000-05-08 Jay Cox <jaycox@earthlink.net>
|
||||
|
||||
* app/image_map.[ch]: new function image_map_clear that removes
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3315,6 +3315,7 @@ plug_in_args_destroy (Argument *args,
|
|||
gint
|
||||
plug_in_image_types_parse (gchar *image_types)
|
||||
{
|
||||
gchar *type_spec = image_types;
|
||||
gint types = 0;
|
||||
|
||||
/*
|
||||
|
@ -3388,10 +3389,11 @@ plug_in_image_types_parse (gchar *image_types)
|
|||
}
|
||||
else
|
||||
{
|
||||
g_warning ("image_type contains unrecognizable parts: '%s'", type_spec);
|
||||
while (*image_types &&
|
||||
(*image_types != 'R') &&
|
||||
(*image_types != 'G') &&
|
||||
(*image_types != 'I'))
|
||||
((*image_types != ' ') ||
|
||||
(*image_types != '\t') ||
|
||||
(*image_types != ',')))
|
||||
image_types++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -213,7 +213,7 @@
|
|||
"Chris Gutteridge: cjg@ecs.soton.ac.uk"
|
||||
"8th April 1998"
|
||||
"Chris Gutteridge / ECS @ University of Southampton, England"
|
||||
"bar"
|
||||
""
|
||||
SF-FILENAME _"Filename" "afile"
|
||||
SF-FONT _"Font" "-*-Charter-*-r-*-*-24-*-*-*-p-*-*-*"
|
||||
SF-ADJUSTMENT _"Font Size (pixels)" '(45 2 1000 1 10 0 1)
|
||||
|
|
Loading…
Reference in New Issue