(article-unsplit-urls): Don't anchor urls to the
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 14 Nov 2004 19:44:26 +0000 (19:44 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 14 Nov 2004 19:44:26 +0000 (19:44 +0000)
start of the lines.

lisp/ChangeLog
lisp/gnus-art.el

index 0f5d755..1ad0e5d 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
+       start of the lines.
+
 2004-11-14  Magnus Henoch  <mange@freemail.hu>
 
        * hashcash.el (hashcash-default-payment): Change default to 20
index 77bf5cd..7773bce 100644 (file)
@@ -2447,7 +2447,7 @@ If READ-CHARSET, ask for a coding system."
     (let ((inhibit-read-only t))
       (goto-char (point-min))
       (while (re-search-forward
-             "^\\(\\(https?\\|ftp\\)://\\S-+\\) *\n\\(\\S-+\\)" nil t)
+             "\\(\\(https?\\|ftp\\)://\\S-+\\) *\n\\(\\S-+\\)" nil t)
        (replace-match "\\1\\3" t)))
     (when (interactive-p)
       (gnus-treat-article nil))))