diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-08-22 18:10:03 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-08-22 18:10:03 +0000 |
commit | 8ffdc260c4d5a97f7a4376ba47f44db290aa9479 (patch) | |
tree | 14c9b7b501d03fd3c83cbdab10b017dc36e5e36c /usr.bin/mandoc/mdoc_term.c | |
parent | f6c9c970650c78f3777d8d6b7a7effdf37147aeb (diff) |
sync to 1.9.0: move indentation size into *term.c files,
improving -man indentation
Diffstat (limited to 'usr.bin/mandoc/mdoc_term.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_term.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/mandoc/mdoc_term.c b/usr.bin/mandoc/mdoc_term.c index 9958ce8bdbf..ffb6fe6fd52 100644 --- a/usr.bin/mandoc/mdoc_term.c +++ b/usr.bin/mandoc/mdoc_term.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.50 2009/08/22 15:36:58 schwarze Exp $ */ +/* $Id: mdoc_term.c,v 1.51 2009/08/22 18:10:02 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -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 |