From 63e894a162b36334d2f82d583b88946d26c8c9f2 Mon Sep 17 00:00:00 2001 From: Manuel Giraud Date: Mon, 22 Jul 2024 20:44:46 +0200 Subject: [PATCH] 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. (cherry picked from commit 1aaadc8aec5272d453b996ca4b4761f3da6a17db) --- lisp/doc-view.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/doc-view.el b/lisp/doc-view.el index 38907c2f226..718428c4b7d 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)) -- 2.39.2