Function: woman-toggle-fill-frame
woman-toggle-fill-frame is an interactive and byte-compiled function
defined in woman.el.gz.
Signature
(woman-toggle-fill-frame)
Documentation
Toggle formatting to fill (most of) the width of the current frame.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman-toggle-fill-frame ()
"Toggle formatting to fill (most of) the width of the current frame."
(interactive)
(setq woman-fill-frame (not woman-fill-frame))
(message "Woman fill column set to %s."
(if woman-fill-frame "frame width" woman-fill-column)))