Mercurial > emacs
changeset 75519:b271481fb8d2
(url-get-authentication): Fix typo in docstring.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 29 Jan 2007 16:58:37 +0000 |
parents | 0d70c66d2c2e |
children | f02795ed5f3e |
files | lisp/url/url-auth.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/url/url-auth.el Mon Jan 29 16:56:46 2007 +0000 +++ b/lisp/url/url-auth.el Mon Jan 29 16:58:37 2007 +0000 @@ -94,7 +94,7 @@ (string-match "/" path)) (while (and byserv (not retval)) (setq data (car (car byserv))) - (if (or (not (string-match "/" data)) ; Its a realm - take it! + (if (or (not (string-match "/" data)) ; It's a realm - take it! (and (>= (length path) (length data)) (string= data (substring path 0 (length data))))) @@ -231,7 +231,7 @@ representing the type (basic, digest, etc), or nil or the symbol 'any' to specify that any authentication is acceptable. If requesting 'any' the strongest matching authentication will be returned. If this is - wrong, its no big deal, the error from the server will specify exactly + wrong, it's no big deal, the error from the server will specify exactly what type of auth to use PROMPT is boolean - specifies whether to ask the user for a username/password if one cannot be found in the cache"