Compare commits

...

2 Commits

Author SHA1 Message Date
Philip Withnall
3d53902fc3 Merge branch 'fix_typo_in_comment' into 'main'
issue 3428: fix comment in escape_string

Closes #3428

See merge request GNOME/glib!4200
2024-08-21 10:03:55 +00:00
LI Daobing
0ad7709c22 issue 3428: fix comment in escape_string 2024-08-20 18:24:33 -07:00

View File

@ -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);