aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/doc-view.el
diff options
context:
space:
mode:
authorTassilo Horn <[email protected]>2008-03-18 17:43:26 +0000
committerTassilo Horn <[email protected]>2008-03-18 17:43:26 +0000
commit322f4559810e375b0d42e4eae12339b4ebd8d051 (patch)
treed876bb9119a4473473463e59e92aa007c1c7c224 /lisp/doc-view.el
parent23cda57253e64d420e12e1ab56202bea5354c460 (diff)
(doc-view-initiate-display): Use doc-view-doc-type
instead of file name extension to make docs with uncommon extensions work.
Diffstat (limited to 'lisp/doc-view.el')
-rw-r--r--lisp/doc-view.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/doc-view.el b/lisp/doc-view.el
index 2c7862df88..da8edaaaed 100644
--- a/lisp/doc-view.el
+++ b/lisp/doc-view.el
@@ -957,7 +957,7 @@ If BACKWARD is non-nil, jump to the previous match."
(defun doc-view-initiate-display ()
;; Switch to image display if possible
- (if (doc-view-mode-p (intern (file-name-extension doc-view-buffer-file-name)))
+ (if (doc-view-mode-p doc-view-doc-type)
(progn
(doc-view-buffer-message)
(setf (doc-view-current-page) (or (doc-view-current-page) 1))