From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=34923 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PTgpu-0003Sh-GK for qemu-devel@nongnu.org; Fri, 17 Dec 2010 15:23:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PTgbb-0002BS-Rh for qemu-devel@nongnu.org; Fri, 17 Dec 2010 15:08:44 -0500 Received: from mail-bw0-f45.google.com ([209.85.214.45]:59178) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PTgbb-0002BE-Jj for qemu-devel@nongnu.org; Fri, 17 Dec 2010 15:08:43 -0500 Received: by bwz16 with SMTP id 16so1394842bwz.4 for ; Fri, 17 Dec 2010 12:08:42 -0800 (PST) Sender: Paolo Bonzini Message-ID: <4D0BC354.90706@redhat.com> Date: Fri, 17 Dec 2010 21:08:52 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1292536325-12881-1-git-send-email-weil@mail.berlios.de> <4D0A95BC.8040509@redhat.com> <4D0B6922.3090401@redhat.com> <4D0BB3A1.30001@mail.berlios.de> In-Reply-To: <4D0BB3A1.30001@mail.berlios.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: [PATCH] win32: Fix CRLF problem in make_device_config.sh List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil Cc: =?ISO-8859-1?Q?Andreas_F=E4rber?= , QEMU Developers On 12/17/2010 08:01 PM, Stefan Weil wrote: > I currently have no possibility to run tests with other awk > implementations, > so I cannot tell whether \012 is needed at all (\r is not a new invention). > Do all awk versions support regular expressions with characters in > octal encoding?. The awk manual reports \b, \f and \r as unportable, and says that \a, \v, \x have been introduced after those. \x is not in POSIX. That leaves \a, \n, \t, \v and \NNN as portable. Paolo