Skip to content

Commit 6df8900

Browse files
committed
Make gnus-mailing-list-archive recognize https
* /lisp/gnus/gnus-ml.el (gnus-mailing-list-archive): Accept https in regexp.
1 parent d3f0cf7 commit 6df8900

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lisp/gnus/gnus-ml.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ If FORCE is non-nil, replace the old ones."
150150
(with-current-buffer gnus-original-article-buffer
151151
(gnus-fetch-field "list-archive"))))
152152
(cond (list-archive
153-
(if (string-match "<\\(http:[^>]*\\)>" list-archive)
153+
(if (string-match "<\\(https?:[^>]*\\)>" list-archive)
154154
(browse-url (match-string 1 list-archive))
155155
(browse-url list-archive)))
156156
(t (gnus-message 1 "no list-archive in this group")))))

0 commit comments

Comments
 (0)