]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authoranthony <anthony@git.imagemagick.org>
Tue, 27 Mar 2012 14:06:46 +0000 (14:06 +0000)
committeranthony <anthony@git.imagemagick.org>
Tue, 27 Mar 2012 14:06:46 +0000 (14:06 +0000)
MagickWand/script-token.c

index ac7258226eee7e8eb6b48cd1272fcc8d763e6473..a8bb07ee9fb94e1ea89a478787f6f491a40dc0c2 100644 (file)
@@ -197,15 +197,15 @@ WandExport ScriptTokenInfo * DestroyScriptTokenInfo(ScriptTokenInfo *token_info)
 %  end of the line.  You can escape a comment '#', using quotes or backlsashes
 %  just as you can in a shell.
 %
-%  As a special case a ';' at the start of a line is also treated as a comment
+%  As a special case a ':' at the start of a line is also treated as a comment
 %  This allows a magick script to ignore a line that is parsed by the shell
 %  and can be used as a 'launcher' for magick scripts. For example
 %
 %    #!/bin/sh
 %    #
 %    # Shell Launcher for Magick Script
-%    ; echo "This part is run in the shell"
-%    ; exec magick -script "$0" "$@"; exit 10
+%    : echo "This part is run in the shell"
+%    : exec magick -script "$0" "$@"; exit 10
 %    #
 %    # The rest of the script is magick script
 %    -read label:"This is a Magick Script!"