diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-01-16 20:07:35 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-01-16 20:07:35 +0000 |
commit | 80e647a8dbc97662b9d966c0f7a8e1aedea89eed (patch) | |
tree | d3a322c28112b7623765847aa32e8e319c576b45 /pango/pango-break.h | |
parent | e6b83e4264b4ad2ab73a3239d902b4064c75634d (diff) | |
download | pango-80e647a8dbc97662b9d966c0f7a8e1aedea89eed.tar.gz |
*.c, *.h: Drop trailing whitespace.
2007-01-16 Behdad Esfahbod <behdad@gnome.org>
*.c, *.h: Drop trailing whitespace.
svn path=/trunk/; revision=2163
Diffstat (limited to 'pango/pango-break.h')
-rw-r--r-- | pango/pango-break.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pango/pango-break.h b/pango/pango-break.h index 0ef4b5f3..ce9bd850 100644 --- a/pango/pango-break.h +++ b/pango/pango-break.h @@ -37,19 +37,19 @@ struct _PangoLogAttr guint is_mandatory_break : 1; /* Must break line in front of character */ guint is_char_break : 1; /* Can break here when doing char wrap */ - + guint is_white : 1; /* Whitespace character */ /* cursor can appear in front of character (i.e. this is a grapheme * boundary, or the first character in the text) */ guint is_cursor_position : 1; - + /* Note that in degenerate cases, you could have both start/end set on * some text, most likely for sentences (e.g. no space after a period, so * the next sentence starts right away) */ - + guint is_word_start : 1; /* first character in a word */ guint is_word_end : 1; /* is first non-word char after a word */ @@ -66,17 +66,17 @@ struct _PangoLogAttr guint is_sentence_end : 1; /* first non-sentence char after a sentence */ /* if set, backspace deletes one character rather than - * the entire grapheme cluster + * the entire grapheme cluster */ - guint backspace_deletes_character : 1; + guint backspace_deletes_character : 1; }; /* Determine information about cluster/word/line breaks in a string * of Unicode text. */ -void pango_break (const gchar *text, - int length, - PangoAnalysis *analysis, +void pango_break (const gchar *text, + int length, + PangoAnalysis *analysis, PangoLogAttr *attrs, int attrs_len); |