diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-26 16:23:22 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-26 16:23:22 +0000 |
commit | 9411fef4a53cf7d424010611e37ecd186b283683 (patch) | |
tree | 70655daacae1ee6f55bb5d4ade929dba98bb56ce /main.c | |
parent | 99557614752f3abba838ceb10116d48568b5ed0e (diff) | |
download | mandoc-9411fef4a53cf7d424010611e37ecd186b283683.tar.gz |
All macro-invocations, for consistency, begin with `.' in documentation.
Fixed \\ -> \e in manual documentation.
All preliminary -man macros in place.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -401,9 +401,9 @@ static int moptions(enum intt *tflags, char *arg) { - if (0 == strcmp(arg, "mdoc")) + if (0 == strcmp(arg, "doc")) *tflags = INTT_MDOC; - else if (0 == strcmp(arg, "man")) + else if (0 == strcmp(arg, "an")) *tflags = INTT_MAN; else { warnx("bad argument: -m%s", arg); |