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.
This commit is contained in:
Tim-Philipp Müller 2010-07-08 13:43:22 +01:00
parent e688f6fb2b
commit bd03793273
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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},