summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-08-18 08:48:30 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-08-18 08:48:30 +0000
commit5884f21bb5d782888f0d5979a8a2c7e28c0ee25b (patch)
tree76866423e3cddb6f384c206fde13c17ff193a7f4
parent64d0475dc9d0f3783750a27bce64dd1c78e4fa01 (diff)
downloadmandoc-5884f21bb5d782888f0d5979a8a2c7e28c0ee25b.tar.gz
mandoc-5884f21bb5d782888f0d5979a8a2c7e28c0ee25b.tar.zst
mandoc-5884f21bb5d782888f0d5979a8a2c7e28c0ee25b.zip
Small updates to man.7 (next-line break-exclusions, numerical width example).
Fully tested and correct scope-rewinding of block macros.
-rw-r--r--man.745
-rw-r--r--man_macro.c29
-rw-r--r--man_term.c117
3 files changed, 139 insertions, 52 deletions
diff --git a/man.7 b/man.7
index 968f4787..16250bbc 100644
--- a/man.7
+++ b/man.7
@@ -1,4 +1,4 @@
-.\" $Id: man.7,v 1.26 2009/08/17 11:03:07 kristaps Exp $
+.\" $Id: man.7,v 1.27 2009/08/18 08:48:30 kristaps Exp $
.\"
.\" Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: August 17 2009 $
+.Dd $Mdocdate: August 18 2009 $
.Dt MAN 7
.Os
.\" SECTION
@@ -238,6 +238,7 @@ invocation.
.Pp
If a block macro is next-line scoped, it may only be followed by in-line
macros (excluding
+.Sq br ,
.Sq na ,
.Sq sp ,
.Sq nf ,
@@ -271,7 +272,15 @@ multiplier
corresponding to the width of the formatted letter n, or
.Qq m ,
corresponding to the width of the formatted letter m. The latter is the
-default, if unspecified.
+default, if unspecified. Thus,
+.Bd -literal -offset indent
+\&.HP 12n
+.Ed
+.Pp
+indicates an offset of 12
+.Qq n
+.Ns -sized
+letters.
.\" SUBSECTION
.Ss Macro Reference
.Bl -tag -width Ds
@@ -294,7 +303,15 @@ Text is rendered alternately in bold face and roman (the default font).
Whitespace between arguments is omitted in output.
.It \&HP
Begin a paragraph whose initial output line is left-justified, but
-subsequent output lines are indented.
+subsequent output lines are indented, with the following syntax:
+.Bd -literal -offset indent
+\&.HP [width]
+.Ed
+.Pp
+If
+.Va width
+is specified, it's saved for later paragraph left-margins; if
+unspecified, the saved or default width is used.
.It \&I
Text is rendered in italics.
.It \&IB
@@ -309,13 +326,17 @@ Begin a paragraph with the following syntax:
This follows the behaviour of the
.Sq \&TP
except for the macro syntax (all arguments on the line, instead of
-having next-line scope).
+having next-line scope). If
+.Va width
+is specified, it's saved for later paragraph left-margins; if
+unspecified, the saved or default width is used.
.It \&IR
Text is rendered alternately in italics and roman (the default font).
Whitespace between arguments is omitted in output.
.It \&LP, \&P, \&PP
Begin an undecorated paragraph. The scope of a paragraph is closed by a
-subsequent paragraph, sub-section, section, or end of file.
+subsequent paragraph, sub-section, section, or end of file. The saved
+paragraph left-margin width is re-set to the default.
.It \&R
Text is rendered in roman (the default font).
.It \&RB
@@ -329,13 +350,15 @@ Text is rendered in small size (one point smaller than the default font)
bold face.
.It \&SH
Begin a section. The scope of a section is only closed by another
-section or the end of file.
+section or the end of file. The paragraph left-margin width is re-set
+to the default.
.It \&SM
Text is rendered in small size (one point smaller than the default
font).
.It \&SS
Begin a sub-section. The scope of a sub-section is closed by a
-subsequent sub-section, section, or end of file.
+subsequent sub-section, section, or end of file. The paragraph
+left-margin width is re-set to the default.
.It \&TH
Sets the title of the manual page with the following syntax:
.Bd -literal -offset indent
@@ -369,8 +392,10 @@ The indentation width may be set as follows:
.Pp
Where
.Va width
-must be a properly-formed numeric width. If unspecified or improperly
-formed, the default indentation width is used.
+must be a properly-formed numeric width. If
+.Va width
+is specified, it's saved for later paragraph left-margins; if
+unspecified, the saved or default width is used.
.It \&br
Breaks the current line. Consecutive invocations have no further effect.
.It \&fi
diff --git a/man_macro.c b/man_macro.c
index c43f3f6b..bf230387 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -1,4 +1,4 @@
-/* $Id: man_macro.c,v 1.19 2009/08/13 11:45:29 kristaps Exp $ */
+/* $Id: man_macro.c,v 1.20 2009/08/18 08:48:30 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -107,24 +107,39 @@ rew_dohalt(int tok, enum man_type type, const struct man_node *n)
switch (tok) {
case (MAN_SH):
- /* Break at root. */
+ /* Rewind to ourselves. */
if (type == n->type && tok == n->tok)
return(REW_REWIND);
break;
case (MAN_SS):
- /* Break at section. */
+ /* Rewind to ourselves. */
if (type == n->type && tok == n->tok)
return(REW_REWIND);
- if (MAN_BODY == n->type && MAN_SH == n->tok)
+ /* Rewind to a section, if a block. */
+ if (MAN_BLOCK == type && MAN_SH == n->parent->tok &&
+ MAN_BODY == n->parent->type)
+ return(REW_REWIND);
+ /* Don't go beyond a section. */
+ if (MAN_SH == n->tok)
return(REW_HALT);
break;
default:
- /* Break at subsection. */
+ /* Rewind to ourselves. */
if (type == n->type && tok == n->tok)
return(REW_REWIND);
- if (MAN_BODY == n->type && MAN_SS == n->tok)
+ /* Rewind to a subsection, if a block. */
+ if (MAN_BLOCK == type && MAN_SS == n->parent->tok &&
+ MAN_BODY == n->parent->type)
+ return(REW_REWIND);
+ /* Don't go beyond a subsection. */
+ if (MAN_SS == n->tok)
return(REW_HALT);
- if (MAN_BODY == n->type && MAN_SH == n->tok)
+ /* Rewind to a section, if a block. */
+ if (MAN_BLOCK == type && MAN_SH == n->parent->tok &&
+ MAN_BODY == n->parent->type)
+ return(REW_REWIND);
+ /* Don't go beyond a section. */
+ if (MAN_SH == n->tok)
return(REW_HALT);
break;
}
diff --git a/man_term.c b/man_term.c
index 2ea5d10a..310ce568 100644
--- a/man_term.c
+++ b/man_term.c
@@ -1,4 +1,4 @@
-/* $Id: man_term.c,v 1.23 2009/08/17 11:03:07 kristaps Exp $ */
+/* $Id: man_term.c,v 1.24 2009/08/18 08:48:30 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -27,15 +27,14 @@
#define INDENT 7
#define HALFINDENT 3
-#ifdef __linux__
-extern size_t strlcpy(char *, const char *, size_t);
-extern size_t strlcat(char *, const char *, size_t);
-#endif
-
+struct mtermp {
+ int fl;
#define MANT_LITERAL (1 << 0)
+ int lmargin;
+};
#define DECL_ARGS struct termp *p, \
- int *fl, \
+ struct mtermp *mt, \
const struct man_node *n, \
const struct man_meta *m
@@ -103,6 +102,11 @@ static const struct termact termacts[MAN_MAX] = {
{ pre_r, NULL }, /* r */
};
+#ifdef __linux__
+extern size_t strlcpy(char *, const char *, size_t);
+extern size_t strlcat(char *, const char *, size_t);
+#endif
+
static void print_head(struct termp *,
const struct man_meta *);
static void print_body(DECL_ARGS);
@@ -117,16 +121,18 @@ static int arg_width(const struct man_node *);
int
man_run(struct termp *p, const struct man *m)
{
- int fl;
+ struct mtermp mt;
print_head(p, man_meta(m));
p->flags |= TERMP_NOSPACE;
assert(man_node(m));
assert(MAN_ROOT == man_node(m)->type);
- fl = 0;
+ mt.fl = 0;
+ mt.lmargin = INDENT;
+
if (man_node(m)->child)
- print_body(p, &fl, man_node(m)->child, man_meta(m));
+ print_body(p, &mt, man_node(m)->child, man_meta(m));
print_foot(p, man_meta(m));
return(1);
@@ -223,7 +229,7 @@ static int
pre_fi(DECL_ARGS)
{
- *fl &= ~MANT_LITERAL;
+ mt->fl &= ~MANT_LITERAL;
return(1);
}
@@ -234,7 +240,7 @@ pre_nf(DECL_ARGS)
{
term_newln(p);
- *fl |= MANT_LITERAL;
+ mt->fl |= MANT_LITERAL;
return(1);
}
@@ -251,7 +257,7 @@ pre_IR(DECL_ARGS)
p->flags |= TERMP_UNDER;
if (i > 0)
p->flags |= TERMP_NOSPACE;
- print_node(p, fl, nn, m);
+ print_node(p, mt, nn, m);
if ( ! (i % 2))
p->flags &= ~TERMP_UNDER;
}
@@ -270,7 +276,7 @@ pre_IB(DECL_ARGS)
p->flags |= i % 2 ? TERMP_BOLD : TERMP_UNDER;
if (i > 0)
p->flags |= TERMP_NOSPACE;
- print_node(p, fl, nn, m);
+ print_node(p, mt, nn, m);
p->flags &= i % 2 ? ~TERMP_BOLD : ~TERMP_UNDER;
}
return(0);
@@ -289,7 +295,7 @@ pre_RB(DECL_ARGS)
p->flags |= TERMP_BOLD;
if (i > 0)
p->flags |= TERMP_NOSPACE;
- print_node(p, fl, nn, m);
+ print_node(p, mt, nn, m);
if (i % 2)
p->flags &= ~TERMP_BOLD;
}
@@ -309,7 +315,7 @@ pre_RI(DECL_ARGS)
p->flags |= TERMP_UNDER;
if (i > 0)
p->flags |= TERMP_NOSPACE;
- print_node(p, fl, nn, m);
+ print_node(p, mt, nn, m);
if ( ! (i % 2))
p->flags &= ~TERMP_UNDER;
}
@@ -329,7 +335,7 @@ pre_BR(DECL_ARGS)
p->flags |= TERMP_BOLD;
if (i > 0)
p->flags |= TERMP_NOSPACE;
- print_node(p, fl, nn, m);
+ print_node(p, mt, nn, m);
if ( ! (i % 2))
p->flags &= ~TERMP_BOLD;
}
@@ -348,7 +354,7 @@ pre_BI(DECL_ARGS)
p->flags |= i % 2 ? TERMP_UNDER : TERMP_BOLD;
if (i > 0)
p->flags |= TERMP_NOSPACE;
- print_node(p, fl, nn, m);
+ print_node(p, mt, nn, m);
p->flags &= i % 2 ? ~TERMP_UNDER : ~TERMP_BOLD;
}
return(0);
@@ -409,21 +415,40 @@ pre_br(DECL_ARGS)
static int
pre_HP(DECL_ARGS)
{
+ size_t len;
+ int ival;
+ const struct man_node *nn;
switch (n->type) {
case (MAN_BLOCK):
fmt_block_vspace(p, n);
- break;
+ return(1);
case (MAN_BODY):
p->flags |= TERMP_NOBREAK;
p->flags |= TERMP_TWOSPACE;
- p->offset = INDENT;
- p->rmargin = INDENT * 2;
break;
default:
return(0);
}
+ len = (size_t)mt->lmargin;
+ ival = -1;
+
+ /* Calculate offset. */
+
+ if (NULL != (nn = n->parent->head->child))
+ if ((ival = arg_width(nn)) >= 0)
+ len = (size_t)ival;
+
+ if (0 == len)
+ len = 1;
+
+ p->offset = INDENT;
+ p->rmargin = INDENT + len;
+
+ if (ival >= 0)
+ mt->lmargin = ival;
+
return(1);
}
@@ -434,6 +459,9 @@ post_HP(DECL_ARGS)
{
switch (n->type) {
+ case (MAN_BLOCK):
+ term_flushln(p);
+ break;
case (MAN_BODY):
term_flushln(p);
p->flags &= ~TERMP_NOBREAK;
@@ -454,6 +482,7 @@ pre_PP(DECL_ARGS)
switch (n->type) {
case (MAN_BLOCK):
+ mt->lmargin = INDENT;
fmt_block_vspace(p, n);
break;
default:
@@ -489,7 +518,7 @@ pre_IP(DECL_ARGS)
return(1);
}
- len = INDENT;
+ len = (size_t)mt->lmargin;
ival = -1;
/* Calculate offset. */
@@ -513,9 +542,12 @@ pre_IP(DECL_ARGS)
if (ival < 0)
break;
+ /* Set the saved left-margin. */
+ mt->lmargin = ival;
+
/* Don't print the length value. */
for (nn = n->child; nn->next; nn = nn->next)
- print_node(p, fl, nn, m);
+ print_node(p, mt, nn, m);
return(0);
case (MAN_BODY):
p->offset = INDENT + len;
@@ -575,7 +607,7 @@ pre_TP(DECL_ARGS)
return(1);
}
- len = INDENT;
+ len = (size_t)mt->lmargin;
ival = -1;
/* Calculate offset. */
@@ -597,7 +629,11 @@ pre_TP(DECL_ARGS)
/* Don't print same-line elements. */
for (nn = n->child; nn; nn = nn->next)
if (nn->line > n->line)
- print_node(p, fl, nn, m);
+ print_node(p, mt, nn, m);
+
+ if (ival >= 0)
+ mt->lmargin = ival;
+
return(0);
case (MAN_BODY):
p->offset = INDENT + len;
@@ -640,17 +676,24 @@ pre_SS(DECL_ARGS)
switch (n->type) {
case (MAN_BLOCK):
- term_newln(p);
- if (n->prev)
- term_vspace(p);
+ mt->lmargin = INDENT;
+ /* If following a prior empty `SS', no vspace. */
+ if (n->prev && MAN_SS == n->prev->tok)
+ if (NULL == n->prev->body->child)
+ break;
+ if (NULL == n->prev)
+ break;
+ term_vspace(p);
break;
case (MAN_HEAD):
p->flags |= TERMP_BOLD;
p->offset = HALFINDENT;
break;
- default:
+ case (MAN_BODY):
p->offset = INDENT;
break;
+ default:
+ break;
}
return(1);
@@ -667,6 +710,9 @@ post_SS(DECL_ARGS)
term_newln(p);
p->flags &= ~TERMP_BOLD;
break;
+ case (MAN_BODY):
+ term_newln(p);
+ break;
default:
break;
}
@@ -680,6 +726,7 @@ pre_SH(DECL_ARGS)
switch (n->type) {
case (MAN_BLOCK):
+ mt->lmargin = INDENT;
/* If following a prior empty `SH', no vspace. */
if (n->prev && MAN_SH == n->prev->tok)
if (NULL == n->prev->body->child)
@@ -745,23 +792,23 @@ print_node(DECL_ARGS)
n->string[sz - 2] == '\\')
p->flags |= TERMP_NOSPACE;
/* FIXME: this means that macro lines are munged! */
- if (MANT_LITERAL & *fl) {
+ if (MANT_LITERAL & mt->fl) {
p->flags |= TERMP_NOSPACE;
term_flushln(p);
}
break;
default:
if (termacts[n->tok].pre)
- c = (*termacts[n->tok].pre)(p, fl, n, m);
+ c = (*termacts[n->tok].pre)(p, mt, n, m);
break;
}
if (c && n->child)
- print_body(p, fl, n->child, m);
+ print_body(p, mt, n->child, m);
if (MAN_TEXT != n->type)
if (termacts[n->tok].post)
- (*termacts[n->tok].post)(p, fl, n, m);
+ (*termacts[n->tok].post)(p, mt, n, m);
}
@@ -769,10 +816,10 @@ static void
print_body(DECL_ARGS)
{
- print_node(p, fl, n, m);
+ print_node(p, mt, n, m);
if ( ! n->next)
return;
- print_body(p, fl, n->next, m);
+ print_body(p, mt, n->next, m);
}