Changes committed gnus/lisp (ChangeLog gnus-art.el)
"Reiner Steib" <[email protected]>
| Newsgroups | gmane.emacs.gnus.commits |
|---|---|
| Message-ID | <[email protected]> |
Modified: ChangeLog gnus-art.el (gnus-button-url-regexp): Improve handling of parenthesis. Index: ChangeLog diff -u gnus/lisp/ChangeLog:7.1792 gnus/lisp/ChangeLog:7.1793 --- ChangeLog:7.1792 Sun Mar 16 15:34:30 2008 +++ ChangeLog Sun Mar 16 15:34:56 2008 @@ -2,6 +2,7 @@ * gnus-art.el (gnus-article-browse-html-article): Fix type in doc string. + (gnus-button-url-regexp): Improve handling of parenthesis. 2008-03-14 Katsumi Yamaoka <[email protected]> Index: gnus-art.el diff -u gnus/lisp/gnus-art.el:7.266 gnus/lisp/gnus-art.el:7.267 --- gnus-art.el:7.266 Sun Mar 16 15:34:30 2008 +++ gnus-art.el Sun Mar 16 15:34:56 2008 @@ -6899,7 +6899,8 @@ (concat "\\(?:" ;; Match paired parentheses, e.g. in Wikipedia URLs: - "[" chars punct "]+" "(" "[" chars punct "]+" "[" chars "]*)" "[" chars "]" + ;; http://thread.gmane.org/[email protected] + "[" chars punct "]+" "(" "[" chars punct "]+" "[" chars "]*)" "[" chars "]*" "\\|" "[" chars punct "]+" "[" chars "]" "\\)"))