From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: twiki7619@gmail.com Newsgroups: gmane.emacs.help Subject: PDF from dired-buffer with win32 Reader in background? Date: Fri, 12 Oct 2012 01:54:25 -0700 (PDT) Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1350032132 9202 80.91.229.3 (12 Oct 2012 08:55:32 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 12 Oct 2012 08:55:32 +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 Oct 12 10:55:39 2012 Return-path: Envelope-to: geh-help-gnu-emacs@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 1TMb1s-0000Wy-EM for geh-help-gnu-emacs@m.gmane.org; Fri, 12 Oct 2012 10:55:36 +0200 Original-Received: from localhost ([::1]:48426 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TMb1d-0005BU-29 for geh-help-gnu-emacs@m.gmane.org; Fri, 12 Oct 2012 04:55:21 -0400 Original-Received: by 10.224.223.14 with SMTP id ii14mr2312155qab.3.1350032065746; Fri, 12 Oct 2012 01:54:25 -0700 (PDT) Original-Received: by 10.52.29.225 with SMTP id n1mr723298vdh.5.1350032065680; Fri, 12 Oct 2012 01:54:25 -0700 (PDT) Original-Path: usenet.stanford.edu!l8no46128166qao.0!news-out.google.com!r17ni19491880qap.0!nntp.google.com!l8no46128164qao.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=31.199.112.21; posting-account=MVnG6QoAAACvX9dc78JRBNJiZAWqiyVd Original-NNTP-Posting-Host: 31.199.112.21 User-Agent: G2/1.0 Injection-Date: Fri, 12 Oct 2012 08:54:25 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:194856 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 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 Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:87188 Archived-At: To read PDF files from within a Dired buffer I use ! on the name of the file and the following settings in my. emacs ... (add-hook 'dired-load-hook (function (lambda () (load "dired-x")))) (setq dired-guess-shell-alist-user (list (list "\\.pdf$" "acrord32.exe") (list "\\.PDF$" "acrord32.exe") )) ... (The path of acrord32.exe is in my environment variable PATH) Emacs, however, remains locked until I close Adobe Reader! How do I run acrord32.exe in the background while maintaining control of Emacs? THANKS!