From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Fabian Braennstroem Newsgroups: gmane.emacs.help Subject: Re: dired command on marked files Date: Fri, 20 Jun 2008 21:56:24 +0200 Organization: www.braennstroem.de Message-ID: References: Reply-To: f.braennstroem@gmx.de NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1213994490 15618 80.91.229.12 (20 Jun 2008 20:41:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 20 Jun 2008 20:41:30 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Jun 20 22:42:14 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1K9nQu-0007wt-O9 for geh-help-gnu-emacs@m.gmane.org; Fri, 20 Jun 2008 22:42:08 +0200 Original-Received: from localhost ([127.0.0.1]:53246 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K9nQ5-0002zm-WE for geh-help-gnu-emacs@m.gmane.org; Fri, 20 Jun 2008 16:41:18 -0400 Original-Path: news.stanford.edu!headwall.stanford.edu!newsfeed.news2me.com!news.glorb.com!feeder.erje.net!news-fra1.dfn.de!news-koe1.dfn.de!tamarack.fernuni-hagen.de!news.fernuni-hagen.de!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 23 Original-NNTP-Posting-Host: e176241124.adsl.alicedsl.de Original-X-Trace: tamarack.fernuni-hagen.de 1213991784 7643 85.176.241.124 (20 Jun 2008 19:56:24 GMT) Original-X-Complaints-To: newsadmin@fernuni-hagen.de Original-NNTP-Posting-Date: Fri, 20 Jun 2008 19:56:24 +0000 (UTC) User-Agent: slrn/0.9.8.1pl1 (Debian) Original-Xref: news.stanford.edu gnu.emacs.help:159642 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:54992 Archived-At: Hi Kevin, * Kevin Rodgers wrote: > Fabian Braennstroem wrote: >> In the end, emacs should ask for the 'title' and 'name'. > > (defun gracebat (title name) > (interactive "sTitle: \nsName: ") > ... > ) Thanks for the hint! I tried to incorporate it, but without success. I think all those marks make a problem: (defun grace( title1 name) "Create Plot using grace" (interactive "sTitle: \nsName: ") (call-process-shell-command (concat (dired-shell-stuff-it "xmgrace " (dired-get-marked-files) nil) " -pexec 'title "" (title1) ""' &")) ) Greetings! Fabian