From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46445) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THE8J-0005Qw-Sn for qemu-devel@nongnu.org; Thu, 27 Sep 2012 09:28:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1THE8F-0003Wp-HL for qemu-devel@nongnu.org; Thu, 27 Sep 2012 09:28:03 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50861) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THE8F-0003Wl-8r for qemu-devel@nongnu.org; Thu, 27 Sep 2012 09:27:59 -0400 From: Luiz Capitulino Date: Thu, 27 Sep 2012 10:28:19 -0300 Message-Id: <1348752509-1142-6-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1348752509-1142-1-git-send-email-lcapitulino@redhat.com> References: <1348752509-1142-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PULL 05/15] qapi: add "unix" to the set of reserved words List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com Cc: Paolo Bonzini , qemu-devel@nongnu.org From: Paolo Bonzini It is #defined to 1. Signed-off-by: Paolo Bonzini Signed-off-by: Luiz Capitulino --- scripts/qapi.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/qapi.py b/scripts/qapi.py index 057332e..afc5f32 100644 --- a/scripts/qapi.py +++ b/scripts/qapi.py @@ -156,7 +156,9 @@ def c_var(name, protect=True): # GCC http://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/C-Extensions.html # excluding _.* gcc_words = set(['asm', 'typeof']) - if protect and (name in c89_words | c99_words | c11_words | gcc_words): + # namespace pollution: + polluted_words = set(['unix']) + if protect and (name in c89_words | c99_words | c11_words | gcc_words | polluted_words): return "q_" + name return name.replace('-', '_').lstrip("*") -- 1.7.12.315.g682ce8b