diff options
Diffstat (limited to 'pango/pango-break.h')
-rw-r--r-- | pango/pango-break.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pango/pango-break.h b/pango/pango-break.h index 52febd3d..5d791e27 100644 --- a/pango/pango-break.h +++ b/pango/pango-break.h @@ -74,6 +74,8 @@ G_BEGIN_DECLS * semantics. (Since: 1.22) * @break_inserts_hyphen: when breaking lines before this char, insert a hyphen. * Since: 1.50 + * @break_removes_preceding: when breaking lines before this char, remove the + * preceding char. Since 1.50 * * The `PangoLogAttr` structure stores information about the attributes of a * single character. @@ -94,6 +96,7 @@ struct _PangoLogAttr guint is_expandable_space : 1; guint is_word_boundary : 1; guint break_inserts_hyphen : 1; + guint break_removes_preceding : 1; }; PANGO_DEPRECATED_IN_1_44 |