* 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)
"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))