diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-27 10:55:16 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-27 10:55:16 +0000 |
commit | 69daad351ec2ab2069748a5a0139dae5f65642aa (patch) | |
tree | edcb375f2efa22c6b45d526b4e34453dd6fb03fc /action.c | |
parent | 79f971e5f7cb6c69d1b2ed2d38a5bccd604a24f5 (diff) | |
download | mandoc-69daad351ec2ab2069748a5a0139dae5f65642aa.tar.gz |
Slowly decoupling mdoc(3) from being OpenBSD-only.VERSION.1.3.6
Diffstat (limited to 'action.c')
-rw-r--r-- | action.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -271,7 +271,7 @@ post_os(struct mdoc *mdoc) if ( ! xstrlcats(buf, mdoc->last->child, 64)) return(mdoc_err(mdoc, "macro parameters too long")); - mdoc->meta.os = xstrdup(buf[0] ? buf : "local"); + mdoc->meta.os = xstrdup(buf[0] ? buf : "LOCAL"); mdoc->lastnamed = SEC_BODY; return(post_prologue(mdoc)); |