summaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_action.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-14 16:02:29 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-14 16:02:29 +0000
commit0d0017d2dfe6bf076de2177bd2708cc6e3d753dc (patch)
tree51ed387e28fa8eb05fb98755444107d60196b5be /mdoc_action.c
parentd3e623b20e91ba55cfffcf4118ec1a7e54c0ce6d (diff)
downloadmandoc-0d0017d2dfe6bf076de2177bd2708cc6e3d753dc.tar.gz
mandoc-0d0017d2dfe6bf076de2177bd2708cc6e3d753dc.tar.zst
mandoc-0d0017d2dfe6bf076de2177bd2708cc6e3d753dc.zip
"Warn on unknown argument for .At and print it like [new] groff." (patch by Joerg Sonnenberger, ed. Kristaps)
Keep short-log of commits in index.sgml. Document compatibility with new/old groff in mdoc.7.
Diffstat (limited to 'mdoc_action.c')
-rw-r--r--mdoc_action.c24
1 files changed, 18 insertions, 6 deletions
diff --git a/mdoc_action.c b/mdoc_action.c
index 49a87052..af689d65 100644
--- a/mdoc_action.c
+++ b/mdoc_action.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_action.c,v 1.56 2010/05/14 15:26:39 kristaps Exp $ */
+/* $Id: mdoc_action.c,v 1.57 2010/05/14 16:02:29 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -382,15 +382,27 @@ post_st(POST_ARGS)
static int
post_at(POST_ARGS)
{
- struct mdoc_node *nn;
- const char *p;
+ struct mdoc_node *nn;
+ const char *p, *q;
+ char *buf;
+ size_t sz;
if (n->child) {
assert(MDOC_TEXT == n->child->type);
p = mdoc_a2att(n->child->string);
- assert(p);
- free(n->child->string);
- n->child->string = mandoc_strdup(p);
+ if (p) {
+ free(n->child->string);
+ n->child->string = mandoc_strdup(p);
+ } else {
+ p = "AT&T UNIX ";
+ q = n->child->string;
+ sz = strlen(p) + strlen(q) + 1;
+ buf = mandoc_malloc(sz);
+ strlcpy(buf, p, sz);
+ strlcat(buf, q, sz);
+ free(n->child->string);
+ n->child->string = buf;
+ }
return(1);
}