]> granicus.if.org Git - imagemagick/commitdiff
https://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=30897
authorCristy <urban-warrior@imagemagick.org>
Mon, 21 Nov 2016 12:21:00 +0000 (07:21 -0500)
committerCristy <urban-warrior@imagemagick.org>
Mon, 21 Nov 2016 12:21:00 +0000 (07:21 -0500)
MagickCore/option.c
MagickWand/operation.c

index 3910fee3ebf29bdf8c2926e6c4d825616e75a3fc..a4fe6273bc9357847b7759bb46b75a096b51448d 100644 (file)
@@ -675,8 +675,8 @@ static const OptionInfo
     { "+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 },
index 14d3795f6881732e618461d2f32c37061f9ac262..c675deeb24b3ed49b5d3548b6fae1852ba429b6e 100644 (file)
@@ -1296,7 +1296,7 @@ WandPrivate void CLISettingOptionInfo(MagickCLI *cli_wand,
           _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);
@@ -4786,9 +4786,9 @@ WandPrivate void CLINoImageOperator(MagickCLI *cli_wand,
       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;
@@ -4842,12 +4842,12 @@ WandPrivate void CLINoImageOperator(MagickCLI *cli_wand,
       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;