Fix for if the buffer ends with an email address (and no newline).

* e-html-utils.c (e_text_to_html_full): Fix for if the buffer ends
	with an email address (and no newline).

svn path=/trunk/; revision=15802
This commit is contained in:
Dan Winship
2002-02-22 19:57:17 +00:00
parent 843b7d2c82
commit d7ea6022c1
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-02-22 Dan Winship <danw@ximian.com>
* e-html-utils.c (e_text_to_html_full): Fix for if the buffer ends
with an email address (and no newline).
2002-02-09 JP Rosevear <jpr@ximian.com>
* e-pilot-settings.h: add row and column defines

View File

@ -307,6 +307,8 @@ e_text_to_html_full (const char *input, unsigned int flags, guint32 color)
g_free (dispaddr);
g_free (outaddr);
if (!*cur)
break;
u = g_utf8_get_char (cur);
}
}