On 2018-08-22 16:40, Pavel Zbitskiy wrote: > In a few places translate.c contains non-breaking spaces (0xc2 0xa0) > instead of regular ones (0x20): > > 7c 7c c2 a0 63 63 > 7c 7c 20 63 63 > | | c c > > This confuses some text editors.
Without your patch: $ file target/s390x/translate.c target/s390x/translate.c: C source, UTF-8 Unicode text With your patch: $ file target/s390x/translate.c target/s390x/translate.c: C source, ASCII text Looks like you've got all spots :-) Reviewed-by: Thomas Huth <th...@redhat.com>