From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:46222) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAirh-0006H8-HG for qemu-devel@nongnu.org; Fri, 15 Apr 2011 09:15:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QAird-0008R7-HR for qemu-devel@nongnu.org; Fri, 15 Apr 2011 09:15:13 -0400 Received: from mx1.redhat.com ([209.132.183.28]:21934) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAird-0008Qs-6t for qemu-devel@nongnu.org; Fri, 15 Apr 2011 09:15:09 -0400 Message-ID: <4DA84568.2050301@redhat.com> Date: Fri, 15 Apr 2011 15:17:28 +0200 From: Kevin Wolf MIME-Version: 1.0 References: <1302854186-6772-1-git-send-email-adam@os.inf.tu-dresden.de> In-Reply-To: <1302854186-6772-1-git-send-email-adam@os.inf.tu-dresden.de> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] multiboot: Support quotable commas in module list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Adam Lackorzynski Cc: qemu-devel@nongnu.org Am 15.04.2011 09:56, schrieb Adam Lackorzynski: > Support quoting of ',' (and '\') to allow commas in the parameter list of > modules. > > Signed-off-by: Adam Lackorzynski Other options in qemu use double commas for escaping. So maybe reusing get_opt_value() would make things more consistent. It also has the advantage that double commas don't need additional escape characters for the shell. On the other hand, using backslashes for escaping is probably more familiar for most people, so I don't have a very strong opinion on it. Kevin