diff options
author | Antonio Ospite <ao2@ao2.it> | 2016-11-02 22:56:01 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2016-11-11 09:57:39 +0000 |
commit | 7521d5b3cf1ebaf812bf1a28f8e36a78b1017594 (patch) | |
tree | 72a0f748546f7a9659495299fe1b33ca6ccb8441 | |
parent | 64c097d296730a799f92a1d3d3c8e0252050531f (diff) |
tools: don't start lines with single quotes in man page
When a line starts with a single quote it's treated in a special way by
man, which may result in paragraphs of the man page not rendered by the
man pager, so just avoid that.
A possible solution could have been to escape the singe quote with
a \(cq sequence but this is rather unreadable, instead the text has been
reformatted to have the problematic quoted 'ppc' string on the previous
line.
https://bugzilla.gnome.org/show_bug.cgi?id=773917
-rw-r--r-- | tools/gst-launch.1.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gst-launch.1.in b/tools/gst-launch.1.in index e33fedd00..dd2ac3601 100644 --- a/tools/gst-launch.1.in +++ b/tools/gst-launch.1.in @@ -440,8 +440,8 @@ which allows you to view the .dot file directly without converting it first. \fBGST_REGISTRY\fR Path of the plugin registry file. Default is ~/.cache/gstreamer\-GST_API_VERSION/registry\-CPU.bin where CPU is the -machine/cpu type GStreamer was compiled for, e.g. 'i486', 'i686', 'x86\-64', -'ppc', etc. (check the output of "uname \-i" and "uname \-m" for details). +machine/cpu type GStreamer was compiled for, e.g. 'i486', 'i686', 'x86\-64', 'ppc', +etc. (check the output of "uname \-i" and "uname \-m" for details). .TP \fBGST_REGISTRY_UPDATE\fR Set to "no" to force GStreamer to assume that no plugins have changed, |