]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_macro.c
Whitespace fix.
[mandoc.git] / man_macro.c
index 81dd60571dfd803b94e9d92966941c0ff2be1020..37534e091ffda2b02c1e3e42757c02cb1f481fe7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_macro.c,v 1.41 2010/03/29 04:52:14 kristaps Exp $ */
+/*     $Id: man_macro.c,v 1.42 2010/03/29 10:10:35 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -314,28 +314,14 @@ blk_dotted(MACRO_PROT_ARGS)
        if ( ! rew_scope(MAN_BLOCK, m, ntok))
                return(0);
 
-       /* 
-        * XXX: manually adjust our next-line status.  roff macros are,
-        * for the moment, ignored, so we don't want to close out bodies
-        * and so on.
-        */
-
-       switch (m->last->type) {
-       case (MAN_BODY):
-               m->next = MAN_NEXT_CHILD;
-               break;
-       default:
-               break;
-       }
-
        /*
         * Restore flags set when we got here and also stipulate that we
         * don't post-process the line when exiting the macro op
-        * function in man_pmacro().
+        * function in man_pmacro().  See blk_exp().
         */
-       m->flags = m->svflags;
-       m->flags |= MAN_ILINE;
 
+       m->flags = m->svflags | MAN_ILINE;
+       m->next = m->svnext;
        return(1);
 }
 
@@ -395,10 +381,14 @@ blk_exp(MACRO_PROT_ARGS)
                        return(0);
        } else {
                /*
-                * Save our state; we restore it when exiting from the
-                * roff instruction block.
+                * Save our state and next-scope indicator; we restore
+                * it when exiting from the roff instruction block.  See
+                * blk_dotted().
                 */
                m->svflags = m->flags;
+               m->svnext = m->next;
+               
+               /* Make sure we drop any line modes. */
                m->flags = 0;
        }