From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58460) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bzn5R-0002oA-LM for qemu-devel@nongnu.org; Thu, 27 Oct 2016 11:59:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bzn5O-00057T-KL for qemu-devel@nongnu.org; Thu, 27 Oct 2016 11:59:25 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:50382) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1bzn5O-00056N-3Z for qemu-devel@nongnu.org; Thu, 27 Oct 2016 11:59:22 -0400 Date: Thu, 27 Oct 2016 17:58:58 +0200 From: Samuel Thibault Message-ID: <20161027155858.GA2508@var.bordeaux.inria.fr> References: <1477568774-4817-1-git-send-email-kraxel@redhat.com> <1477583747.9075.30.camel@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1477583747.9075.30.camel@redhat.com> Subject: Re: [Qemu-devel] [PATCH] curses: build with -std=gnu99 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: Peter Maydell , QEMU Developers Gerd Hoffmann, on Thu 27 Oct 2016 17:55:47 +0200, wrote: > /home/kraxel/projects/qemu/ui/curses.c:627:18: error: universal > character names are only valid in C++ and C99 [-Werror] > case L'\u23bd': Another way could be to assume unicode encoding of wchar_t characters (which looks very reasonable to me) and just write "case 0x23bd:". Samuel