]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authoranthony <anthony@git.imagemagick.org>
Fri, 6 Apr 2012 02:32:25 +0000 (02:32 +0000)
committeranthony <anthony@git.imagemagick.org>
Fri, 6 Apr 2012 02:32:25 +0000 (02:32 +0000)
MagickWand/magick-cli.c
MagickWand/script-token.c

index 0fcf8767fdee082c5fa82b5b5992df026e091aa4..21a3bea5dd6736956071c47c14289f75da8f2006 100644 (file)
@@ -60,7 +60,7 @@
       3 - option type details
       9 - output options/artifacts/propertys
 */
-#define MagickCommandDebug 3
+#define MagickCommandDebug 0
 
 #define ThrowFileException(exception,severity,tag,context) \
 { \
index 14fead2e87e82ee47f58720e1b178623c03bb71b..8e02ea54fc73706bad664346f3a634dca2fa9330 100644 (file)
@@ -87,12 +87,10 @@ WandExport ScriptTokenInfo *AcquireScriptTokenInfo(char *filename)
     token_info->stream=stdin;
     token_info->opened=MagickFalse;
   }
-#if 0  /* FUTURE POSIBILITIES */
   else if ( LocaleNCompare(filename,"fd:",3) == 0 ) {
     token_info->stream=fdopen(StringToLong(filename+3),"r");
     token_info->opened=MagickFalse;
   }
-#endif
   else {
     token_info->stream=fopen_utf8(filename, "r");
   }