mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-24 21:16:15 +01:00
gdbus-tool: Don't repeatedly complete --signal
In this situation: $ gdbus emit --session --object-path /org/foo/bar --sig<tab><tab><tab> We will currently insert --signal three times. We should only do that once. https://bugzilla.gnome.org/show_bug.cgi?id=793597
This commit is contained in:
parent
2a2717062b
commit
e2d9884958
@ -715,10 +715,17 @@ handle_emit (gint *argc,
|
||||
}
|
||||
if (opt_emit_signal == NULL)
|
||||
{
|
||||
/* don't keep repeatedly completing --signal */
|
||||
if (request_completion)
|
||||
g_print ("--signal \n");
|
||||
{
|
||||
if (g_strcmp0 ("--signal", completion_prev) != 0)
|
||||
g_print ("--signal \n");
|
||||
}
|
||||
else
|
||||
g_printerr (_("Error: Signal name is not specified\n"));
|
||||
{
|
||||
g_printerr (_("Error: Signal name is not specified\n"));
|
||||
}
|
||||
|
||||
goto out;
|
||||
}
|
||||
if (request_completion && opt_emit_dest != NULL && opt_emit_object_path != NULL &&
|
||||
|
Loading…
Reference in New Issue
Block a user