diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2020-03-21 02:47:08 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2020-03-21 02:49:25 +0100 |
commit | c1772ce296ae9421412b4bc4a904ef51db49376a (patch) | |
tree | 5a50aa631025aa6c3b27ce594a0a03e3f57c10ee /lisp/url/url-http.el | |
parent | 84548f8dc702ad967e23439d058376c19fea51f8 (diff) | |
download | emacs-c1772ce296ae9421412b4bc4a904ef51db49376a.tar.gz emacs-c1772ce296ae9421412b4bc4a904ef51db49376a.tar.bz2 emacs-c1772ce296ae9421412b4bc4a904ef51db49376a.zip |
Declare some <package>-version variables obsolete
These are not used for anything these days and can therefore be
removed. Package developers should check the Emacs version instead.
Ref: https://lists.gnu.org/r/emacs-devel/2020-03/msg00080.html
* lisp/calendar/icalendar.el (icalendar-version):
* lisp/dframe.el (dframe-version):
* lisp/emacs-lisp/checkdoc.el (checkdoc-version):
* lisp/emulation/edt.el (edt-version):
* lisp/international/mule.el (mule-version)
(mule-version-date):
* lisp/linum.el (linum-version):
* lisp/play/bubbles.el (bubbles-version):
* lisp/speedbar.el (speedbar-version):
* lisp/textmodes/remember.el (remember-version):
* lisp/url/url-vars.el (url-version):
* lisp/woman.el (woman-version): Declare obsolete.
* lisp/emacs-lisp/checkdoc.el (checkdoc-start-section):
* lisp/speedbar.el (speedbar-mode):
* lisp/url/url-about.el (url-about-protocols):
* lisp/url/url-http.el (url-http--user-agent-default-string):
* lisp/url/url-news.el (url-news-fetch-message-id):
* lisp/woman.el (woman-menu, woman-mode): Stop using variables
declared obsolete above.
Diffstat (limited to 'lisp/url/url-http.el')
-rw-r--r-- | lisp/url/url-http.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index 55953c83c04..669c24571f9 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el @@ -225,7 +225,7 @@ request.") (os-info (unless (and (listp url-privacy-level) (memq 'os url-privacy-level)) (format "(%s; %s)" url-system-type url-os-type))) - (url-info (format "URL/%s" url-version))) + (url-info (format "URL/Emacs"))) (string-join (delq nil (list package-info url-info emacs-info os-info)) " "))) |