aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2017-03-30 09:41:00 -0700
committerAndres Freund <andres@anarazel.de>2017-03-30 09:42:07 -0700
commitffae6733db1f9d4a3a75d737a00ee2a4a3e01849 (patch)
treeeac769a7c877d7c4b572bb629bd04cf4910c5b97
parentec19693014ed48fa1d8c7e0ce450795f752c4456 (diff)
downloadpostgresql-ffae6733db1f9d4a3a75d737a00ee2a4a3e01849.tar.gz
postgresql-ffae6733db1f9d4a3a75d737a00ee2a4a3e01849.zip
Try to fix xml docs build broken in 5ded4bd.
Apparently the sgml to xml conversion treats non-closed <para>s differently than jade does.
-rw-r--r--doc/src/sgml/xfunc.sgml2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/src/sgml/xfunc.sgml b/doc/src/sgml/xfunc.sgml
index e6313ddd59d..0a122313969 100644
--- a/doc/src/sgml/xfunc.sgml
+++ b/doc/src/sgml/xfunc.sgml
@@ -2173,6 +2173,7 @@ PG_FUNCTION_INFO_V1(funcname);
<para>
Here are some examples using the version-1 calling convention:
+ </para>
<programlisting><![CDATA[
#include "postgres.h"
@@ -2277,6 +2278,7 @@ concat_text(PG_FUNCTION_ARGS)
<filename>funcs.c</filename> and compiled into a shared object,
we could define the functions to <productname>PostgreSQL</productname>
with commands like this:
+ </para>
<programlisting>
CREATE FUNCTION add_one(integer) RETURNS integer