Am 25.01.2013 18:23, schrieb Peter Maydell: > On 25 January 2013 17:20, Laszlo Ersek <ler...@redhat.com> wrote: >> The subscript operator [] is used here in the type name of a compound >> literal which is probably not what the script intends to catch. >> >> 1945 # check for spacing round square brackets; allowed: >> 1946 # 1. with a type on the left -- int [] a; >> >> The code in question was copied from "docs/migration.txt" and seems to >> match existing practice: >> >> git grep -E '(VMStateField|VMStateSubsection) \[]' \ >> | wc -l >> >> 139 > > On the other hand the usage without the space is in the > majority: > > git grep -E '(VMStateField|VMStateSubsection)\[]' | wc -l > 218
Means that it's about 60:40. Shouldn't we simply allow both variants in such cases? Kevin