diff --git a/ChangeLog b/ChangeLog index b68ee3412..f0a7a7f98 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-07-10 Richard Frith-Macdonald + + * Tools/cvtenc.m: Use uppercase 'U' rather than 'u' in unicode + escape sequences. + 2004-07-09 Adam Fedor * Source/NSFileManager.m ([GSAttrDictionary diff --git a/Tools/cvtenc.m b/Tools/cvtenc.m index d3749c0de..4c0c17138 100644 --- a/Tools/cvtenc.m +++ b/Tools/cvtenc.m @@ -232,7 +232,7 @@ main(int argc, char** argv, char **env) } else { - sprintf(&c[o], "\\u%04x", u[i]); + sprintf(&c[o], "\\U%04x", u[i]); o += 6; } } @@ -282,9 +282,9 @@ main(int argc, char** argv, char **env) @"You can supply a '-Encoding name' option to specify the C string\n" @"encoding to be used, if you don't want to use the default.\n" @"You can supply a '-EscapeIn YES' option to specify that input\n" - @"should be parsed for \\u escape sequences (as in property lists).\n" + @"should be parsed for \\U escape sequences (as in property lists).\n" @"You can supply a '-EscapeOut YES' option to specify that output\n" - @"should be ascii with \\u escape sequences (for property lists).\n"); + @"should be ascii with \\U escape sequences (for property lists).\n"); } [pool release]; return 0;