From f6aa8c398868907bb68ab39c61d943bcde76e284 Mon Sep 17 00:00:00 2001 From: Daniel Boles Date: Mon, 7 Aug 2017 20:39:06 +0100 Subject: [PATCH] GSList: Note that using ->next directly is OK as for GList --- glib/gslist.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glib/gslist.c b/glib/gslist.c index d85b42597..518ee08f7 100644 --- a/glib/gslist.c +++ b/glib/gslist.c @@ -95,6 +95,8 @@ * @slist: an element in a #GSList. * * A convenience macro to get the next element in a #GSList. + * Note that it is considered perfectly acceptable to access + * @slist->next directly. * * Returns: the next element, or %NULL if there are no more elements. **/