diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/doc-view.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2df31ccbe7e..7823c36e378 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-01-08 Tassilo Horn <tassilo@member.fsf.org> | ||
| 2 | |||
| 3 | * doc-view.el (doc-view-mode-p): Check for png or imagemagick | ||
| 4 | image backend support. Either of them is fine. | ||
| 5 | |||
| 1 | 2011-01-08 Chong Yidong <cyd@stupidchicken.com> | 6 | 2011-01-08 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * subr.el (y-or-n-p): Doc fix. | 8 | * subr.el (y-or-n-p): Doc fix. |
diff --git a/lisp/doc-view.el b/lisp/doc-view.el index fce3597409c..636f78031fa 100644 --- a/lisp/doc-view.el +++ b/lisp/doc-view.el | |||
| @@ -621,7 +621,8 @@ It's a subdirectory of `doc-view-cache-directory'." | |||
| 621 | Document types are symbols like `dvi', `ps', `pdf', or `odf' (any | 621 | Document types are symbols like `dvi', `ps', `pdf', or `odf' (any |
| 622 | OpenDocument format)." | 622 | OpenDocument format)." |
| 623 | (and (display-graphic-p) | 623 | (and (display-graphic-p) |
| 624 | (image-type-available-p 'png) | 624 | (or (image-type-available-p 'imagemagick) |
| 625 | (image-type-available-p 'png)) | ||
| 625 | (cond | 626 | (cond |
| 626 | ((eq type 'dvi) | 627 | ((eq type 'dvi) |
| 627 | (and (doc-view-mode-p 'pdf) | 628 | (and (doc-view-mode-p 'pdf) |