From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Masatake YAMATO Newsgroups: gmane.emacs.devel Subject: Re: info inconsistency about "Shell Commands in Dired" Date: Sun, 22 Aug 2004 21:33:34 +0900 (JST) Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: <20040822.213334.41627640.jet@gyve.org> References: <200408212312.i7LNCLY06315@raven.dms.auburn.edu> <20040822.131715.41632842.jet@gyve.org> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1093178186 20701 80.91.224.253 (22 Aug 2004 12:36:26 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 22 Aug 2004 12:36:26 +0000 (UTC) Cc: teirllm@dms.auburn.edu, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Aug 22 14:36:20 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1Byra8-0006Ca-00 for ; Sun, 22 Aug 2004 14:36:20 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1ByreX-0007MD-9R for ged-emacs-devel@m.gmane.org; Sun, 22 Aug 2004 08:40:53 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1ByreL-0007KR-Fn for emacs-devel@gnu.org; Sun, 22 Aug 2004 08:40:41 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1ByreJ-0007Hj-S1 for emacs-devel@gnu.org; Sun, 22 Aug 2004 08:40:41 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1ByreJ-0007Hf-Pj for emacs-devel@gnu.org; Sun, 22 Aug 2004 08:40:39 -0400 Original-Received: from [210.130.136.40] (helo=r-maa.spacetown.ne.jp) by monty-python.gnu.org with esmtp (Exim 4.34) id 1ByrZQ-0000MJ-NJ; Sun, 22 Aug 2004 08:35:37 -0400 Original-Received: from localhost (h219-110-074-165.catv01.itscom.jp [219.110.74.165]) by r-maa.spacetown.ne.jp (8.11.6) with ESMTP id i7MCZYN27736; Sun, 22 Aug 2004 21:35:34 +0900 (JST) Original-To: dak@gnu.org In-Reply-To: X-Mailer: Mew version 4.0.62 on Emacs 21.3.50 / Mule 5.0 (SAKAKI) 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: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:26397 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:26397 > > How do you think using `format' function directly instead of `?' ? > > > > e.g. > > > > uuencode %s %s > %s.uu > > > > Advantage: > > - If the user want to `%' itself in the command line, format function > > can handle it: > > > > echo %%s > > > > - Implementation is not so difficult(for us). > > Not? How do you call the format function? Depends on the number of > %s... Good point. I found next code works. (apply 'format "echo %s" '("a" "a" "a")) => "echo a" So we can pass arguments as much as possible:-P.