From: anthony Date: Fri, 6 Apr 2012 02:32:25 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~5888 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce51b4a7eed24fb2b7863e0d91c19ec3d578409c;p=imagemagick --- diff --git a/MagickWand/magick-cli.c b/MagickWand/magick-cli.c index 0fcf8767f..21a3bea5d 100644 --- a/MagickWand/magick-cli.c +++ b/MagickWand/magick-cli.c @@ -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) \ { \ diff --git a/MagickWand/script-token.c b/MagickWand/script-token.c index 14fead2e8..8e02ea54f 100644 --- a/MagickWand/script-token.c +++ b/MagickWand/script-token.c @@ -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"); }