From: Manuel Giraud Date: Mon, 22 Jul 2024 18:44:46 +0000 (+0200) Subject: Fix DocView with DVI files X-Git-Tag: archive/raspbian/1%30.1+1-3+rpi1^2~2^2~20^2~645 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1aaadc8aec5272d453b996ca4b4761f3da6a17db;p=emacs.git Fix DocView with DVI files * lisp/doc-view.el (doc-view-pdf/ps->png): Use `doc-view-pdf->png-converter-function' for DVI files, too, since they are converted to PDF earlier. --- diff --git a/lisp/doc-view.el b/lisp/doc-view.el index 65ac6e00768..e7d7ed4a862 100644 --- a/lisp/doc-view.el +++ b/lisp/doc-view.el @@ -1328,7 +1328,7 @@ is named like ODF with the extension turned to pdf." "Convert PDF-PS to PNG asynchronously." (funcall (pcase doc-view-doc-type - ((or 'pdf 'odf 'epub 'cbz 'fb2 'xps 'oxps) + ((or 'pdf 'odf 'epub 'cbz 'fb2 'xps 'oxps 'dvi) doc-view-pdf->png-converter-function) ('djvu #'doc-view-djvu->tiff-converter-ddjvu) (_ #'doc-view-ps->png-converter-ghostscript))