Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
GIMP
Commits
2cb3099d
Commit
2cb3099d
authored
May 03, 1999
by
Manish Singh
Browse files
fix rotten regexp eval
-Yosh
parent
2c0adc45
Changes
4
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
2cb3099d
Mon May 3 14:03:35 PDT 1999 Manish Singh <yosh@gimp.org>
* app/gimage_cmds.c
* tools/pdbgen/pdb/gimage.pdb: fix rotten regexp eval
Mon May 3 21:44:27 BST 1999 Austin Donnelly <austin@gimp.org>
* app/palette.c: put up messages telling user about corrupted
...
...
app/gimage_cmds.c
View file @
2cb3099d
...
...
@@ -2653,7 +2653,7 @@ image_set_component_active_invoker (Argument *args)
if
(
success
)
gimage_set_component_active
(
gimage
,
component
,
active
);
}
}
return
procedural_db_return_args
(
&
image_set_component_active_proc
,
success
);
}
...
...
@@ -2795,7 +2795,7 @@ image_set_component_visible_invoker (Argument *args)
if
(
success
)
gimage_set_component_visible
(
gimage
,
component
,
visible
);
}
}
return
procedural_db_return_args
(
&
image_set_component_visible_proc
,
success
);
}
...
...
tools/pdbgen/pdb/gimage.pdb
View file @
2cb3099d
...
...
@@ -1065,7 +1065,7 @@ CODE1
\$invoke{code}
CODE
$comp_arg;
\$invoke{code} =~ s/}/\$code}/e;
\$invoke{code} =~ s/}/
"
\$code}
"
/e;
\$invoke{code} =~ s/ component_$_/ component, $_/;
\$inargs[2]->{name} = '$_';
\$inargs[2]->{desc} = 'Component is $_ (%%desc%%)';
...
...
tools/pdbgen/pdb/image.pdb
View file @
2cb3099d
...
...
@@ -1065,7 +1065,7 @@ CODE1
\$invoke{code}
CODE
$comp_arg;
\$invoke{code} =~ s/}/\$code}/e;
\$invoke{code} =~ s/}/
"
\$code}
"
/e;
\$invoke{code} =~ s/ component_$_/ component, $_/;
\$inargs[2]->{name} = '$_';
\$inargs[2]->{desc} = 'Component is $_ (%%desc%%)';
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment