mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-08 00:33:13 -08:00
* doc-view.el (doc-view-mode): Silence --without-x compilation.
This commit is contained in:
parent
f4a1d572bc
commit
2f68e15795
2 changed files with 8 additions and 3 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2013-09-18 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* doc-view.el (doc-view-mode): Silence --without-x compilation.
|
||||
|
||||
* image.el (image-type-from-buffer, image-multi-frame-p):
|
||||
Remove --without-x warning/error.
|
||||
|
||||
|
|
|
|||
|
|
@ -1733,9 +1733,12 @@ toggle between displaying the document or editing it as text.
|
|||
"/" (:eval (number-to-string (doc-view-last-page-number)))))
|
||||
;; Don't scroll unless the user specifically asked for it.
|
||||
(setq-local auto-hscroll-mode nil)
|
||||
(setq-local mwheel-scroll-up-function #'doc-view-scroll-up-or-next-page)
|
||||
(setq-local mwheel-scroll-down-function
|
||||
#'doc-view-scroll-down-or-previous-page)
|
||||
(if (boundp 'mwheel-scroll-up-function) ; not --without-x build
|
||||
(setq-local mwheel-scroll-up-function
|
||||
#'doc-view-scroll-up-or-next-page))
|
||||
(if (boundp 'mwheel-scroll-down-function)
|
||||
(setq-local mwheel-scroll-down-function
|
||||
#'doc-view-scroll-down-or-previous-page))
|
||||
(setq-local cursor-type nil)
|
||||
(use-local-map doc-view-mode-map)
|
||||
(add-hook 'after-revert-hook 'doc-view-reconvert-doc nil t)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue