|
From: <sv...@va...> - 2013-12-12 21:21:02
|
Author: mjw
Date: Thu Dec 12 21:20:48 2013
New Revision: 13758
Log:
Bug 328711 valgrind.1 manpage "memcheck options" section is badly generated
Add missing para tags inside listitems. (Miroslav Franc, mf...@re...)
Modified:
trunk/NEWS
trunk/memcheck/docs/mc-manual.xml
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Thu Dec 12 21:20:48 2013
@@ -32,6 +32,7 @@
328100 XABORT not implemented
328205 Implement additional Xen hypercalls
328455 s390x: SIGILL after emitting wrong register pair for ldxbr
+328711 valgrind.1 manpage "memcheck options" section is badly generated
Release 3.9.0 (31 October 2013)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Modified: trunk/memcheck/docs/mc-manual.xml
==============================================================================
--- trunk/memcheck/docs/mc-manual.xml (original)
+++ trunk/memcheck/docs/mc-manual.xml Thu Dec 12 21:20:48 2013
@@ -610,14 +610,14 @@
in one of the following ways:
<itemizedlist>
- <listitem>a comma separated list of one or more of
- <option>definite indirect possible reachable</option>.
+ <listitem><para>a comma separated list of one or more of
+ <option>definite indirect possible reachable</option>.</para>
</listitem>
- <listitem><option>all</option> to specify the complete set (all leak kinds).
+ <listitem><para><option>all</option> to specify the complete set (all leak kinds).</para>
</listitem>
- <listitem><option>none</option> for the empty set.
+ <listitem><para><option>none</option> for the empty set.</para>
</listitem>
</itemizedlist>
@@ -721,16 +721,16 @@
one of the following ways:
<itemizedlist>
- <listitem>a comma separated list of one or more of
- <option>definite indirect possible reachable</option>.
+ <listitem><para>a comma separated list of one or more of
+ <option>definite indirect possible reachable</option>.</para>
</listitem>
- <listitem><option>all</option> to specify the complete set (all leak kinds).
+ <listitem><para><option>all</option> to specify the complete set (all leak kinds).
It is equivalent to
- <option>--show-leak-kinds=definite,indirect,possible,reachable</option>.
+ <option>--show-leak-kinds=definite,indirect,possible,reachable</option>.</para>
</listitem>
- <listitem><option>none</option> for the empty set.
+ <listitem><para><option>none</option> for the empty set.</para>
</listitem>
</itemizedlist>
</para>
@@ -763,17 +763,17 @@
The heuristic set is specified in one of the following ways:
<itemizedlist>
- <listitem>a comma separated list of one or more of
- <option>stdstring newarray multipleinheritance</option>.
+ <listitem><para>a comma separated list of one or more of
+ <option>stdstring newarray multipleinheritance</option>.</para>
</listitem>
- <listitem><option>all</option> to activate the complete set of
+ <listitem><para><option>all</option> to activate the complete set of
heuristics.
It is equivalent to
- <option>--leak-check-heuristics=stdstring,newarray,multipleinheritance</option>.
+ <option>--leak-check-heuristics=stdstring,newarray,multipleinheritance</option>.</para>
</listitem>
- <listitem><option>none</option> for the empty set.
+ <listitem><para><option>none</option> for the empty set.</para>
</listitem>
</itemizedlist>
</para>
@@ -797,18 +797,24 @@
<para>These options provide an alternative way to specify the leak kinds to show:
<itemizedlist>
<listitem>
+ <para>
<option>--show-reachable=no --show-possibly-lost=yes</option> is equivalent to
<option>--show-leak-kinds=definite,possible</option>.
+ </para>
</listitem>
<listitem>
+ <para>
<option>--show-reachable=no --show-possibly-lost=no</option> is equivalent to
<option>--show-leak-kinds=definite</option>.
+ </para>
</listitem>
<listitem>
+ <para>
<option>--show-reachable=yes</option> is equivalent to
<option>--show-leak-kinds=all</option>.
Note that <option>--show-possibly-lost=no</option> has no effect
if <option>--show-reachable=yes</option> is specified.
+ </para>
</listitem>
</itemizedlist>
</para>
|