diff options
| author | Stefan Kangas | 2023-10-29 14:06:32 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2023-10-29 14:06:54 +0100 |
| commit | 3bc092270027660a4edbbb8c5a4e5a37f114076c (patch) | |
| tree | bae2ac947bd61341fde838e479428f4e01eb368a | |
| parent | cb86120272042df9420a726b3a754d58f300f350 (diff) | |
| download | emacs-3bc092270027660a4edbbb8c5a4e5a37f114076c.tar.gz emacs-3bc092270027660a4edbbb8c5a4e5a37f114076c.zip | |
Make nnrss suggest HTTPS instead of HTTP
* lisp/gnus/nnrss.el (nnrss-check-group): Suggest HTTPS instead of
HTTP when prompting for URL.
| -rw-r--r-- | lisp/gnus/nnrss.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/nnrss.el b/lisp/gnus/nnrss.el index c5f2cb672d7..06a0bc7e799 100644 --- a/lisp/gnus/nnrss.el +++ b/lisp/gnus/nnrss.el | |||
| @@ -629,7 +629,7 @@ which RSS 2.0 allows." | |||
| 629 | (assoc 'href | 629 | (assoc 'href |
| 630 | (nnrss-discover-feed | 630 | (nnrss-discover-feed |
| 631 | (read-string | 631 | (read-string |
| 632 | (format "URL to search for %s: " group) "http://"))))) | 632 | (format "URL to search for %s: " group) "https://"))))) |
| 633 | (let ((pair (assoc-string group nnrss-server-data))) | 633 | (let ((pair (assoc-string group nnrss-server-data))) |
| 634 | (if pair | 634 | (if pair |
| 635 | (setcdr (cdr pair) (list url)) | 635 | (setcdr (cdr pair) (list url)) |