From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: kgrossjo@emptydomain.de (Kai =?utf-8?Q?Gro=C3=9Fjohann?=) Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Add shell-quasiquote. Date: Sun, 01 Nov 2015 19:39:16 +0100 Message-ID: References: <87si59wj42.fsf@T420.taylan> <87zizfm2dq.fsf@T420.taylan> <871tcr7yvq.fsf@fastmail.com> <87mvvfm0bd.fsf@T420.taylan> <56250803.5080601@cs.ucla.edu> <87a8ren5ys.fsf@T420.taylan> <56259BB1.3070908@cs.ucla.edu> <878u6ykmvt.fsf@T420.taylan> <87h9llvo98.fsf@members.fsf.org> <5626622A.3090707@yandex.ru> <87zizdijbp.fsf@T420.taylan> <56267302.7050606@yandex.ru> <87io61igyu.fsf@T420.taylan> <56267CDF.6010201@yandex.ru> <87wpuhh15s.fsf@T420.taylan> <562683B9.1060305@yandex.ru> <83y4exe71v.fsf@gnu.org> <87y4ewoqbs.fsf@fastmail.com> <83si54e2qx.fsf@gnu.org> <87y4ew8fue.fsf@fastmail.com> <83zizcurco.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1446403202 6696 80.91.229.3 (1 Nov 2015 18:40:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 1 Nov 2015 18:40:02 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Nov 01 19:39:53 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZsxXj-0005Us-EX for ged-emacs-devel@m.gmane.org; Sun, 01 Nov 2015 19:39:51 +0100 Original-Received: from localhost ([::1]:38456 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsxXi-0000Fi-LN for ged-emacs-devel@m.gmane.org; Sun, 01 Nov 2015 13:39:50 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50618) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsxXU-0000FK-EH for emacs-devel@gnu.org; Sun, 01 Nov 2015 13:39:37 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZsxXR-0003R0-8f for emacs-devel@gnu.org; Sun, 01 Nov 2015 13:39:36 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]:39064) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsxXR-0003Qt-1n for emacs-devel@gnu.org; Sun, 01 Nov 2015 13:39:33 -0500 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZsxXL-0005Az-TG for emacs-devel@gnu.org; Sun, 01 Nov 2015 19:39:27 +0100 Original-Received: from dslb-188-101-072-195.188.101.pools.vodafone-ip.de ([188.101.72.195]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 01 Nov 2015 19:39:27 +0100 Original-Received: from kgrossjo by dslb-188-101-072-195.188.101.pools.vodafone-ip.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 01 Nov 2015 19:39:27 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 14 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: dslb-188-101-072-195.188.101.pools.vodafone-ip.de User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (darwin) Cancel-Lock: sha1:w6eD8IstRFYmTyVvpRCfoMizklM= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:193074 Archived-At: Eli Zaretskii writes: >> From: Random832 >> Date: Wed, 21 Oct 2015 10:18:49 -0400 >> >> It doesn't have a documented way for the caller to insist that the >> string be quoted for a POSIX shell rather than the user's shell. > > On what OS would that distinction be important, and why? Tramp is an example: it runs a Bourne-ish shell on the remote host, and thus it would like to quote shell arguments for that shell. Kai