diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-01-29 17:01:33 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-01-29 17:01:33 +0000 |
commit | d7c2974dec9b2fa2dfe65a2ace57c9b1cf35cac4 (patch) | |
tree | a0b62239f6a26685df3c5e061a4cd93287d20a77 /lisp/url/url-auth.el | |
parent | a4c6cfad1ce2abe4c4bed2e43d054cdc5bd825b3 (diff) | |
download | emacs-d7c2974dec9b2fa2dfe65a2ace57c9b1cf35cac4.tar.gz emacs-d7c2974dec9b2fa2dfe65a2ace57c9b1cf35cac4.tar.bz2 emacs-d7c2974dec9b2fa2dfe65a2ace57c9b1cf35cac4.zip |
(url-get-authentication): Fix typo in docstring.
Diffstat (limited to 'lisp/url/url-auth.el')
-rw-r--r-- | lisp/url/url-auth.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/url/url-auth.el b/lisp/url/url-auth.el index c0f2c6bdf0f..c786887f1f6 100644 --- a/lisp/url/url-auth.el +++ b/lisp/url/url-auth.el @@ -94,7 +94,7 @@ instead of the pathname inheritance method." (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 @@ TYPE is the type of authentication to be returned. This is either a string 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" |