diff options
author | Dan Winship <danw@src.gnome.org> | 2000-04-21 12:05:12 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-04-21 12:05:12 +0800 |
commit | 170588e217463591937bd86e93845a896dfe1317 (patch) | |
tree | 5a95311889f73daee24dc1bcf960bd8ad3dcc01b /camel/camel.c | |
parent | 115bdd59278dbbc2111c88b80be065db72e08528 (diff) | |
download | gsoc2013-evolution-170588e217463591937bd86e93845a896dfe1317.tar gsoc2013-evolution-170588e217463591937bd86e93845a896dfe1317.tar.gz gsoc2013-evolution-170588e217463591937bd86e93845a896dfe1317.tar.bz2 gsoc2013-evolution-170588e217463591937bd86e93845a896dfe1317.tar.lz gsoc2013-evolution-170588e217463591937bd86e93845a896dfe1317.tar.xz gsoc2013-evolution-170588e217463591937bd86e93845a896dfe1317.tar.zst gsoc2013-evolution-170588e217463591937bd86e93845a896dfe1317.zip |
use libunicode iconv functions rather than libc ones (since libc might not
* camel-mime-utils.c (rfc2047_decode_word): use libunicode iconv
functions rather than libc ones (since libc might not have them).
(header_decode_date): add autoconfiscation on timezone code
* camel.c (camel_init): call unicode_init ()
svn path=/trunk/; revision=2540
Diffstat (limited to 'camel/camel.c')
-rw-r--r-- | camel/camel.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/camel/camel.c b/camel/camel.c index 47efb9ffbb..56d2056db0 100644 --- a/camel/camel.c +++ b/camel/camel.c @@ -39,5 +39,7 @@ camel_init(void) #endif /* G_THREADS_ENABLED */ #endif /* ENABLE_THREADS */ + unicode_init (); + return data_wrapper_repository_init (); } |