Re: [Qemu-devel] [PATCH v12 21/36] qapi: Tighten the regex on valid names

2015-11-18 Thread Markus Armbruster
Eric Blake writes: > On 11/18/2015 04:51 AM, Markus Armbruster wrote: >> Eric Blake writes: >> >>> We already documented that qapi names should match specific >>> patterns (such as starting with a letter unless it was an enum >>> value or a downstream extension). Tighten that from a suggestion

Re: [Qemu-devel] [PATCH v12 21/36] qapi: Tighten the regex on valid names

2015-11-18 Thread Eric Blake
On 11/18/2015 04:51 AM, Markus Armbruster wrote: > Eric Blake writes: > >> We already documented that qapi names should match specific >> patterns (such as starting with a letter unless it was an enum >> value or a downstream extension). Tighten that from a suggestion >> into a hard requirement,

Re: [Qemu-devel] [PATCH v12 21/36] qapi: Tighten the regex on valid names

2015-11-18 Thread Markus Armbruster
Eric Blake writes: > We already documented that qapi names should match specific > patterns (such as starting with a letter unless it was an enum > value or a downstream extension). Tighten that from a suggestion > into a hard requirement, which frees up names beginning with a > single underscor

[Qemu-devel] [PATCH v12 21/36] qapi: Tighten the regex on valid names

2015-11-18 Thread Eric Blake
We already documented that qapi names should match specific patterns (such as starting with a letter unless it was an enum value or a downstream extension). Tighten that from a suggestion into a hard requirement, which frees up names beginning with a single underscore for qapi internal usage. Als