diff options
author | Not Zed <NotZed@Ximian.com> | 2004-06-17 11:32:04 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-06-17 11:32:04 +0800 |
commit | 16c9d26176e7db3c7aab99d44b35ea39d9f74951 (patch) | |
tree | d9eb82839d942289f34de7e4a3660c1658f39a22 /mail/em-utils.c | |
parent | fa5f2ab56e524d761b90547424681d7350184591 (diff) | |
download | gsoc2013-evolution-16c9d26176e7db3c7aab99d44b35ea39d9f74951.tar.gz gsoc2013-evolution-16c9d26176e7db3c7aab99d44b35ea39d9f74951.tar.zst gsoc2013-evolution-16c9d26176e7db3c7aab99d44b35ea39d9f74951.zip |
** See #59885.
2004-06-17 Not Zed <NotZed@Ximian.com>
** See #59885.
* em-format-html-quote.[ch]: remove and remove from build, not
used.
* Makefile.am (libevolution_mail_la_LIBADD): add libeabutil and
evolution-smime.
* mail-component-factory.c (factory): there is no mail_config
anymore.
2004-06-16 Not Zed <NotZed@Ximian.com>
* em-utils.c (em_utils_selection_get_urilist): handle comments in
the urilist. Can't remember the rfc for it.
svn path=/trunk/; revision=26374
Diffstat (limited to 'mail/em-utils.c')
-rw-r--r-- | mail/em-utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c index 82a5d73f4f..fe7b30e7c5 100644 --- a/mail/em-utils.c +++ b/mail/em-utils.c @@ -1063,6 +1063,8 @@ em_utils_selection_get_urilist(GtkSelectionData *data, CamelFolder *folder) g_free(tmp); for (i=0;res == 0 && uris[i];i++) { g_strstrip(uris[i]); + if (uris[i][0] == '#') + continue; url = camel_url_new(uris[i], NULL); if (url == NULL) |