aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThien-Thi Nguyen2005-08-06 15:55:38 +0000
committerThien-Thi Nguyen2005-08-06 15:55:38 +0000
commit71ddfde5a548ac9a56b3652c4c8c1dd4f3fce1ce (patch)
tree6f559c2614bd75d22a658ef6b67d1ef7dc53c9b4
parent97beadbd1f109740f91e5d078c3fab64de028121 (diff)
downloademacs-71ddfde5a548ac9a56b3652c4c8c1dd4f3fce1ce.tar.gz
emacs-71ddfde5a548ac9a56b3652c4c8c1dd4f3fce1ce.zip
Update years in copyright notice; nfc.
-rw-r--r--lisp/url/url-about.el2
-rw-r--r--lisp/url/url-auth.el3
-rw-r--r--lisp/url/url-cache.el7
-rw-r--r--lisp/url/url-cid.el2
-rw-r--r--lisp/url/url-cookie.el3
-rw-r--r--lisp/url/url-dav.el2
-rw-r--r--lisp/url/url-dired.el3
-rw-r--r--lisp/url/url-expand.el2
-rw-r--r--lisp/url/url-file.el3
-rw-r--r--lisp/url/url-ftp.el3
-rw-r--r--lisp/url/url-gw.el2
-rw-r--r--lisp/url/url-handlers.el3
-rw-r--r--lisp/url/url-history.el3
-rw-r--r--lisp/url/url-http.el2
-rw-r--r--lisp/url/url-https.el2
-rw-r--r--lisp/url/url-imap.el2
-rw-r--r--lisp/url/url-irc.el3
-rw-r--r--lisp/url/url-ldap.el5
-rw-r--r--lisp/url/url-mailto.el3
-rw-r--r--lisp/url/url-methods.el3
-rw-r--r--lisp/url/url-misc.el3
-rw-r--r--lisp/url/url-news.el3
-rw-r--r--lisp/url/url-nfs.el3
-rw-r--r--lisp/url/url-ns.el2
-rw-r--r--lisp/url/url-parse.el5
-rw-r--r--lisp/url/url-privacy.el3
-rw-r--r--lisp/url/url-proxy.el2
-rw-r--r--lisp/url/url-util.el3
-rw-r--r--lisp/url/url-vars.el3
-rw-r--r--lisp/url/url.el14
-rw-r--r--lisp/url/vc-dav.el4
31 files changed, 61 insertions, 42 deletions
diff --git a/lisp/url/url-about.el b/lisp/url/url-about.el
index d2fae55b141..c305bb31f7a 100644
--- a/lisp/url/url-about.el
+++ b/lisp/url/url-about.el
@@ -1,6 +1,6 @@
1;;; url-about.el --- Show internal URLs 1;;; url-about.el --- Show internal URLs
2 2
3;; Copyright (c) 2001, 2004 Free Software Foundation, Inc. 3;; Copyright (C) 2001, 2004, 2005 Free Software Foundation, Inc.
4 4
5;; Keywords: comm, data, processes, hypermedia 5;; Keywords: comm, data, processes, hypermedia
6 6
diff --git a/lisp/url/url-auth.el b/lisp/url/url-auth.el
index 336c28eab26..317f91c9a13 100644
--- a/lisp/url/url-auth.el
+++ b/lisp/url/url-auth.el
@@ -1,6 +1,7 @@
1;;; url-auth.el --- Uniform Resource Locator authorization modules 1;;; url-auth.el --- Uniform Resource Locator authorization modules
2 2
3;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes, hypermedia 6;; Keywords: comm, data, processes, hypermedia
6 7
diff --git a/lisp/url/url-cache.el b/lisp/url/url-cache.el
index e80ba059393..40967446dd7 100644
--- a/lisp/url/url-cache.el
+++ b/lisp/url/url-cache.el
@@ -1,6 +1,7 @@
1;;; url-cache.el --- Uniform Resource Locator retrieval tool 1;;; url-cache.el --- Uniform Resource Locator retrieval tool
2 2
3;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes, hypermedia 6;; Keywords: comm, data, processes, hypermedia
6 7
@@ -39,7 +40,7 @@
39 (if (file-exists-p file) 40 (if (file-exists-p file)
40 (not (file-directory-p file)) 41 (not (file-directory-p file))
41 (file-directory-p (file-name-directory file))))) 42 (file-directory-p (file-name-directory file)))))
42 43
43(defun url-cache-prepare (file) 44(defun url-cache-prepare (file)
44 "Makes it possible to cache data in FILE. 45 "Makes it possible to cache data in FILE.
45Creates any necessary parent directories, deleting any non-directory files 46Creates any necessary parent directories, deleting any non-directory files
@@ -70,7 +71,7 @@ FILE can be created or overwritten."
70 (if (url-cache-prepare fname) 71 (if (url-cache-prepare fname)
71 (let ((coding-system-for-write 'binary)) 72 (let ((coding-system-for-write 'binary))
72 (write-region (point-min) (point-max) fname nil 5))))))) 73 (write-region (point-min) (point-max) fname nil 5)))))))
73 74
74;;;###autoload 75;;;###autoload
75(defun url-is-cached (url) 76(defun url-is-cached (url)
76 "Return non-nil if the URL is cached." 77 "Return non-nil if the URL is cached."
diff --git a/lisp/url/url-cid.el b/lisp/url/url-cid.el
index 40307c49eaf..abaf8dd9e76 100644
--- a/lisp/url/url-cid.el
+++ b/lisp/url/url-cid.el
@@ -1,6 +1,6 @@
1;;; url-cid.el --- Content-ID URL loader 1;;; url-cid.el --- Content-ID URL loader
2 2
3;; Copyright (c) 1998 - 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1998, 1999, 2004, 2005 Free Software Foundation, Inc.
4 4
5;; Keywords: comm, data, processes 5;; Keywords: comm, data, processes
6 6
diff --git a/lisp/url/url-cookie.el b/lisp/url/url-cookie.el
index 314911f789b..618f89e60e9 100644
--- a/lisp/url/url-cookie.el
+++ b/lisp/url/url-cookie.el
@@ -1,6 +1,7 @@
1;;; url-cookie.el --- Netscape Cookie support 1;;; url-cookie.el --- Netscape Cookie support
2 2
3;; Copyright (c) 1996 - 1999,2004 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes, hypermedia 6;; Keywords: comm, data, processes, hypermedia
6 7
diff --git a/lisp/url/url-dav.el b/lisp/url/url-dav.el
index 1b683124c94..2a6b28b9b3c 100644
--- a/lisp/url/url-dav.el
+++ b/lisp/url/url-dav.el
@@ -1,6 +1,6 @@
1;;; url-dav.el --- WebDAV support 1;;; url-dav.el --- WebDAV support
2 2
3;; Copyright (C) 2001, 2004 Free Software Foundation, Inc. 3;; Copyright (C) 2001, 2004, 2005 Free Software Foundation, Inc.
4 4
5;; Author: Bill Perry <wmperry@gnu.org> 5;; Author: Bill Perry <wmperry@gnu.org>
6;; Maintainer: Bill Perry <wmperry@gnu.org> 6;; Maintainer: Bill Perry <wmperry@gnu.org>
diff --git a/lisp/url/url-dired.el b/lisp/url/url-dired.el
index 5d5381db0bf..7c635d13e3b 100644
--- a/lisp/url/url-dired.el
+++ b/lisp/url/url-dired.el
@@ -1,6 +1,7 @@
1;;; url-dired.el --- URL Dired minor mode 1;;; url-dired.el --- URL Dired minor mode
2 2
3;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, files 6;; Keywords: comm, files
6 7
diff --git a/lisp/url/url-expand.el b/lisp/url/url-expand.el
index c8e17a524bb..ca4b8c72ab8 100644
--- a/lisp/url/url-expand.el
+++ b/lisp/url/url-expand.el
@@ -1,6 +1,6 @@
1;;; url-expand.el --- expand-file-name for URLs 1;;; url-expand.el --- expand-file-name for URLs
2 2
3;; Copyright (c) 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1999, 2004, 2005 Free Software Foundation, Inc.
4 4
5;; Keywords: comm, data, processes 5;; Keywords: comm, data, processes
6 6
diff --git a/lisp/url/url-file.el b/lisp/url/url-file.el
index 7e224bd1420..44a4f8bd9f4 100644
--- a/lisp/url/url-file.el
+++ b/lisp/url/url-file.el
@@ -1,6 +1,7 @@
1;;; url-file.el --- File retrieval code 1;;; url-file.el --- File retrieval code
2 2
3;; Copyright (c) 1996 - 1999,2004 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes 6;; Keywords: comm, data, processes
6 7
diff --git a/lisp/url/url-ftp.el b/lisp/url/url-ftp.el
index 966000249d3..633f4ed40d1 100644
--- a/lisp/url/url-ftp.el
+++ b/lisp/url/url-ftp.el
@@ -1,6 +1,7 @@
1;;; url-ftp.el --- FTP wrapper 1;;; url-ftp.el --- FTP wrapper
2 2
3;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes 6;; Keywords: comm, data, processes
6 7
diff --git a/lisp/url/url-gw.el b/lisp/url/url-gw.el
index e0ccbbdc4e7..66ac39612fd 100644
--- a/lisp/url/url-gw.el
+++ b/lisp/url/url-gw.el
@@ -1,6 +1,6 @@
1;;; url-gw.el --- Gateway munging for URL loading 1;;; url-gw.el --- Gateway munging for URL loading
2 2
3;; Copyright (c) 1997, 1998, 2004 Free Software Foundation, Inc. 3;; Copyright (C) 1997, 1998, 2004, 2005 Free Software Foundation, Inc.
4 4
5;; Author: Bill Perry <wmperry@gnu.org> 5;; Author: Bill Perry <wmperry@gnu.org>
6;; Keywords: comm, data, processes 6;; Keywords: comm, data, processes
diff --git a/lisp/url/url-handlers.el b/lisp/url/url-handlers.el
index cc626a4cb44..bbbf19f53fc 100644
--- a/lisp/url/url-handlers.el
+++ b/lisp/url/url-handlers.el
@@ -1,6 +1,7 @@
1;;; url-handlers.el --- file-name-handler stuff for URL loading 1;;; url-handlers.el --- file-name-handler stuff for URL loading
2 2
3;; Copyright (c) 1996, 1997, 1998, 1999, 2004, 2005 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes, hypermedia 6;; Keywords: comm, data, processes, hypermedia
6 7
diff --git a/lisp/url/url-history.el b/lisp/url/url-history.el
index 040f83ad2f2..6da5dd91551 100644
--- a/lisp/url/url-history.el
+++ b/lisp/url/url-history.el
@@ -1,6 +1,7 @@
1;;; url-history.el --- Global history tracking for URL package 1;;; url-history.el --- Global history tracking for URL package
2 2
3;; Copyright (c) 1996 - 1999,2004 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes, hypermedia 6;; Keywords: comm, data, processes, hypermedia
6 7
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index b8bf920e2e5..2071b4e058f 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -1,6 +1,6 @@
1;;; url-http.el --- HTTP retrieval routines 1;;; url-http.el --- HTTP retrieval routines
2 2
3;; Copyright (c) 1999, 2001, 2004 Free Software Foundation, Inc. 3;; Copyright (C) 1999, 2001, 2004, 2005 Free Software Foundation, Inc.
4 4
5;; Author: Bill Perry <wmperry@gnu.org> 5;; Author: Bill Perry <wmperry@gnu.org>
6;; Keywords: comm, data, processes 6;; Keywords: comm, data, processes
diff --git a/lisp/url/url-https.el b/lisp/url/url-https.el
index e7aeffde788..1777da0b6b9 100644
--- a/lisp/url/url-https.el
+++ b/lisp/url/url-https.el
@@ -1,6 +1,6 @@
1;;; url-https.el --- HTTP over SSL/TLS routines 1;;; url-https.el --- HTTP over SSL/TLS routines
2 2
3;; Copyright (c) 1999, 2004 Free Software Foundation, Inc. 3;; Copyright (C) 1999, 2004, 2005 Free Software Foundation, Inc.
4 4
5;; Keywords: comm, data, processes 5;; Keywords: comm, data, processes
6 6
diff --git a/lisp/url/url-imap.el b/lisp/url/url-imap.el
index 9d923e17259..8d1b9b3877b 100644
--- a/lisp/url/url-imap.el
+++ b/lisp/url/url-imap.el
@@ -1,6 +1,6 @@
1;;; url-imap.el --- IMAP retrieval routines 1;;; url-imap.el --- IMAP retrieval routines
2 2
3;; Copyright (c) 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1999, 2004, 2005 Free Software Foundation, Inc.
4 4
5;; Author: Simon Josefsson <jas@pdc.kth.se> 5;; Author: Simon Josefsson <jas@pdc.kth.se>
6;; Keywords: comm, data, processes 6;; Keywords: comm, data, processes
diff --git a/lisp/url/url-irc.el b/lisp/url/url-irc.el
index dd88a85a03a..a06bdff5bfd 100644
--- a/lisp/url/url-irc.el
+++ b/lisp/url/url-irc.el
@@ -1,6 +1,7 @@
1;;; url-irc.el --- IRC URL interface 1;;; url-irc.el --- IRC URL interface
2 2
3;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes 6;; Keywords: comm, data, processes
6 7
diff --git a/lisp/url/url-ldap.el b/lisp/url/url-ldap.el
index 9b7ce5c89b4..ce7b7a9bab1 100644
--- a/lisp/url/url-ldap.el
+++ b/lisp/url/url-ldap.el
@@ -1,5 +1,6 @@
1;;; url-ldap.el --- LDAP Uniform Resource Locator retrieval code 1;;; url-ldap.el --- LDAP Uniform Resource Locator retrieval code
2;; Copyright (c) 1998, 1999, 2004, 2005 Free Software Foundation, Inc. 2
3;; Copyright (C) 1998, 1999, 2004, 2005 Free Software Foundation, Inc.
3 4
4;; Keywords: comm, data, processes 5;; Keywords: comm, data, processes
5 6
@@ -189,7 +190,7 @@ URL can be a URL string, or a URL vector of the type returned by
189 190
190 (setq binddn (cdr-safe (or (assoc "bindname" extensions) 191 (setq binddn (cdr-safe (or (assoc "bindname" extensions)
191 (assoc "!bindname" extensions)))) 192 (assoc "!bindname" extensions))))
192 193
193 ;; Now, let's actually do something with it. 194 ;; Now, let's actually do something with it.
194 (setq results (cdr (ldap-search-internal 195 (setq results (cdr (ldap-search-internal
195 (list 'host (concat host ":" (number-to-string port)) 196 (list 'host (concat host ":" (number-to-string port))
diff --git a/lisp/url/url-mailto.el b/lisp/url/url-mailto.el
index fc3eb97e085..86f5d4a88b6 100644
--- a/lisp/url/url-mailto.el
+++ b/lisp/url/url-mailto.el
@@ -1,6 +1,7 @@
1;;; url-mail.el --- Mail Uniform Resource Locator retrieval code 1;;; url-mail.el --- Mail Uniform Resource Locator retrieval code
2 2
3;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes 6;; Keywords: comm, data, processes
6 7
diff --git a/lisp/url/url-methods.el b/lisp/url/url-methods.el
index a82d78db3ac..e39ffa1eb5b 100644
--- a/lisp/url/url-methods.el
+++ b/lisp/url/url-methods.el
@@ -1,6 +1,7 @@
1;;; url-methods.el --- Load URL schemes as needed 1;;; url-methods.el --- Load URL schemes as needed
2 2
3;; Copyright (c) 1996,1997,1998,1999,2004 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes, hypermedia 6;; Keywords: comm, data, processes, hypermedia
6 7
diff --git a/lisp/url/url-misc.el b/lisp/url/url-misc.el
index e937c99a518..5041a407420 100644
--- a/lisp/url/url-misc.el
+++ b/lisp/url/url-misc.el
@@ -1,6 +1,7 @@
1;;; url-misc.el --- Misc Uniform Resource Locator retrieval code 1;;; url-misc.el --- Misc Uniform Resource Locator retrieval code
2 2
3;; Copyright (c) 1996,1997,1998,1999,2002 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2002, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes 6;; Keywords: comm, data, processes
6 7
diff --git a/lisp/url/url-news.el b/lisp/url/url-news.el
index 969edf6f684..593f33bb3f7 100644
--- a/lisp/url/url-news.el
+++ b/lisp/url/url-news.el
@@ -1,6 +1,7 @@
1;;; url-news.el --- News Uniform Resource Locator retrieval code 1;;; url-news.el --- News Uniform Resource Locator retrieval code
2 2
3;; Copyright (c) 1996 - 1999, 2004 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes 6;; Keywords: comm, data, processes
6 7
diff --git a/lisp/url/url-nfs.el b/lisp/url/url-nfs.el
index 0273415b8ab..858cd029a85 100644
--- a/lisp/url/url-nfs.el
+++ b/lisp/url/url-nfs.el
@@ -1,6 +1,7 @@
1;;; url-nfs.el --- NFS URL interface 1;;; url-nfs.el --- NFS URL interface
2 2
3;; Copyright (c) 1996,1997,1998,1999,2004 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes 6;; Keywords: comm, data, processes
6 7
diff --git a/lisp/url/url-ns.el b/lisp/url/url-ns.el
index d76c7cf459d..3edbf2c84d4 100644
--- a/lisp/url/url-ns.el
+++ b/lisp/url/url-ns.el
@@ -1,6 +1,6 @@
1;;; url-ns.el --- Various netscape-ish functions for proxy definitions 1;;; url-ns.el --- Various netscape-ish functions for proxy definitions
2 2
3;; Copyright (c) 1997 - 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1997, 1998, 1999, 2004, 2005 Free Software Foundation, Inc.
4 4
5;; Keywords: comm, data, processes, hypermedia 5;; Keywords: comm, data, processes, hypermedia
6 6
diff --git a/lisp/url/url-parse.el b/lisp/url/url-parse.el
index db85c43a38f..bbe7f112cea 100644
--- a/lisp/url/url-parse.el
+++ b/lisp/url/url-parse.el
@@ -1,6 +1,7 @@
1;;; url-parse.el --- Uniform Resource Locator parser 1;;; url-parse.el --- Uniform Resource Locator parser
2 2
3;; Copyright (c) 1996,1997,1998,1999,2004 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes 6;; Keywords: comm, data, processes
6 7
@@ -84,7 +85,7 @@
84 85
85(defmacro url-set-full (urlobj val) 86(defmacro url-set-full (urlobj val)
86 `(aset ,urlobj 8 ,val)) 87 `(aset ,urlobj 8 ,val))
87 88
88;;;###autoload 89;;;###autoload
89(defun url-recreate-url (urlobj) 90(defun url-recreate-url (urlobj)
90 "Recreate a URL string from the parsed URLOBJ." 91 "Recreate a URL string from the parsed URLOBJ."
diff --git a/lisp/url/url-privacy.el b/lisp/url/url-privacy.el
index e28a388dfa3..7700bb13941 100644
--- a/lisp/url/url-privacy.el
+++ b/lisp/url/url-privacy.el
@@ -1,6 +1,7 @@
1;;; url-privacy.el --- Global history tracking for URL package 1;;; url-privacy.el --- Global history tracking for URL package
2 2
3;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes, hypermedia 6;; Keywords: comm, data, processes, hypermedia
6 7
diff --git a/lisp/url/url-proxy.el b/lisp/url/url-proxy.el
index 1eb8f90bda3..c5d7753daf5 100644
--- a/lisp/url/url-proxy.el
+++ b/lisp/url/url-proxy.el
@@ -1,6 +1,6 @@
1;;; url-proxy.el --- Proxy server support 1;;; url-proxy.el --- Proxy server support
2 2
3;; Copyright (c) 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1999, 2004, 2005 Free Software Foundation, Inc.
4 4
5;; Keywords: comm, data, processes, hypermedia 5;; Keywords: comm, data, processes, hypermedia
6 6
diff --git a/lisp/url/url-util.el b/lisp/url/url-util.el
index e64d328fd3d..bec0c7a3133 100644
--- a/lisp/url/url-util.el
+++ b/lisp/url/url-util.el
@@ -1,6 +1,7 @@
1;;; url-util.el --- Miscellaneous helper routines for URL library 1;;; url-util.el --- Miscellaneous helper routines for URL library
2 2
3;; Copyright (c) 1996,1997,1998,1999,2001,2004 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Author: Bill Perry <wmperry@gnu.org> 6;; Author: Bill Perry <wmperry@gnu.org>
6;; Keywords: comm, data, processes 7;; Keywords: comm, data, processes
diff --git a/lisp/url/url-vars.el b/lisp/url/url-vars.el
index 76669899172..53b8a5eef31 100644
--- a/lisp/url/url-vars.el
+++ b/lisp/url/url-vars.el
@@ -1,6 +1,7 @@
1;;; url-vars.el --- Variables for Uniform Resource Locator tool 1;;; url-vars.el --- Variables for Uniform Resource Locator tool
2 2
3;; Copyright (c) 1996,1997,1998,1999,2001,2004 Free Software Foundation, Inc. 3;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004,
4;; 2005 Free Software Foundation, Inc.
4 5
5;; Keywords: comm, data, processes, hypermedia 6;; Keywords: comm, data, processes, hypermedia
6 7
diff --git a/lisp/url/url.el b/lisp/url/url.el
index 21859ad9566..ef101fe6f2a 100644
--- a/lisp/url/url.el
+++ b/lisp/url/url.el
@@ -1,7 +1,7 @@
1;;; url.el --- Uniform Resource Locator retrieval tool 1;;; url.el --- Uniform Resource Locator retrieval tool
2 2
3;; Copyright (c) 1996, 1997, 1998, 1999, 2001, 2004, 2005 3;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004,
4;; Free Software Foundation, Inc. 4;; 2005 Free Software Foundation, Inc.
5 5
6;; Author: Bill Perry <wmperry@gnu.org> 6;; Author: Bill Perry <wmperry@gnu.org>
7;; Keywords: comm, data, processes, hypermedia 7;; Keywords: comm, data, processes, hypermedia
@@ -56,7 +56,7 @@
56(require 'url-parse) 56(require 'url-parse)
57(require 'url-util) 57(require 'url-util)
58 58
59;; Fixme: customize? convert-standard-filename? 59;; Fixme: customize? convert-standard-filename?
60;;;###autoload 60;;;###autoload
61(defvar url-configuration-directory "~/.url") 61(defvar url-configuration-directory "~/.url")
62 62
@@ -71,7 +71,7 @@ Emacs."
71 71
72 (mailcap-parse-mailcaps) 72 (mailcap-parse-mailcaps)
73 (mailcap-parse-mimetypes) 73 (mailcap-parse-mimetypes)
74 74
75 ;; Register all the authentication schemes we can handle 75 ;; Register all the authentication schemes we can handle
76 (url-register-auth-scheme "basic" nil 4) 76 (url-register-auth-scheme "basic" nil 4)
77 (url-register-auth-scheme "digest" nil 7) 77 (url-register-auth-scheme "digest" nil 7)
@@ -79,11 +79,11 @@ Emacs."
79 (setq url-cookie-file 79 (setq url-cookie-file
80 (or url-cookie-file 80 (or url-cookie-file
81 (expand-file-name "cookies" url-configuration-directory))) 81 (expand-file-name "cookies" url-configuration-directory)))
82 82
83 (setq url-history-file 83 (setq url-history-file
84 (or url-history-file 84 (or url-history-file
85 (expand-file-name "history" url-configuration-directory))) 85 (expand-file-name "history" url-configuration-directory)))
86 86
87 ;; Parse the global history file if it exists, so that it can be used 87 ;; Parse the global history file if it exists, so that it can be used
88 ;; for URL completion, etc. 88 ;; for URL completion, etc.
89 (url-history-parse-history) 89 (url-history-parse-history)
@@ -229,7 +229,7 @@ no further processing). URL is either a string or a parsed URL."
229 (message "Viewing externally") 229 (message "Viewing externally")
230 (kill-buffer (current-buffer))) 230 (kill-buffer (current-buffer)))
231 (display-buffer (current-buffer)) 231 (display-buffer (current-buffer))
232 (add-hook 'kill-buffer-hook 232 (add-hook 'kill-buffer-hook
233 `(lambda () (mm-destroy-parts ',handle)) 233 `(lambda () (mm-destroy-parts ',handle))
234 nil 234 nil
235 t))))) 235 t)))))
diff --git a/lisp/url/vc-dav.el b/lisp/url/vc-dav.el
index bfc532958b6..926b90d5f31 100644
--- a/lisp/url/vc-dav.el
+++ b/lisp/url/vc-dav.el
@@ -1,6 +1,6 @@
1;;; vc-dav.el --- vc.el support for WebDAV 1;;; vc-dav.el --- vc.el support for WebDAV
2 2
3;; Copyright (C) 2001 Free Software Foundation, Inc. 3;; Copyright (C) 2001, 2004, 2005 Free Software Foundation, Inc.
4 4
5;; Author: Bill Perry <wmperry@gnu.org> 5;; Author: Bill Perry <wmperry@gnu.org>
6;; Maintainer: Bill Perry <wmperry@gnu.org> 6;; Maintainer: Bill Perry <wmperry@gnu.org>
@@ -57,7 +57,7 @@ For a list of possible values, see `vc-state'."
57 ;; _WE_ have a lock 57 ;; _WE_ have a lock
58 'edited 58 'edited
59 (cdr (car locks))))))) 59 (cdr (car locks)))))))
60 60
61(defun vc-dav-checkout-model (url) 61(defun vc-dav-checkout-model (url)
62 "Indicate whether URL needs to be \"checked out\" before it can be edited. 62 "Indicate whether URL needs to be \"checked out\" before it can be edited.
63See `vc-checkout-model' for a list of possible values." 63See `vc-checkout-model' for a list of possible values."