Function: text-scale-decrease
text-scale-decrease is an autoloaded, interactive and byte-compiled
function defined in face-remap.el.gz.
Signature
(text-scale-decrease DEC)
Documentation
Decrease the font size of the default face in the current buffer by DEC steps.
See text-scale-increase for more details.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/face-remap.el.gz
;;;###autoload
(defun text-scale-decrease (dec)
"Decrease the font size of the default face in the current buffer by DEC steps.
See `text-scale-increase' for more details."
(interactive "p")
(text-scale-increase (- dec)))