]> git.cameronkatri.com Git - mandoc.git/commitdiff
Fixed (not documented anywhere of course) that `SH' and `SS' in libman have next...
authorKristaps Dzonsons <kristaps@bsd.lv>
Thu, 20 Aug 2009 13:51:55 +0000 (13:51 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Thu, 20 Aug 2009 13:51:55 +0000 (13:51 +0000)
man.7
man_macro.c

diff --git a/man.7 b/man.7
index f95b3a132c2fabc2418ee332a57e37cadc9ab30d..bec44daf4c5b1fb1092db5ca7d0134cf2c4ffd69 100644 (file)
--- a/man.7
+++ b/man.7
@@ -1,4 +1,4 @@
-.\"    $Id: man.7,v 1.33 2009/08/20 13:32:09 kristaps Exp $
+.\"    $Id: man.7,v 1.34 2009/08/20 13:51:55 kristaps Exp $
 .\"
 .\" Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
 .\"
@@ -301,8 +301,8 @@ end of file.
 .It   PP     Ta    0         Ta    current    Ta    paragraph
 .It   RE     Ta    0         Ta    current    Ta    none
 .It   RS     Ta    1         Ta    current    Ta    part
-.It   SH     Ta    >0        Ta    current    Ta    section
-.It   SS     Ta    >0        Ta    current    Ta    sub-section
+.It   SH     Ta    >0        Ta    next-line  Ta    section
+.It   SS     Ta    >0        Ta    next-line  Ta    sub-section
 .It   TP     Ta    n         Ta    next-line  Ta    paragraph
 .El
 .
index 7a5518b09d8543f4a5c2f028aea13aae1dcc8aa2..bc39053fb864511278ee0632fdd5dc7f5a6a35b4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_macro.c,v 1.23 2009/08/20 11:51:07 kristaps Exp $ */
+/*     $Id: man_macro.c,v 1.24 2009/08/20 13:51:55 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -38,8 +38,8 @@ static        int              rew_block(int, enum man_type,
 const  struct man_macro __man_macros[MAN_MAX] = {
        { in_line_eoln, 0 }, /* br */
        { in_line_eoln, 0 }, /* TH */
-       { blk_imp, 0 }, /* SH */
-       { blk_imp, 0 }, /* SS */
+       { blk_imp, MAN_SCOPED }, /* SH */
+       { blk_imp, MAN_SCOPED }, /* SS */
        { blk_imp, MAN_SCOPED }, /* TP */
        { blk_imp, 0 }, /* LP */
        { blk_imp, 0 }, /* PP */