From e43017f9badb1bf85f989ccf93ef30c18a4b51bc Mon Sep 17 00:00:00 2001
From: Hideyuki KURASHINA <rushani@FreeBSD.org>
Date: Fri, 25 Jul 2003 21:07:42 +0000
Subject: [PATCH] Add missing end-tags.

Submitted by:	Martin Karlsson <mk-freebsd@bredband.net>
PR:		docs/54868
---
 en_US.ISO8859-1/books/arch-handbook/boot/chapter.sgml         | 1 +
 en_US.ISO8859-1/books/arch-handbook/jail/chapter.sgml         | 4 ++--
 en_US.ISO8859-1/books/arch-handbook/mac/chapter.sgml          | 4 +++-
 en_US.ISO8859-1/books/arch-handbook/newbus/chapter.sgml       | 2 +-
 en_US.ISO8859-1/books/arch-handbook/sound/chapter.sgml        | 3 +++
 en_US.ISO8859-1/books/developers-handbook/boot/chapter.sgml   | 1 +
 en_US.ISO8859-1/books/developers-handbook/jail/chapter.sgml   | 4 ++--
 en_US.ISO8859-1/books/developers-handbook/mac/chapter.sgml    | 4 +++-
 en_US.ISO8859-1/books/developers-handbook/newbus/chapter.sgml | 2 +-
 en_US.ISO8859-1/books/developers-handbook/sound/chapter.sgml  | 3 +++
 10 files changed, 20 insertions(+), 8 deletions(-)

diff --git a/en_US.ISO8859-1/books/arch-handbook/boot/chapter.sgml b/en_US.ISO8859-1/books/arch-handbook/boot/chapter.sgml
index 9e8ae2ef1c..0e28c6519e 100644
--- a/en_US.ISO8859-1/books/arch-handbook/boot/chapter.sgml
+++ b/en_US.ISO8859-1/books/arch-handbook/boot/chapter.sgml
@@ -550,6 +550,7 @@ NON_GPROF_ENTRY(btext)</programlisting>
 	  <entry>This function allocates and fills out a Page Table
 	    Directory at the top of the kernel memory area.</entry>
         </row>
+       </tbody>
       </tgroup>
     </informaltable>
 
diff --git a/en_US.ISO8859-1/books/arch-handbook/jail/chapter.sgml b/en_US.ISO8859-1/books/arch-handbook/jail/chapter.sgml
index f792cbd338..5bf43c7833 100644
--- a/en_US.ISO8859-1/books/arch-handbook/jail/chapter.sgml
+++ b/en_US.ISO8859-1/books/arch-handbook/jail/chapter.sgml
@@ -70,7 +70,7 @@
         <para>In <filename>jail.c</filename>, the first thing I would
           note is the declaration of an important structure
           <literal>struct jail j</literal>; which was included from
-          <filename>/usr/include/sys/jail.h</filename>.
+          <filename>/usr/include/sys/jail.h</filename>.</para>
 
         <para>The definition of the jail structure is:</para>
 
@@ -126,7 +126,7 @@ j.ip_number = ntohl(in.s.addr);</programlisting>
         <para>Finally, the userland program jails the process, and
           executes the command specified. Jail now becomes an
           imprisoned process itself and forks a child process which
-          then executes the command given using &man.execv.3;
+          then executes the command given using &man.execv.3;</para>
 
         <programlisting><filename>/usr/src/sys/usr.sbin/jail/jail.c</filename>
 i = jail(<![CDATA[&j]]>); 
diff --git a/en_US.ISO8859-1/books/arch-handbook/mac/chapter.sgml b/en_US.ISO8859-1/books/arch-handbook/mac/chapter.sgml
index ccd16eaf70..1946e991c0 100644
--- a/en_US.ISO8859-1/books/arch-handbook/mac/chapter.sgml
+++ b/en_US.ISO8859-1/books/arch-handbook/mac/chapter.sgml
@@ -941,6 +941,7 @@
               <row>
                 <entry><parameter>label</parameter></entry>
                 <entry>Policy label to initialize</entry>
+              </row>
             </tbody>
           </tgroup>
         </informaltable>
@@ -1051,6 +1052,7 @@
                 <entry>Label to be filled in</entry>
               </row>
             </tbody>
+          </tgroup>
         </informaltable>
 
         <para>Initialize a label for a newly instantiated pipe.</para>
@@ -1439,7 +1441,7 @@
               
               <row>
                 <entry><parameter>fslabel</parameter></entry>
-                <entry>File system label being destroyed>
+                <entry>File system label being destroyed></entry>
               </row>
             </tbody>
           </tgroup>
diff --git a/en_US.ISO8859-1/books/arch-handbook/newbus/chapter.sgml b/en_US.ISO8859-1/books/arch-handbook/newbus/chapter.sgml
index 4fda867ee6..c20617c4fc 100644
--- a/en_US.ISO8859-1/books/arch-handbook/newbus/chapter.sgml
+++ b/en_US.ISO8859-1/books/arch-handbook/newbus/chapter.sgml
@@ -259,7 +259,7 @@
     management (<emphasis><literal>alloc_resource</literal></emphasis>, 
     <emphasis><literal>activate_resource</literal></emphasis>, 
     <emphasis><literal>deactivate_resource</literal></emphasis>, 
-    <emphasis><literal>release_resource</literal></emphasis>).
+    <emphasis><literal>release_resource</literal></emphasis>).</para>
     
     <para>Many methods in the <quote>bus</quote> interface are performing 
     services for some child of the bus device.  These methods would normally 
diff --git a/en_US.ISO8859-1/books/arch-handbook/sound/chapter.sgml b/en_US.ISO8859-1/books/arch-handbook/sound/chapter.sgml
index aeb4656017..0a107812fa 100644
--- a/en_US.ISO8859-1/books/arch-handbook/sound/chapter.sgml
+++ b/en_US.ISO8859-1/books/arch-handbook/sound/chapter.sgml
@@ -36,6 +36,7 @@
           <emphasis>Voxware</emphasis> interface, allowing common
           multimedia applications to be ported without
           modification.</para>
+      </listitem>
       <listitem>
         <para>Common code for processing sound data (format
           conversions, virtual channels).</para>
@@ -277,6 +278,8 @@
 
         </itemizedlist>
 
+      </sect3>
+
       <sect3 id="xxxchannel-init">
         <title>channel_init</title>
 
diff --git a/en_US.ISO8859-1/books/developers-handbook/boot/chapter.sgml b/en_US.ISO8859-1/books/developers-handbook/boot/chapter.sgml
index 9e8ae2ef1c..0e28c6519e 100644
--- a/en_US.ISO8859-1/books/developers-handbook/boot/chapter.sgml
+++ b/en_US.ISO8859-1/books/developers-handbook/boot/chapter.sgml
@@ -550,6 +550,7 @@ NON_GPROF_ENTRY(btext)</programlisting>
 	  <entry>This function allocates and fills out a Page Table
 	    Directory at the top of the kernel memory area.</entry>
         </row>
+       </tbody>
       </tgroup>
     </informaltable>
 
diff --git a/en_US.ISO8859-1/books/developers-handbook/jail/chapter.sgml b/en_US.ISO8859-1/books/developers-handbook/jail/chapter.sgml
index f792cbd338..5bf43c7833 100644
--- a/en_US.ISO8859-1/books/developers-handbook/jail/chapter.sgml
+++ b/en_US.ISO8859-1/books/developers-handbook/jail/chapter.sgml
@@ -70,7 +70,7 @@
         <para>In <filename>jail.c</filename>, the first thing I would
           note is the declaration of an important structure
           <literal>struct jail j</literal>; which was included from
-          <filename>/usr/include/sys/jail.h</filename>.
+          <filename>/usr/include/sys/jail.h</filename>.</para>
 
         <para>The definition of the jail structure is:</para>
 
@@ -126,7 +126,7 @@ j.ip_number = ntohl(in.s.addr);</programlisting>
         <para>Finally, the userland program jails the process, and
           executes the command specified. Jail now becomes an
           imprisoned process itself and forks a child process which
-          then executes the command given using &man.execv.3;
+          then executes the command given using &man.execv.3;</para>
 
         <programlisting><filename>/usr/src/sys/usr.sbin/jail/jail.c</filename>
 i = jail(<![CDATA[&j]]>); 
diff --git a/en_US.ISO8859-1/books/developers-handbook/mac/chapter.sgml b/en_US.ISO8859-1/books/developers-handbook/mac/chapter.sgml
index ccd16eaf70..1946e991c0 100644
--- a/en_US.ISO8859-1/books/developers-handbook/mac/chapter.sgml
+++ b/en_US.ISO8859-1/books/developers-handbook/mac/chapter.sgml
@@ -941,6 +941,7 @@
               <row>
                 <entry><parameter>label</parameter></entry>
                 <entry>Policy label to initialize</entry>
+              </row>
             </tbody>
           </tgroup>
         </informaltable>
@@ -1051,6 +1052,7 @@
                 <entry>Label to be filled in</entry>
               </row>
             </tbody>
+          </tgroup>
         </informaltable>
 
         <para>Initialize a label for a newly instantiated pipe.</para>
@@ -1439,7 +1441,7 @@
               
               <row>
                 <entry><parameter>fslabel</parameter></entry>
-                <entry>File system label being destroyed>
+                <entry>File system label being destroyed></entry>
               </row>
             </tbody>
           </tgroup>
diff --git a/en_US.ISO8859-1/books/developers-handbook/newbus/chapter.sgml b/en_US.ISO8859-1/books/developers-handbook/newbus/chapter.sgml
index 4fda867ee6..c20617c4fc 100644
--- a/en_US.ISO8859-1/books/developers-handbook/newbus/chapter.sgml
+++ b/en_US.ISO8859-1/books/developers-handbook/newbus/chapter.sgml
@@ -259,7 +259,7 @@
     management (<emphasis><literal>alloc_resource</literal></emphasis>, 
     <emphasis><literal>activate_resource</literal></emphasis>, 
     <emphasis><literal>deactivate_resource</literal></emphasis>, 
-    <emphasis><literal>release_resource</literal></emphasis>).
+    <emphasis><literal>release_resource</literal></emphasis>).</para>
     
     <para>Many methods in the <quote>bus</quote> interface are performing 
     services for some child of the bus device.  These methods would normally 
diff --git a/en_US.ISO8859-1/books/developers-handbook/sound/chapter.sgml b/en_US.ISO8859-1/books/developers-handbook/sound/chapter.sgml
index aeb4656017..0a107812fa 100644
--- a/en_US.ISO8859-1/books/developers-handbook/sound/chapter.sgml
+++ b/en_US.ISO8859-1/books/developers-handbook/sound/chapter.sgml
@@ -36,6 +36,7 @@
           <emphasis>Voxware</emphasis> interface, allowing common
           multimedia applications to be ported without
           modification.</para>
+      </listitem>
       <listitem>
         <para>Common code for processing sound data (format
           conversions, virtual channels).</para>
@@ -277,6 +278,8 @@
 
         </itemizedlist>
 
+      </sect3>
+
       <sect3 id="xxxchannel-init">
         <title>channel_init</title>