summaryrefslogtreecommitdiff
path: root/lisp/woman.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@jurta.org>2004-03-23 07:35:35 +0000
committerJuri Linkov <juri@jurta.org>2004-03-23 07:35:35 +0000
commitbd48e7c618ef107972df86eeb5ae9edac5883cf7 (patch)
tree07153c991ff0005d9faf5b6bd64a8ef0b640e5b8 /lisp/woman.el
parentaec2bd36f16c616957b684e7b60f7dba4b378554 (diff)
downloademacs-bd48e7c618ef107972df86eeb5ae9edac5883cf7.tar.gz
(woman-fill-frame): Doc fix.
(woman-decode-region): Use window-width instead of frame-width.
Diffstat (limited to 'lisp/woman.el')
-rw-r--r--lisp/woman.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/woman.el b/lisp/woman.el
index ed04ae4c83f..d25f60f58c1 100644
--- a/lisp/woman.el
+++ b/lisp/woman.el
@@ -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)