mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Fix a whitespace issue with the man pages
There is what may actually be a mistake in our markup. The problem is in a situation like <para> <command>FOO</command> is ... there is strictly speaking a line break before "FOO". In the HTML output, this does not appear to be a problem, but in the man page output, this shows up, so you get double blank lines at odd places. So far, we have attempted to work around this with an XSL hack, but that causes other problems, such as creating run-ins in places like <acronym>SQL</acronym> <command>COPY</command> So fix the problem properly by removing the extra whitespace. I only fixed the problems that affect the man page output, not all the places.
This commit is contained in:
@ -392,8 +392,7 @@ typedef struct
|
||||
TupleDesc tupdesc; /* row descriptor */
|
||||
HeapTuple *vals; /* rows */
|
||||
} SPITupleTable;
|
||||
</programlisting>
|
||||
<structfield>vals</> is an array of pointers to rows. (The number
|
||||
</programlisting><structfield>vals</> is an array of pointers to rows. (The number
|
||||
of valid entries is given by <varname>SPI_processed</varname>.)
|
||||
<structfield>tupdesc</> is a row descriptor which you can pass to
|
||||
SPI functions dealing with rows. <structfield>tuptabcxt</>,
|
||||
@ -425,9 +424,7 @@ typedef struct
|
||||
<varlistentry>
|
||||
<term><literal>bool <parameter>read_only</parameter></literal></term>
|
||||
<listitem>
|
||||
<para>
|
||||
<literal>true</> for read-only execution
|
||||
</para>
|
||||
<para><literal>true</> for read-only execution</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
@ -803,9 +800,7 @@ int SPI_execute_with_args(const char *<parameter>command</parameter>,
|
||||
<varlistentry>
|
||||
<term><literal>bool <parameter>read_only</parameter></literal></term>
|
||||
<listitem>
|
||||
<para>
|
||||
<literal>true</> for read-only execution
|
||||
</para>
|
||||
<para><literal>true</> for read-only execution</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
@ -1421,9 +1416,7 @@ int SPI_execute_plan(SPIPlanPtr <parameter>plan</parameter>, Datum * <parameter>
|
||||
<varlistentry>
|
||||
<term><literal>bool <parameter>read_only</parameter></literal></term>
|
||||
<listitem>
|
||||
<para>
|
||||
<literal>true</> for read-only execution
|
||||
</para>
|
||||
<para><literal>true</> for read-only execution</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
@ -1540,9 +1533,7 @@ int SPI_execute_plan_with_paramlist(SPIPlanPtr <parameter>plan</parameter>,
|
||||
<varlistentry>
|
||||
<term><literal>bool <parameter>read_only</parameter></literal></term>
|
||||
<listitem>
|
||||
<para>
|
||||
<literal>true</> for read-only execution
|
||||
</para>
|
||||
<para><literal>true</> for read-only execution</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
@ -1777,9 +1768,7 @@ Portal SPI_cursor_open(const char * <parameter>name</parameter>, SPIPlanPtr <par
|
||||
<varlistentry>
|
||||
<term><literal>bool <parameter>read_only</parameter></literal></term>
|
||||
<listitem>
|
||||
<para>
|
||||
<literal>true</> for read-only execution
|
||||
</para>
|
||||
<para><literal>true</> for read-only execution</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
@ -1915,9 +1904,7 @@ Portal SPI_cursor_open_with_args(const char *<parameter>name</parameter>,
|
||||
<varlistentry>
|
||||
<term><literal>bool <parameter>read_only</parameter></literal></term>
|
||||
<listitem>
|
||||
<para>
|
||||
<literal>true</> for read-only execution
|
||||
</para>
|
||||
<para><literal>true</> for read-only execution</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
@ -2022,9 +2009,7 @@ Portal SPI_cursor_open_with_paramlist(const char *<parameter>name</parameter>,
|
||||
<varlistentry>
|
||||
<term><literal>bool <parameter>read_only</parameter></literal></term>
|
||||
<listitem>
|
||||
<para>
|
||||
<literal>true</> for read-only execution
|
||||
</para>
|
||||
<para><literal>true</> for read-only execution</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
Reference in New Issue
Block a user