diff options
author | Glenn Morris <rgm@gnu.org> | 2014-10-20 18:45:35 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2014-10-20 18:45:35 -0400 |
commit | a8cab05439c75e66ac2c83a20bb8a6c829674021 (patch) | |
tree | 1adec7a032bdb4d7b1c482743245040face3be37 /lisp/url | |
parent | 24421aa68b1eb23d6dacfd647480e2c21ac6d343 (diff) | |
download | emacs-a8cab05439c75e66ac2c83a20bb8a6c829674021.tar.gz |
* lisp/url/url-vars.el (url-bug-address): Make into an obsolete alias.
* lisp/url/url-http.el (url-http-handle-authentication):
* lisp/url/url-news.el (url-news-fetch-message-id):
Use M-x report-emacs-bug in help messages. [Backport]
Diffstat (limited to 'lisp/url')
-rw-r--r-- | lisp/url/ChangeLog | 7 | ||||
-rw-r--r-- | lisp/url/url-http.el | 2 | ||||
-rw-r--r-- | lisp/url/url-news.el | 3 | ||||
-rw-r--r-- | lisp/url/url-vars.el | 7 |
4 files changed, 12 insertions, 7 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 36f76fded69..c2085a851a8 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,5 +1,12 @@ 2014-10-20 Glenn Morris <rgm@gnu.org> + * url-vars.el (url-bug-address): Make into an obsolete alias. + * url-http.el (url-http-handle-authentication): + * url-news.el (url-news-fetch-message-id): + Use M-x report-emacs-bug in help messages. + +2014-10-20 Glenn Morris <rgm@gnu.org> + * Version 24.4 released. 2014-09-19 Dmitry Gutov <dgutov@yandex.ru> diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index b0a3b688a55..d839d977fd2 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el @@ -413,7 +413,7 @@ Return the number of characters removed." (goto-char (point-max)) (insert "<hr>Sorry, but I do not know how to handle " type " authentication. If you'd like to write it," - " send it to " url-bug-address ".<hr>") + " please use M-x report-emacs-bug RET.<hr>") ;; We used to set a `status' var (declared "special") but I can't ;; find the corresponding let-binding, so it's probably an error. ;; FIXME: Maybe it was supposed to set `success', i.e. to return t? diff --git a/lisp/url/url-news.el b/lisp/url/url-news.el index 105fb677374..0ce6d2e6cd1 100644 --- a/lisp/url/url-news.el +++ b/lisp/url/url-news.el @@ -70,8 +70,7 @@ " </xmp>\n" " </p>\n" " <p>\n" - " If you If you feel this is an error, <a href=\"" - "mailto:" url-bug-address "\">send mail</a>\n" + " If you feel this is an error, M-x report-emacs-bug RET.\n" " </p>\n" " </div>\n" " </body>\n" diff --git a/lisp/url/url-vars.el b/lisp/url/url-vars.el index 4cdb59deb27..62b7b855533 100644 --- a/lisp/url/url-vars.el +++ b/lisp/url/url-vars.el @@ -1,7 +1,6 @@ ;;; url-vars.el --- Variables for Uniform Resource Locator tool -;; Copyright (C) 1996-1999, 2001, 2004-2014 Free Software Foundation, -;; Inc. +;; Copyright (C) 1996-1999, 2001, 2004-2014 Free Software Foundation, Inc. ;; Keywords: comm, data, processes, hypermedia @@ -82,8 +81,8 @@ If non-nil and not t, the user will be asked for each refresh request." :type 'boolean :group 'url-cache) -(defconst url-bug-address "bug-gnu-emacs@gnu.org" - "Where to send bug reports.") +(define-obsolete-variable-alias 'url-bug-address + 'report-emacs-bug-address "24.5") (defcustom url-personal-mail-address nil "Your full email address. |