diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-08-10 10:09:51 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-08-10 10:09:51 +0000 |
commit | 5015f5abc741b2dd29b2baa650923af7cd24f807 (patch) | |
tree | f69344472c3a2e792dab2c9358e94d52147e4ba6 /mdoc_term.c | |
parent | faaeea1889fc927868c7e029c3f617fd5f5678b0 (diff) | |
download | mandoc-5015f5abc741b2dd29b2baa650923af7cd24f807.tar.gz |
Moved indentation size into *term.c files.
Improved handling of libman `IP' macro (still needs work).
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index ed9e0e01..3255b966 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -26,6 +26,9 @@ #include "term.h" #include "mdoc.h" +#define INDENT 5 +#define HALFINDENT 3 + /* FIXME: macro arguments can be escaped. */ #define TTYPE_PROG 0 |