Fix a whitespace issue with the man pages

Peter Eisentraut <peter_e@gmx.net>

Commit: 6ef24487967692604b07a4a54e71821a60fb729a
Author: Peter Eisentraut <peter_e@gmx.net>
Date: 2011-08-07T07:55:32Z
Releases: 9.2.0
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.

Files

PathChange+/−
doc/src/sgml/dblink.sgml modified +2 −4
doc/src/sgml/ref/abort.sgml modified +1 −2
doc/src/sgml/ref/alter_aggregate.sgml modified +1 −2
doc/src/sgml/ref/alter_collation.sgml modified +1 −2
doc/src/sgml/ref/alter_conversion.sgml modified +1 −2
doc/src/sgml/ref/alter_database.sgml modified +1 −2
doc/src/sgml/ref/alter_default_privileges.sgml modified +1 −2
doc/src/sgml/ref/alter_domain.sgml modified +1 −2
doc/src/sgml/ref/alter_extension.sgml modified +1 −2
doc/src/sgml/ref/alter_foreign_data_wrapper.sgml modified +1 −2
doc/src/sgml/ref/alter_foreign_table.sgml modified +1 −2
doc/src/sgml/ref/alter_function.sgml modified +1 −2
doc/src/sgml/ref/alter_group.sgml modified +1 −3
doc/src/sgml/ref/alter_index.sgml modified +1 −2
doc/src/sgml/ref/alter_operator.sgml modified +1 −2
doc/src/sgml/ref/alter_role.sgml modified +1 −2
doc/src/sgml/ref/alter_sequence.sgml modified +1 −2
doc/src/sgml/ref/alter_server.sgml modified +1 −2
doc/src/sgml/ref/alter_table.sgml modified +1 −2
doc/src/sgml/ref/alter_tablespace.sgml modified +1 −2
doc/src/sgml/ref/alter_trigger.sgml modified +1 −2
doc/src/sgml/ref/alter_type.sgml modified +1 −2
doc/src/sgml/ref/alter_user_mapping.sgml modified +1 −2
doc/src/sgml/ref/alter_view.sgml modified +1 −2
doc/src/sgml/ref/begin.sgml modified +1 −2
doc/src/sgml/ref/close.sgml modified +1 −2
doc/src/sgml/ref/clusterdb.sgml modified +1 −2
doc/src/sgml/ref/cluster.sgml modified +1 −2
doc/src/sgml/ref/comment.sgml modified +1 −2
doc/src/sgml/ref/commit_prepared.sgml modified +1 −2
doc/src/sgml/ref/commit.sgml modified +1 −2
doc/src/sgml/ref/copy.sgml modified +3 −6
doc/src/sgml/ref/create_conversion.sgml modified +2 −4
doc/src/sgml/ref/createdb.sgml modified +1 −2
doc/src/sgml/ref/create_domain.sgml modified +2 −4
doc/src/sgml/ref/create_extension.sgml modified +1 −2
doc/src/sgml/ref/create_foreign_data_wrapper.sgml modified +3 −6
doc/src/sgml/ref/create_foreign_table.sgml modified +1 −2
doc/src/sgml/ref/create_function.sgml modified +8 −16
doc/src/sgml/ref/create_index.sgml modified +1 −2
doc/src/sgml/ref/create_language.sgml modified +5 −10
doc/src/sgml/ref/create_operator.sgml modified +3 −6
doc/src/sgml/ref/create_role.sgml modified +2 −4
doc/src/sgml/ref/create_rule.sgml modified +2 −4
doc/src/sgml/ref/create_schema.sgml modified +1 −2
doc/src/sgml/ref/create_sequence.sgml modified +2 −4
doc/src/sgml/ref/create_server.sgml modified +1 −2
doc/src/sgml/ref/create_table_as.sgml modified +4 −8
doc/src/sgml/ref/create_table.sgml modified +5 −14
doc/src/sgml/ref/create_tablespace.sgml modified +1 −2
doc/src/sgml/ref/create_trigger.sgml modified +3 −6
doc/src/sgml/ref/create_user_mapping.sgml modified +1 −2
doc/src/sgml/ref/declare.sgml modified +2 −4
doc/src/sgml/ref/delete.sgml modified +1 −2
doc/src/sgml/ref/discard.sgml modified +1 −2
doc/src/sgml/ref/do.sgml modified +2 −2
doc/src/sgml/ref/drop_aggregate.sgml modified +1 −2
doc/src/sgml/ref/drop_cast.sgml modified +1 −2
doc/src/sgml/ref/drop_collation.sgml modified +1 −2
doc/src/sgml/ref/drop_conversion.sgml modified +1 −2
doc/src/sgml/ref/dropdb.sgml modified +1 −2
doc/src/sgml/ref/drop_domain.sgml modified +1 −2
doc/src/sgml/ref/drop_foreign_data_wrapper.sgml modified +1 −2
doc/src/sgml/ref/drop_foreign_table.sgml modified +1 −2
doc/src/sgml/ref/drop_function.sgml modified +1 −2
doc/src/sgml/ref/drop_index.sgml modified +1 −2
doc/src/sgml/ref/droplang.sgml modified +1 −2
doc/src/sgml/ref/drop_language.sgml modified +1 −2
doc/src/sgml/ref/drop_operator.sgml modified +1 −2
doc/src/sgml/ref/drop_role.sgml modified +1 −2
doc/src/sgml/ref/drop_rule.sgml modified +1 −2
doc/src/sgml/ref/drop_schema.sgml modified +1 −2
doc/src/sgml/ref/drop_sequence.sgml modified +1 −2
doc/src/sgml/ref/drop_server.sgml modified +1 −2
doc/src/sgml/ref/drop_table.sgml modified +1 −2
doc/src/sgml/ref/drop_tablespace.sgml modified +1 −2
doc/src/sgml/ref/drop_trigger.sgml modified +1 −2
doc/src/sgml/ref/drop_type.sgml modified +1 −2
doc/src/sgml/ref/drop_user_mapping.sgml modified +1 −2
doc/src/sgml/ref/dropuser.sgml modified +1 −2
doc/src/sgml/ref/drop_view.sgml modified +1 −2
doc/src/sgml/ref/ecpg-ref.sgml modified +2 −4
doc/src/sgml/ref/end.sgml modified +1 −2
doc/src/sgml/ref/fetch.sgml modified +4 −8
doc/src/sgml/ref/grant.sgml modified +1 −2
doc/src/sgml/ref/insert.sgml modified +1 −2
doc/src/sgml/ref/listen.sgml modified +1 −2
doc/src/sgml/ref/lock.sgml modified +1 −2
doc/src/sgml/ref/notify.sgml modified +1 −2
doc/src/sgml/ref/pg_basebackup.sgml modified +1 −2
doc/src/sgml/ref/pg_ctl-ref.sgml modified +3 −6
doc/src/sgml/ref/pg_dump.sgml modified +2 −6
doc/src/sgml/ref/pg_restore.sgml modified +4 −8
doc/src/sgml/ref/prepare_transaction.sgml modified +1 −2
doc/src/sgml/ref/psql-ref.sgml modified +13 −26
doc/src/sgml/ref/reindexdb.sgml modified +1 −2
doc/src/sgml/ref/reindex.sgml modified +2 −4
doc/src/sgml/ref/reset.sgml modified +1 −2
doc/src/sgml/ref/revoke.sgml modified +1 −2
doc/src/sgml/ref/rollback_prepared.sgml modified +1 −2
doc/src/sgml/ref/rollback.sgml modified +1 −2
doc/src/sgml/ref/rollback_to.sgml modified +1 −2
doc/src/sgml/ref/security_label.sgml modified +1 −2
doc/src/sgml/ref/select_into.sgml modified +1 −2
doc/src/sgml/ref/select.sgml modified +11 −22
doc/src/sgml/ref/set.sgml modified +5 −10
doc/src/sgml/ref/show.sgml modified +2 −4
doc/src/sgml/ref/truncate.sgml modified +1 −2
doc/src/sgml/ref/unlisten.sgml modified +1 −2
doc/src/sgml/ref/update.sgml modified +1 −2
doc/src/sgml/ref/vacuumdb.sgml modified +1 −2
doc/src/sgml/ref/vacuum.sgml modified +1 −2
doc/src/sgml/ref/values.sgml modified +2 −4
doc/src/sgml/spi.sgml modified +8 −23
doc/src/sgml/stylesheet-man.xsl modified +0 −13