]> git.cameronkatri.com Git - mandoc.git/commitdiff
Backed out "-width indent" and "-width indent-two", which aren't
authorKristaps Dzonsons <kristaps@bsd.lv>
Sun, 5 Jul 2009 19:25:10 +0000 (19:25 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Sun, 5 Jul 2009 19:25:10 +0000 (19:25 +0000)
supported by any groff mdoc tmac (and erroneously used in many manuals,
hence the confusion).

mdoc.7
mdoc_term.c

diff --git a/mdoc.7 b/mdoc.7
index 0e09b8d948e78f88e27f10382daae19bdf5fb423..520a8989095be5c0833d95a3dc58def0f5e9c033 100644 (file)
--- a/mdoc.7
+++ b/mdoc.7
@@ -1,4 +1,4 @@
-.\"    $Id: mdoc.7,v 1.36 2009/07/04 11:04:07 kristaps Exp $
+.\"    $Id: mdoc.7,v 1.37 2009/07/05 19:25:10 kristaps Exp $
 .\"
 .\" Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
 .\"
@@ -14,7 +14,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\" 
-.Dd $Mdocdate: July 4 2009 $
+.Dd $Mdocdate: July 5 2009 $
 .Dt MDOC 7
 .Os
 .\" SECTION
@@ -527,12 +527,6 @@ file re-write
 .Bl -dash -compact
 .\" LIST-ITEM
 .It
-The \-width argument to 
-.Sq \&.Bl
-respects indent and indent-two (groff does too, but does not document
-the fact).
-.\" LIST-ITEM
-.It
 Some character sequences in groff are not handled depending on escape
 style, e.g., 
 .Sq \e(ba
index e7329d2a8dd5cdad0ba8d1195e1e56ad391e665e..688aec86157e369310ac92718a3e8d4256710fd1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_term.c,v 1.20 2009/07/04 11:07:34 kristaps Exp $ */
+/*     $Id: mdoc_term.c,v 1.21 2009/07/05 19:25:10 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -532,10 +532,6 @@ arg_width(const struct mdoc_argv *arg, int pos)
 
        assert(pos < (int)arg->sz && pos >= 0);
        assert(arg->value[pos]);
-       if (0 == strcmp(arg->value[pos], "indent"))
-               return(INDENT + 3);
-       if (0 == strcmp(arg->value[pos], "indent-two"))
-               return(INDENT * 2 + 2);
 
        if (0 == (len = (int)strlen(arg->value[pos])))
                return(0);