2008-01-04 Tassilo Horn <tassilo@member.fsf.org>
* doc-view.el (doc-view-scroll-up-or-next-page) (doc-view-scroll-down-or-previous-page): Don't scroll to the top/bottom again when on the first/last page.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2008-01-04 Tassilo Horn <tassilo@member.fsf.org>
|
||||
|
||||
* doc-view.el (doc-view-scroll-up-or-next-page)
|
||||
(doc-view-scroll-down-or-previous-page): Don't scroll to the
|
||||
top/bottom again when on the first/last page.
|
||||
|
||||
2008-01-04 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* bs.el (bs--get-mode-name): Fix typo in previous change.
|
||||
|
||||
@@ -380,15 +380,19 @@ has finished."
|
||||
"Scroll page up if possible, else goto next page."
|
||||
(interactive)
|
||||
(when (= (window-vscroll) (image-scroll-up nil))
|
||||
(doc-view-next-page)
|
||||
(set-window-vscroll nil 0)))
|
||||
(let ((cur-page doc-view-current-page))
|
||||
(doc-view-next-page)
|
||||
(when (/= cur-page doc-view-current-page)
|
||||
(set-window-vscroll nil 0)))))
|
||||
|
||||
(defun doc-view-scroll-down-or-previous-page ()
|
||||
"Scroll page down if possible, else goto previous page."
|
||||
(interactive)
|
||||
(when (= (window-vscroll) (image-scroll-down nil))
|
||||
(doc-view-previous-page)
|
||||
(image-scroll-up nil)))
|
||||
(let ((cur-page doc-view-current-page))
|
||||
(doc-view-previous-page)
|
||||
(when (/= cur-page doc-view-current-page)
|
||||
(image-scroll-up nil)))))
|
||||
|
||||
;;;; Utility Functions
|
||||
|
||||
|
||||
Reference in New Issue
Block a user