diff options
author | Shuguang Sun <shuguang79@qq.com> | 2022-01-21 11:25:27 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-01-21 11:25:27 +0100 |
commit | 3ffa13d0aa00f463e134c568c2d52fb03637a108 (patch) | |
tree | e0f8c91946bed279499dc1ede3c2603d9ee538f8 /lisp/doc-view.el | |
parent | 1e54833e8a4c3d17690a3ca40cd1fab8be674aa5 (diff) | |
download | emacs-3ffa13d0aa00f463e134c568c2d52fb03637a108.tar.gz emacs-3ffa13d0aa00f463e134c568c2d52fb03637a108.tar.bz2 emacs-3ffa13d0aa00f463e134c568c2d52fb03637a108.zip |
Use the correct converter for odf files in doc-view
* lisp/doc-view.el (doc-view-pdf/ps->png): Use the correct
converter for odf files (bug#53354).
Diffstat (limited to 'lisp/doc-view.el')
-rw-r--r-- | lisp/doc-view.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/doc-view.el b/lisp/doc-view.el index 5b462b24f5a..5e160f5dff1 100644 --- a/lisp/doc-view.el +++ b/lisp/doc-view.el @@ -1189,7 +1189,7 @@ is named like ODF with the extension turned to pdf." "Convert PDF-PS to PNG asynchronously." (funcall (pcase doc-view-doc-type - ('pdf doc-view-pdf->png-converter-function) + ((or 'pdf 'odf) doc-view-pdf->png-converter-function) ('djvu #'doc-view-djvu->tiff-converter-ddjvu) (_ #'doc-view-ps->png-converter-ghostscript)) pdf-ps png nil |