diff options
author | Dan Winship <danw@src.gnome.org> | 2002-08-01 03:02:02 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-08-01 03:02:02 +0800 |
commit | 3a2c51d2a3e64fe444ed9322f01101880df5679c (patch) | |
tree | 8abf40407f3164f13a645f919a4988d4e104b6a6 /e-util/ChangeLog | |
parent | 5f313610872f9662635e085c89310458c583bbe1 (diff) | |
download | gsoc2013-evolution-3a2c51d2a3e64fe444ed9322f01101880df5679c.tar gsoc2013-evolution-3a2c51d2a3e64fe444ed9322f01101880df5679c.tar.gz gsoc2013-evolution-3a2c51d2a3e64fe444ed9322f01101880df5679c.tar.bz2 gsoc2013-evolution-3a2c51d2a3e64fe444ed9322f01101880df5679c.tar.lz gsoc2013-evolution-3a2c51d2a3e64fe444ed9322f01101880df5679c.tar.xz gsoc2013-evolution-3a2c51d2a3e64fe444ed9322f01101880df5679c.tar.zst gsoc2013-evolution-3a2c51d2a3e64fe444ed9322f01101880df5679c.zip |
Don't use "isprint(c)" to mean "c >= 32 && c < 128" since it doesn't in
* e-html-utils.c (is_addr_char, is_trailing_garbage): Don't use
"isprint(c)" to mean "c >= 32 && c < 128" since it doesn't in most
locales.
(is_domain_name_char): new macro for dns-valid characters
(email_address_extract): Use is_domain_name_char rather than
is_addr_char for the part after the @.
svn path=/trunk/; revision=17655
Diffstat (limited to 'e-util/ChangeLog')
-rw-r--r-- | e-util/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 714c11cbbf..d9923c0463 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,12 @@ +2002-07-31 Dan Winship <danw@ximian.com> + + * e-html-utils.c (is_addr_char, is_trailing_garbage): Don't use + "isprint(c)" to mean "c >= 32 && c < 128" since it doesn't in most + locales. + (is_domain_name_char): new macro for dns-valid characters + (email_address_extract): Use is_domain_name_char rather than + is_addr_char for the part after the @. + 2002-07-30 Jeffrey Stedfast <fejj@ximian.com> * e-host-utils.c (e_gethostbyname_r): If the user has enabled IPv6 |