From 0ad7709c220ade52bdf146875da4cdaa3c90b2a3 Mon Sep 17 00:00:00 2001 From: LI Daobing Date: Tue, 20 Aug 2024 18:24:33 -0700 Subject: [PATCH] issue 3428: fix comment in escape_string --- glib/gmessages.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/gmessages.c b/glib/gmessages.c index 2ce651a71..8f0fd5bba 100644 --- a/glib/gmessages.c +++ b/glib/gmessages.c @@ -3258,7 +3258,7 @@ escape_string (GString *string) pos = p - string->str; - /* Largest char we escape is 0x0a, so we don't have to worry + /* Largest char we escape is 0x9f, so we don't have to worry * about 8-digit \Uxxxxyyyy */ tmp = g_strdup_printf ("\\u%04x", wc);