On 2 December 2011 09:30, Stefan Weil <s...@weilnetz.de> wrote:
> Most QEMU files either are pure ASCII or use UTF-8.
> Convert some files which still used ISO-8859-1 to UTF-8.

Looks good. It looks like with these done there are only
two more files which have non-UTF-8 in them:
./linux-user/cpu-uname.c
./linux-user/arm/nwfpe/fpopcode.h

We can deal with those in separate patches I guess.

(I checked with this command:

for f in $(find . -name '*.[ch]'); do iconv -f UTF-8 -t UTF-8 -o
/dev/null "$f" 2>/dev/null || echo "$f"; done

)

-- PMM

Reply via email to