From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Fabian Braennstroem Newsgroups: gmane.emacs.help Subject: Re: print command postscript print buffer Date: Thu, 08 Jan 2004 20:20:15 +0100 Organization: Fabian Braennstroem Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <1073589614.1726.0.camel@rechner1.ddorf.de> References: Reply-To: f.braennstroem@gmx.de NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1073601611 17321 80.91.224.253 (8 Jan 2004 22:40:11 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 8 Jan 2004 22:40:11 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jan 08 23:40:08 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1Aeioy-00063z-00 for ; Thu, 08 Jan 2004 23:40:08 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1Aeh7z-00063l-LX for geh-help-gnu-emacs@m.gmane.org; Thu, 08 Jan 2004 15:51:39 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1Aeh76-00061h-4v for help-gnu-emacs@gnu.org; Thu, 08 Jan 2004 15:50:44 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1Aeh6X-0005u1-R7 for help-gnu-emacs@gnu.org; Thu, 08 Jan 2004 15:50:40 -0500 Original-Received: from [213.165.64.20] (helo=mail.gmx.net) by monty-python.gnu.org with smtp (Exim 4.24) id 1AegcJ-0002YU-4F for help-gnu-emacs@gnu.org; Thu, 08 Jan 2004 15:18:55 -0500 Original-Received: (qmail 8194 invoked by uid 65534); 8 Jan 2004 19:17:20 -0000 Original-Received: from p3EE39208.dip.t-dialin.net (EHLO rechner1.ddorf.de) (62.227.146.8) by mail.gmx.net (mp004) with SMTP; 08 Jan 2004 20:17:20 +0100 X-Authenticated: #20933907 Original-To: help-gnu-emacs@gnu.org In-Reply-To: X-Mailer: Ximian Evolution 1.4.5 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:15825 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:15825 Hello, On Thu, 2004-01-08 at 15:47, Peter Boettcher wrote: > I use this: mark 'em in dired first, then run the command > > (defun dired-ps-print-files () > (interactive) > (let ((files-to-print (dired-get-marked-files))) > (while (setq file (car files-to-print)) > (setq files-to-print (cdr files-to-print)) > (find-file file) > (ps-print-buffer-with-faces) > (kill-buffer nil)))) Works nice. Thanks! Fabian