diff options
| author | Stefan Kangas | 2022-07-09 12:43:50 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2022-07-09 12:45:11 +0200 |
| commit | 75e3736ba17d993bfd99b5238ab95998f331982e (patch) | |
| tree | 097d41554730992e000311a82d346172c382e3f1 | |
| parent | d40cb5243023fe6f431ee0a629626fb8e90f5300 (diff) | |
| download | emacs-75e3736ba17d993bfd99b5238ab95998f331982e.tar.gz emacs-75e3736ba17d993bfd99b5238ab95998f331982e.zip | |
* lisp/woman.el (woman-fill-column): Increase default to 70.
| -rw-r--r-- | lisp/woman.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/woman.el b/lisp/woman.el index 6bb775115a1..c74faa8af48 100644 --- a/lisp/woman.el +++ b/lisp/woman.el | |||
| @@ -841,10 +841,12 @@ Only useful when run on a graphic display such as X or MS-Windows." | |||
| 841 | :tag "WoMan Formatting" | 841 | :tag "WoMan Formatting" |
| 842 | :group 'woman) | 842 | :group 'woman) |
| 843 | 843 | ||
| 844 | (defcustom woman-fill-column 65 | 844 | ;; This could probably be 80 to match 'Man-width'. |
| 845 | "Right margin for formatted text -- default is 65." | 845 | (defcustom woman-fill-column 70 |
| 846 | "Right margin for formatted text -- default is 70." | ||
| 846 | :type 'natnum | 847 | :type 'natnum |
| 847 | :group 'woman-formatting) | 848 | :group 'woman-formatting |
| 849 | :version "29.1") | ||
| 848 | 850 | ||
| 849 | (defcustom woman-fill-frame nil | 851 | (defcustom woman-fill-frame nil |
| 850 | ;; Based loosely on a suggestion by Theodore Jump: | 852 | ;; Based loosely on a suggestion by Theodore Jump: |