From 701412530b6237e38feec75a69de2f98ad76838b Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sat, 18 May 2024 23:34:20 +0200 Subject: [PATCH] gstrfuncs: Remove g_strescape docs from the header They are not visible in the API reference with gi-docgen. --- glib/gstrfuncs.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/glib/gstrfuncs.h b/glib/gstrfuncs.h index 9a0123724..838ceb9fe 100644 --- a/glib/gstrfuncs.h +++ b/glib/gstrfuncs.h @@ -330,14 +330,6 @@ g_strdup_inline (const char *str) GLIB_AVAILABLE_IN_ALL gchar* g_strcompress (const gchar *source) G_GNUC_MALLOC; -/* Copy a string escaping nonprintable characters like in C strings. - * Inverse of g_strcompress. The exceptions parameter, if non-NULL, points - * to a string containing characters that are not to be escaped. - * - * Deprecated API: gchar* g_strescape (const gchar *source); - * Luckily this function wasn't used much, using NULL as second parameter - * provides mostly identical semantics. - */ GLIB_AVAILABLE_IN_ALL gchar* g_strescape (const gchar *source, const gchar *exceptions) G_GNUC_MALLOC;