summaryrefslogtreecommitdiff
path: root/pango/pango-tabs.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-11-29 00:49:45 -0500
committerMatthias Clasen <mclasen@redhat.com>2021-11-29 08:12:11 -0500
commitcf522dcf2f14a60f9f1250117defae44ff417b5f (patch)
tree8a2a3221026f4a07e06e6b537d035c8cf8b71f87 /pango/pango-tabs.c
parentae8297b785eacc61890b6042c0f89af6f65b3bb3 (diff)
downloadpango-cf522dcf2f14a60f9f1250117defae44ff417b5f.tar.gz
tabs: Tweak string format
Use newlines to separate tabs, rather than spaces.
Diffstat (limited to 'pango/pango-tabs.c')
-rw-r--r--pango/pango-tabs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pango-tabs.c b/pango/pango-tabs.c
index 318f305b..27ae3be8 100644
--- a/pango/pango-tabs.c
+++ b/pango/pango-tabs.c
@@ -395,7 +395,7 @@ pango_tab_array_to_string (PangoTabArray *tab_array)
for (int i = 0; i < tab_array->size; i++)
{
if (i > 0)
- g_string_append_c (s, ' ');
+ g_string_append_c (s, '\n');
if (tab_array->tabs[i].alignment == PANGO_TAB_RIGHT)
g_string_append (s, "right:");