diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2020-03-19 13:53:45 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2020-08-13 11:28:25 +0200 |
commit | dc2ba49207af71193f1390d84bba4e15aeea0ce0 (patch) | |
tree | 79c2a51cb5fa2b87800b1113e0015a7108cd2eb3 /libpng/scripts/options.awk | |
parent | Import Ghostscript 9.50 (diff) | |
download | ghostscript-gpl-patches-dc2ba49207af71193f1390d84bba4e15aeea0ce0.tar.gz ghostscript-gpl-patches-dc2ba49207af71193f1390d84bba4e15aeea0ce0.tar.bz2 ghostscript-gpl-patches-dc2ba49207af71193f1390d84bba4e15aeea0ce0.zip |
Import Ghostscript 9.52ghostscript-9.52
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'libpng/scripts/options.awk')
-rwxr-xr-x | libpng/scripts/options.awk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpng/scripts/options.awk b/libpng/scripts/options.awk index 81b82ff0..fef5dfd7 100755 --- a/libpng/scripts/options.awk +++ b/libpng/scripts/options.awk @@ -40,7 +40,7 @@ BEGIN{ # the lines, for example by inserting spaces around operators, and all # C preprocessors notice lines that start with '#', most remove comments. # The technique adopted here is to make the final output lines into - # C strings (enclosed in double quotes), preceeded by PNG_DFN. As a + # C strings (enclosed in double quotes), preceded by PNG_DFN. As a # consequence the output cannot contain a 'raw' double quote - instead put # @' in, this will be replaced by a single " afterward. See the parser # script dfn.awk for more capabilities (not required here). Note that if @@ -336,7 +336,7 @@ $1 == "option" && NF >= 2{ # chunk NAME [requires OPT] [enables LIST] [on|off|disabled] # Expands to the 'option' settings appropriate to the reading and -# writing of an ancilliary PNG chunk 'NAME': +# writing of an ancillary PNG chunk 'NAME': # # option READ_NAME requires READ_ANCILLARY_CHUNKS [READ_OPT] # option READ_NAME enables NAME LIST @@ -805,8 +805,8 @@ END{ print comment, "end of options", cend >out # Do the 'setting' values second, the algorithm the standard - # tree walk (O(1)) done in an O(2) while/for loop; interations - # settings x depth, outputing the deepest required macros + # tree walk (O(1)) done in an O(2) while/for loop; iterations + # settings x depth, outputting the deepest required macros # first. print "" >out print "/* SETTINGS */" >out |