mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 18:37:33 +00:00
(woman-fill-frame): Doc fix.
(woman-decode-region): Use window-width instead of frame-width.
This commit is contained in:
parent
aec2bd36f1
commit
bd48e7c618
1 changed files with 2 additions and 2 deletions
|
|
@ -809,7 +809,7 @@ Only useful when run on a graphic display such as X or MS-Windows."
|
|||
|
||||
(defcustom woman-fill-frame nil
|
||||
;; Based loosely on a suggestion by Theodore Jump:
|
||||
"*If non-nil then most of the frame width is used."
|
||||
"*If non-nil then most of the window width is used."
|
||||
:type 'boolean
|
||||
:group 'woman-formatting)
|
||||
|
||||
|
|
@ -2211,7 +2211,7 @@ Currently set only from '\" t in the first line of the source file.")
|
|||
;; Based loosely on a suggestion by Theodore Jump:
|
||||
(if (or woman-fill-frame
|
||||
(not (and (integerp woman-fill-column) (> woman-fill-column 0))))
|
||||
(setq woman-fill-column (- (frame-width) woman-default-indent)))
|
||||
(setq woman-fill-column (- (window-width) woman-default-indent)))
|
||||
|
||||
;; Check for preprocessor requests:
|
||||
(goto-char from)
|
||||
|
|
|
|||
Loading…
Reference in a new issue