aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2004-04-12 04:06:12 +0000
committerStefan Monnier2004-04-12 04:06:12 +0000
commit016da1c19d23e8c5c9bd4cbb603648a2b4145f19 (patch)
treeeafa46bf88cbeab3f686bd1cbb580c895050c191
parentc6bfe6e7caa64bca676230a5d1b285f3c3654d37 (diff)
downloademacs-016da1c19d23e8c5c9bd4cbb603648a2b4145f19.tar.gz
emacs-016da1c19d23e8c5c9bd4cbb603648a2b4145f19.zip
(cl): Don't require.
(url): Add :version. (url-bug-address): Use bug-gnu-emacs.
-rw-r--r--lisp/url/url-vars.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/url/url-vars.el b/lisp/url/url-vars.el
index 27b83541504..68076e7d3db 100644
--- a/lisp/url/url-vars.el
+++ b/lisp/url/url-vars.el
@@ -24,13 +24,13 @@
24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 25
26(require 'mm-util) 26(require 'mm-util)
27(eval-when-compile (require 'cl))
28 27
29(defconst url-version "Emacs" 28(defconst url-version "Emacs"
30 "Version number of URL package.") 29 "Version number of URL package.")
31 30
32(defgroup url nil 31(defgroup url nil
33 "Uniform Resource Locator tool" 32 "Uniform Resource Locator tool"
33 :version "21.4"
34 :group 'hypermedia) 34 :group 'hypermedia)
35 35
36(defgroup url-file nil 36(defgroup url-file nil
@@ -94,7 +94,7 @@ the second time is 'too old' when compared to the first time."
94 :type 'function 94 :type 'function
95 :group 'url-cache) 95 :group 'url-cache)
96 96
97(defvar url-bug-address "w3-bugs@xemacs.org" 97(defconst url-bug-address "bug-gnu-emacs@gnu.org"
98 "Where to send bug reports.") 98 "Where to send bug reports.")
99 99
100(defcustom url-personal-mail-address nil 100(defcustom url-personal-mail-address nil