From 808d4afd3f719c7cb1978b88f5af3b329b0f2411 Mon Sep 17 00:00:00 2001 From: DarkTrick Date: Sun, 8 Aug 2021 09:45:22 +0000 Subject: [PATCH 1/3] doc: Explicitly said, that no null term. is needed --- gobject/gsignal.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gobject/gsignal.c b/gobject/gsignal.c index 8e10f40d26..7546c77755 100644 --- a/gobject/gsignal.c +++ b/gobject/gsignal.c @@ -3560,7 +3560,8 @@ g_signal_emit (gpointer instance, * @detailed_signal: a string of the form "signal-name::detail". * @...: parameters to be passed to the signal, followed by a * location for the return value. If the return type of the signal - * is #G_TYPE_NONE, the return value location can be omitted. + * is #G_TYPE_NONE, the return value location can be omitted. The + * list does not need to be `NULL`-terminated. * * Emits a signal. * -- GitLab From 6cceceef937db1550e5417ba46b50d9eff933c15 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 10 Aug 2021 10:46:29 +0000 Subject: [PATCH 2/3] Apply 1 suggestion(s) to 1 file(s) --- gobject/gsignal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gobject/gsignal.c b/gobject/gsignal.c index 7546c77755..c4363782a9 100644 --- a/gobject/gsignal.c +++ b/gobject/gsignal.c @@ -3560,7 +3560,7 @@ g_signal_emit (gpointer instance, * @detailed_signal: a string of the form "signal-name::detail". * @...: parameters to be passed to the signal, followed by a * location for the return value. If the return type of the signal - * is #G_TYPE_NONE, the return value location can be omitted. The + * is %G_TYPE_NONE, the return value location can be omitted. The * list does not need to be `NULL`-terminated. * * Emits a signal. -- GitLab From 0e94a500c08630a5b697da55a32743dbd85c467b Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 6 Sep 2021 06:34:27 +0000 Subject: [PATCH 3/3] Apply 1 suggestion(s) to 1 file(s) --- gobject/gsignal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gobject/gsignal.c b/gobject/gsignal.c index c4363782a9..a106bbeecd 100644 --- a/gobject/gsignal.c +++ b/gobject/gsignal.c @@ -3561,7 +3561,7 @@ g_signal_emit (gpointer instance, * @...: parameters to be passed to the signal, followed by a * location for the return value. If the return type of the signal * is %G_TYPE_NONE, the return value location can be omitted. The - * list does not need to be `NULL`-terminated. + * number of parameters to pass to this function is defined when creating the signal. * * Emits a signal. * -- GitLab