diff options
author | Sven Neumann <sven@gimp.org> | 2001-10-15 10:45:52 +0000 |
---|---|---|
committer | Sven Neumann <neo@src.gnome.org> | 2001-10-15 10:45:52 +0000 |
commit | 4191e19b57ebcf92f01899ee564590f6e1b16fb3 (patch) | |
tree | c1619cd3106643f7a20e165e9582eb4490d676a4 /pango/break.c | |
parent | db7dd9f42902dc98dd20435e4852079a6ba9216f (diff) | |
download | pango-4191e19b57ebcf92f01899ee564590f6e1b16fb3.tar.gz |
another missing comment end marker and some fixes in gtk-doc comments.
2001-10-15 Sven Neumann <sven@gimp.org>
* pango/pangoxft-font.c: another missing comment end marker and some
fixes in gtk-doc comments.
* pango/break.c
* pango/pango-layout.c
* pango/pangoft2.c
* docs/pango-sections.txt
* docs/tmpl/fonts.sgml
* docs/tmpl/x-fonts.sgml: documentation updates.
Diffstat (limited to 'pango/break.c')
-rw-r--r-- | pango/break.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/pango/break.c b/pango/break.c index a4377fb4..5aeb397d 100644 --- a/pango/break.c +++ b/pango/break.c @@ -364,9 +364,10 @@ typedef enum /** * pango_default_break: * @text: text to break - * @length: length of text in bytes (or -1 is allowed if text is nul-terminated) - * @analysis: a #PangoAnalysis for the text + * @length: length of text in bytes (may be -1 if @text is nul-terminated) + * @analysis: a #PangoAnalysis for the @text * @attrs: logical attributes to fill in + * @attrs_len: size of the array passed as @attrs * * This is the default break algorithm, used if no language * engine overrides it. Normally you should use pango_break() @@ -1277,9 +1278,11 @@ pango_default_break (const gchar *text, /** * pango_break: * @text: the text to process - * @length: the length (in bytes) of @text - * @analysis: #PangoAnalysis structure from PangoItemize + * @length: length of @text in bytes (may be -1 if @text is nul-terminated) + * @analysis: #PangoAnalysis structure from pango_itemize() * @attrs: an array to store character information in + * @attrs_len: size of the array passed as @attrs + * * Determines possible line, word, and character breaks * for a string of Unicode text. |