]> git.eshelyaron.com Git - emacs.git/commitdiff
(doc-view-mode): Bugfix: Add conversion killing
authorTassilo Horn <tassilo@member.fsf.org>
Wed, 5 Nov 2008 11:06:22 +0000 (11:06 +0000)
committerTassilo Horn <tassilo@member.fsf.org>
Wed, 5 Nov 2008 11:06:22 +0000 (11:06 +0000)
function to kill-buffer-hook, not to kill-buffer.
Reported by Markus Triska <markus.triska@gmx.at>

lisp/ChangeLog
lisp/doc-view.el

index 13a84f6576c7daa422bb55c65973c177da48cbc0..2a0e4461c5781ea530deee73035ea4718cfcae7c 100644 (file)
@@ -1,3 +1,9 @@
+2008-11-05  Tassilo Horn  <tassilo@member.fsf.org>
+
+       * doc-view.el (doc-view-mode): Bugfix: Add conversion killing
+       function to kill-buffer-hook, not to kill-buffer.
+       Reported by Markus Triska <markus.triska@gmx.at>
+
 2008-11-04  Jay Belanger  <jay.p.belanger@gmail.com>
 
        * calc/calc.el (calc-quit): Make sure that the keypad buffer
index 36029fb2f6eadacb921378cedaf407343c18508e..08a0a1ce5b11d9b9dfdc83ad0f55a6320c0f5a72 100644 (file)
@@ -1141,7 +1141,7 @@ toggle between displaying the document or editing it as text.
               (remove-overlays (point-min) (point-max) 'doc-view t))
            nil t)
   (add-hook 'clone-indirect-buffer-hook 'doc-view-clone-buffer-hook nil t)
-  (add-hook 'kill-buffer 'doc-view-kill-proc nil t)
+  (add-hook 'kill-buffer-hook 'doc-view-kill-proc nil t)
 
   (remove-overlays (point-min) (point-max) 'doc-view t) ;Just in case.
   ;; Keep track of display info ([vh]scroll, page number, overlay, ...)