bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#4377: marked as done (allow one to still choose xpdf instead of doc-


From: Emacs bug Tracking System
Subject: bug#4377: marked as done (allow one to still choose xpdf instead of doc-view)
Date: Sun, 13 Sep 2009 02:10:05 +0000

Your message dated Sat, 12 Sep 2009 22:06:11 -0400
with message-id <87skerbnu4.fsf@cyd.mit.edu>
and subject line Re: allow one to still choose xpdf instead of doc-view
has caused the Emacs bug report #4377,
regarding allow one to still choose xpdf instead of doc-view
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@emacsbugs.donarmstrong.com
immediately.)


-- 
4377: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=4377
Emacs Bug Tracking System
Contact owner@emacsbugs.donarmstrong.com with problems
--- Begin Message --- Subject: allow one to still choose xpdf instead of doc-view Date: Wed, 09 Sep 2009 02:28:42 +0800
My god, that's tons and tons of lisp to add to one's .emacs file, just
to say "I wish to have emacs still call xpdf when encountering a .pdf
file, like back before they introduced doc-view".

I'm filing an emacs-pretest-bug so they will make it easier to allow one
to choose if one wants doc-view, or stick with xpdf.

>>>>> "KY" == Katsumi Yamaoka <yamaoka@jpl.org> writes:

>>>>> jidanni@jidanni.org wrote:

>> The only way to get xpdf called on them is via dired-do-shell-command,
>> which knows about xpdf.

KY> Is what you want the one like this?


KY> (defadvice dired-view-file (around use-xpdf activate)
KY>   "Use xpdf to view a pdf file."
KY>   (unless (let ((file (dired-get-file-for-visit)))
KY>         (and (not (file-directory-p file))
KY>              (let ((case-fold-search t))
KY>                (string-match "\\.pdf\\'" file))
KY>              (prog1
KY>                  t
KY>                (call-process "xpdf" nil nil nil file))))
KY>     ad-do-it))


KY> The `v' key in the dired buffer uses xpdf to display a file iff
KY> its extension is ".pdf".

KY> Otherwise,


KY> (autoload 'mailcap-parse-mailcaps "mailcap" nil t)
KY> (autoload 'mm-mailcap-command "mm-decode")
KY> (defadvice dired-view-file (around use-mailcap-mime-data activate)
KY>   "Use an external viewer to view a file according to `mailcap-mime-data'."
KY>   (unless (let ((file (dired-get-file-for-visit))
KY>             extension type command)
KY>         (and (not (file-directory-p file))
KY>              (progn
KY>                (mailcap-parse-mailcaps)
KY>                (setq extension (file-name-extension file)))
KY>              (setq type (mailcap-extension-to-mime extension))
KY>              (setq command (mailcap-mime-info type))
KY>              (setq command (mm-mailcap-command command file nil))
KY>              (prog1
KY>                  t
KY>                (shell-command command))))
KY>     ad-do-it))


KY> There will be other ELisp packages that use external viewers.
KY> `gnus-dired-find-file-mailcap' is it, though it may not be your
KY> taste.


--- End Message ---
--- Begin Message --- Subject: Re: allow one to still choose xpdf instead of doc-view Date: Sat, 12 Sep 2009 22:06:11 -0400
> My god, that's tons and tons of lisp to add to one's .emacs file, just
> to say "I wish to have emacs still call xpdf when encountering a .pdf
> file, like back before they introduced doc-view".

One line solution:

(setq auto-mode-alist (rassq-delete-all 'doc-view-mode auto-mode-alist))

--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]