[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Quilt-dev] [patch v2 06/26] Man page: use groff_man(7)s EX and EE macro
From: |
Jean Delvare |
Subject: |
[Quilt-dev] [patch v2 06/26] Man page: use groff_man(7)s EX and EE macros for examples |
Date: |
Tue, 26 Jul 2022 14:43:14 +0200 |
User-agent: |
quilt/0.67 |
This eliminates the use of low-level requests in this man page (the
groffism ".fam" to change the font family and the switching off and on
of fill mode with ".nf" and ".fi".)
---
doc/quilt.1.in | 17 +++++++----------
1 file changed, 7 insertions(+), 10 deletions(-)
--- quilt.orig/doc/quilt.1.in 2022-07-05 14:30:25.351887565 +0200
+++ quilt/doc/quilt.1.in 2022-07-05 14:50:13.248225596 +0200
@@ -163,9 +163,7 @@ environment, otherwise defaults to "-FRS
.
.SH FILES
.SS "Example of working tree"
-.fam C
-.RS
-.nf
+.EX
work/
├── patches/
│ ├── series (list of patches to apply)
@@ -181,9 +179,7 @@ work/
│ │ └── ...
│ └── ...
└── ...
-.fi
-.RE
-.fam T
+.EE
.PP
The patches/ directory is precious as it contains all your patches as
well as the order in which it should be applied.
@@ -340,11 +336,12 @@ over blue instead of the default green o
For that, add the following content to ~/.quiltrc (or
/etc/quilt.quiltrc):
.PP
-.nf
- QUILT_DIFF_ARGS="--color"
- QUILT_COLORS='diff_hdr=35;44'
-.fi
+.EX
+.RS
+QUILT_DIFF_ARGS="--color"
+QUILT_COLORS='diff_hdr=35;44'
.RE
+.EE
.
.SH AUTHORS
Quilt started as a series of scripts written by Andrew Morton
- [Quilt-dev] [patch v2 00/26] doc/quilt.1.in refactor revisited, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 01/26] Man page: the man macro RE is given an argument when it does not need one, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 02/26] Man page: eliminate or replace blank lines, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 03/26] Man page: break input lines at all sentence endings, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 04/26] Man page: reorganize sections, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 05/26] Man page: use font macros instead of font escapes, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 06/26] Man page: use groff_man(7)s EX and EE macros for examples,
Jean Delvare <=
- [Quilt-dev] [patch v2 07/26] Man page: escape ASCII hyphen-minus characters used as such, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 08/26] Man page: make synopsis comprehensive, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 09/26] Man page: use character escapes for directional quotes and spacing tilde, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 10/26] Man page: use "e.g." correctly, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 11/26] Man page: italicize work titles, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 12/26] Man page: update internal and external cross-references, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 13/26] Man page: set filespecs and environment variable names in italics, Jean Delvare, 2022/07/26
- [Quilt-dev] [patch v2 14/26] Man page: document -h flag in the Options section, Jean Delvare, 2022/07/26