Function: variable-pitch-mode
variable-pitch-mode is an autoloaded, interactive and byte-compiled
function defined in face-remap.el.gz.
Signature
(variable-pitch-mode &optional ARG)
Documentation
Variable-pitch default-face mode.
An interface to buffer-face-mode(var)/buffer-face-mode(fun) which uses the variable-pitch face.
Besides the choice of face, it is the same as buffer-face-mode(var)/buffer-face-mode(fun).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/face-remap.el.gz
;; ----------------------------------------------------------------
;; variable-pitch-mode
;;;###autoload
(defun variable-pitch-mode (&optional arg)
"Variable-pitch default-face mode.
An interface to `buffer-face-mode' which uses the `variable-pitch' face.
Besides the choice of face, it is the same as `buffer-face-mode'."
(interactive (list (or current-prefix-arg 'toggle)))
(buffer-face-mode-invoke 'variable-pitch (or arg t)
(called-interactively-p 'interactive)))