diff options
author | Lauris Kaplinski <lauris@src.gnome.org> | 2000-08-24 11:25:53 +0800 |
---|---|---|
committer | Lauris Kaplinski <lauris@src.gnome.org> | 2000-08-24 11:25:53 +0800 |
commit | 8d63772a7dffe54c6320a70021110e33dfe7c1ba (patch) | |
tree | 8414f5588b54d8df4b006b4effd8e6cc740f70a6 /widgets/e-text | |
parent | 9e945f485b3dd9456db54f1004eb37b31acbe412 (diff) | |
download | gsoc2013-evolution-8d63772a7dffe54c6320a70021110e33dfe7c1ba.tar gsoc2013-evolution-8d63772a7dffe54c6320a70021110e33dfe7c1ba.tar.gz gsoc2013-evolution-8d63772a7dffe54c6320a70021110e33dfe7c1ba.tar.bz2 gsoc2013-evolution-8d63772a7dffe54c6320a70021110e33dfe7c1ba.tar.lz gsoc2013-evolution-8d63772a7dffe54c6320a70021110e33dfe7c1ba.tar.xz gsoc2013-evolution-8d63772a7dffe54c6320a70021110e33dfe7c1ba.tar.zst gsoc2013-evolution-8d63772a7dffe54c6320a70021110e33dfe7c1ba.zip |
Unicode in addressbook basically works, including simple searching
svn path=/trunk/; revision=4997
Diffstat (limited to 'widgets/e-text')
-rw-r--r-- | widgets/e-text/e-text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/e-text/e-text.c b/widgets/e-text/e-text.c index ea2a655932..ed87f21c95 100644 --- a/widgets/e-text/e-text.c +++ b/widgets/e-text/e-text.c @@ -851,7 +851,7 @@ split_into_lines (EText *text) laststart = text->text; cp = text->text; - for (p = unicode_get_utf8 (cp, &unival); line_num < text->num_lines && unival; cp = p, p = unicode_get_utf8 (p, &unival)) { + for (p = unicode_get_utf8 (cp, &unival); p && unival && line_num < text->num_lines; cp = p, p = unicode_get_utf8 (p, &unival)) { gboolean handled = FALSE; if (len == 0) lines->text = cp; |