From: Tim-Philipp Müller Date: Thu, 8 Jul 2010 12:43:22 +0000 (+0100) Subject: tools: remove -p shorthand for --no-sigusr-handler X-Git-Tag: RELEASE-0.10.30~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd037932736e92618a96ad2e3a13bfa328d9d83a;p=platform%2Fupstream%2Fgstreamer.git tools: remove -p shorthand for --no-sigusr-handler It's not really needed, and doesn't map any longer after the long option has been renamed. --- diff --git a/tools/gst-launch.1.in b/tools/gst-launch.1.in index 80e34b6..b53a694 100644 --- a/tools/gst-launch.1.in +++ b/tools/gst-launch.1.in @@ -50,7 +50,7 @@ Save XML representation of pipeline to FILE and exit (DEPRECATED, DO NOT USE) .B \-f, \-\-no\-fault Do not install a fault handler .TP 8 -.B \-p, \-\-no\-sigusr-handler +.B \-\-no\-sigusr-handler Do not install signal handlers for SIGUSR1 (play) and SIGUSR2 (stop) .TP 8 .B \-T, \-\-trace diff --git a/tools/gst-launch.c b/tools/gst-launch.c index ab5e660..0c82a22 100644 --- a/tools/gst-launch.c +++ b/tools/gst-launch.c @@ -709,7 +709,7 @@ main (int argc, char *argv[]) #endif {"no-fault", 'f', 0, G_OPTION_ARG_NONE, &no_fault, N_("Do not install a fault handler"), NULL}, - {"no-sigusr-handler", 'p', 0, G_OPTION_ARG_NONE, &no_sigusr_handler, + {"no-sigusr-handler", '\0', 0, G_OPTION_ARG_NONE, &no_sigusr_handler, N_("Do not install signal handlers for SIGUSR1 and SIGUSR2"), NULL}, {"trace", 'T', 0, G_OPTION_ARG_NONE, &trace, N_("Print alloc trace (if enabled at compile time)"), NULL},