From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Quote file name args to start-process-shell-command? Date: Thu, 12 Oct 2006 07:02:12 -0400 Message-ID: References: <452D54D8.7060705@student.lu.se> <452DDBC8.2060606@student.lu.se> <85y7rmou5t.fsf@lola.goethe.zz> <85vempolrc.fsf@lola.goethe.zz> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1160650972 8152 80.91.229.2 (12 Oct 2006 11:02:52 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 12 Oct 2006 11:02:52 +0000 (UTC) Cc: lennart.borgman.073@student.lu.se, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Oct 12 13:02:50 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GXyKW-0001za-Se for ged-emacs-devel@m.gmane.org; Thu, 12 Oct 2006 13:02:25 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GXyKW-0005CO-II for ged-emacs-devel@m.gmane.org; Thu, 12 Oct 2006 07:02:24 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GXyKM-0005Br-Bp for emacs-devel@gnu.org; Thu, 12 Oct 2006 07:02:14 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GXyKL-0005Be-Tm for emacs-devel@gnu.org; Thu, 12 Oct 2006 07:02:14 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GXyKL-0005Bb-ER for emacs-devel@gnu.org; Thu, 12 Oct 2006 07:02:13 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GXySY-0004J6-BH for emacs-devel@gnu.org; Thu, 12 Oct 2006 07:10:42 -0400 Original-Received: from eliz by fencepost.gnu.org with local (Exim 4.34) id 1GXyKK-0002od-Mp; Thu, 12 Oct 2006 07:02:12 -0400 Original-To: David Kastrup In-reply-to: <85vempolrc.fsf@lola.goethe.zz> (message from David Kastrup on Thu, 12 Oct 2006 12:45:43 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:60646 Archived-At: > Cc: lennart.borgman.073@student.lu.se, emacs-devel@gnu.org > From: David Kastrup > Date: Thu, 12 Oct 2006 12:45:43 +0200 > > Clearly, ARGS is (except on VMS) _not_ a list of separate arguments, > but rather strings pasted together with spaces. Yes, as any API to `system' should do. > So I don't understand how to apply your remark > "start-process-shell-command is not system(3).". That remark should be understood as follows: start-process-shell-command is a wrapper around `system', but it isn't `system' itself. So it doesn't need to accept only one string, but eventually it will concatenate them all. Apologies for being unclear.