{ "+render", 0L, DrawInfoOptionFlag, MagickFalse },
{ "+resample", 1L, DeprecateOptionFlag, MagickTrue },
{ "-resample", 1L, SimpleOperatorFlag, MagickFalse },
- { "-respect-parenthesis", 0L, ImageInfoOptionFlag, MagickFalse },
- { "+respect-parenthesis", 0L, ImageInfoOptionFlag, MagickFalse },
+ { "-respect-parentheses", 0L, ImageInfoOptionFlag, MagickFalse },
+ { "+respect-parentheses", 0L, ImageInfoOptionFlag, MagickFalse },
{ "+reverse", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
{ "-reverse", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
{ "+roll", 1L, DeprecateOptionFlag, MagickTrue },
_draw_info->render= ArgBooleanNot;
break;
}
- if (LocaleCompare("respect-parenthesis",option+1) == 0)
+ if (LocaleCompare("respect-parentheses",option+1) == 0)
{
/* link image and setting stacks - option is itself saved on stack! */
(void) SetImageOption(_image_info,option+1,ArgBooleanString);
cli_wand->image_list_stack = node;
cli_wand->wand.images = NewImageList();
- /* handle respect-parenthesis */
+ /* handle respect-parentheses */
if (IsStringTrue(GetImageOption(cli_wand->wand.image_info,
- "respect-parenthesis")) != MagickFalse)
+ "respect-parentheses")) != MagickFalse)
option="{"; /* fall-thru so as to push image settings too */
else
break;
cli_wand->wand.images= (Image *)node->data;
node = (Stack *)RelinquishMagickMemory(node);
- /* handle respect-parenthesis - of the previous 'pushed' settings */
+ /* handle respect-parentheses - of the previous 'pushed' settings */
node = cli_wand->image_info_stack;
if ( node != (Stack *) NULL)
{
if (IsStringTrue(GetImageOption(
- cli_wand->wand.image_info,"respect-parenthesis")) != MagickFalse)
+ cli_wand->wand.image_info,"respect-parentheses")) != MagickFalse)
option="}"; /* fall-thru so as to pop image settings too */
else
break;