diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-11-07 16:47:48 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-11-08 14:14:36 +0100 |
commit | fe45f8dc9bf1e9be8de4e14838bc2d7befcf946b (patch) | |
tree | 3a890110001acf8e5b03a31bef3e00368920e15c /man/sd_bus_message_append.xml | |
parent | man: update Fedora links to F41 (diff) | |
download | systemd-fe45f8dc9bf1e9be8de4e14838bc2d7befcf946b.tar.xz systemd-fe45f8dc9bf1e9be8de4e14838bc2d7befcf946b.zip |
man: drop whitespace from final <programlisting> lines
In the troff output, this doesn't seem to make any difference. But in the
html output, the whitespace is sometimes preserved, creating an additional
gap before the following content. Drop it everywhere to avoid this.
Diffstat (limited to 'man/sd_bus_message_append.xml')
-rw-r--r-- | man/sd_bus_message_append.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man/sd_bus_message_append.xml b/man/sd_bus_message_append.xml index 64c52ffefe..57d78ad503 100644 --- a/man/sd_bus_message_append.xml +++ b/man/sd_bus_message_append.xml @@ -194,12 +194,12 @@ sd_bus_message_append(m, "ynqiuxtd", y, n, q, i, u, x, t, d);</programlisting> <para>Append a structure composed of a string and a D-Bus path:</para> <programlisting>sd_bus_message_append(m, "(so)", "a string", "/a/path"); - </programlisting> +</programlisting> <para>Append an array of UNIX file descriptors:</para> <programlisting>sd_bus_message_append(m, "ah", 3, STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO); - </programlisting> +</programlisting> <para>Append a variant, with the real type "g" (signature), and value "sdbusisgood":</para> @@ -210,7 +210,7 @@ sd_bus_message_append(m, "ynqiuxtd", y, n, q, i, u, x, t, d);</programlisting> </para> <programlisting>sd_bus_message_append(m, "a{is}", 3, 1, "a", 2, "b", 3, NULL); - </programlisting> +</programlisting> </refsect1> <refsect1> |