make email address parser also stop scanning when encountering separators ',' and...
authorAlfons Hoogervorst <alfons@proteus.demon.nl>
Sat, 13 Apr 2002 09:30:55 +0000 (09:30 +0000)
committerAlfons Hoogervorst <alfons@proteus.demon.nl>
Sat, 13 Apr 2002 09:30:55 +0000 (09:30 +0000)
ChangeLog.claws
configure.in
src/textview.c

index ed9af0714b88102c9f16f480ffc34dfa5d2ba39e..e96a29d4e722a76d0e251e95d05c8a29a9d10417 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-13 [alfons]    0.7.4claws79
+
+       * src/textview.c
+               make email parser also stop scanning when encountering separators
+               ',' and ';' (reported by Fabien Vantard <fvantard@opsion.fr>)
+
 2002-04-13 [paul]      0.7.4claws78
 
        * sync with 0.7.4cvs39
index 42e79ca566380d6d2cf1552535fb01a987a00107..add5cf58be2dc16124556cabe5b18e7679e5d207 100644 (file)
@@ -8,7 +8,7 @@ MINOR_VERSION=7
 MICRO_VERSION=4
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws78
+EXTRA_VERSION=claws79
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 0dab03e4cee9af76468c0462603af189009aa0fa..56e9061d2f6f821b4c0bb425675497fecfedc291 100644 (file)
@@ -688,7 +688,7 @@ static gchar *make_uri_string(const gchar *bp, const gchar *ep)
         (ch) > 32   && \
         (ch) != 127 && \
         !isspace(ch) && \
-        !strchr("()<>\"", (ch)))
+        !strchr("(),;<>\"", (ch)))
 
 /* alphabet and number within 7bit ASCII */
 #define IS_ASCII_ALNUM(ch)     (isascii(ch) && isalnum(ch))