Function: doc-view-shrink

doc-view-shrink is an interactive and byte-compiled function defined in doc-view.el.gz.

Signature

(doc-view-shrink FACTOR)

Documentation

Shrink the document by FACTOR.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/doc-view.el.gz
(defun doc-view-shrink (factor)
  "Shrink the document by FACTOR."
  (interactive (list doc-view-shrink-factor))
  (doc-view-enlarge (/ 1.0 factor)))