From 1eecafb8c1b737d0139cac9098239c80ad16806d Mon Sep 17 00:00:00 2001 From: Zbigniew Jędrzejewski-Szmek Date: Sun, 11 Dec 2016 17:01:07 -0500 Subject: man: use unicode ellipsis in more places As requested in https://github.com/systemd/systemd/pull/4864#pullrequestreview-12372557. docbook will substitute triple dots for the ellipsis in man output, so this has no effect on the troff output, only on HTML, making it infinitesimally nicer. In some places we show output from programs, which use dots, and those places should not be changed. In some tables, the alignment would change if dots were changed to the ellipsis which is only one character. Since docbook replaces the ellipsis automatically, we should leave those be. This patch changes all other places. --- man/systemd-notify.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'man/systemd-notify.xml') diff --git a/man/systemd-notify.xml b/man/systemd-notify.xml index a5f4077166..4a8e119eb6 100644 --- a/man/systemd-notify.xml +++ b/man/systemd-notify.xml @@ -112,7 +112,7 @@ Send a free-form status string for the daemon to the init systemd. This option takes the status string as argument. This is equivalent to systemd-notify - STATUS=.... For details about the semantics of this + STATUS=…. For details about the semantics of this option see sd_notify3. @@ -158,15 +158,15 @@ #!/bin/bash mkfifo /tmp/waldo -systemd-notify --ready --status="Waiting for data..." +systemd-notify --ready --status="Waiting for data…" while : ; do read a < /tmp/waldo systemd-notify --status="Processing $a" - # Do something with $a ... + # Do something with $a … - systemd-notify --status="Waiting for data..." + systemd-notify --status="Waiting for data…" done -- cgit v1.2.3-54-g00ecf