aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-01-29 17:01:33 +0000
committerJuanma Barranquero2007-01-29 17:01:33 +0000
commitd7c2974dec9b2fa2dfe65a2ace57c9b1cf35cac4 (patch)
treea0b62239f6a26685df3c5e061a4cd93287d20a77
parenta4c6cfad1ce2abe4c4bed2e43d054cdc5bd825b3 (diff)
downloademacs-d7c2974dec9b2fa2dfe65a2ace57c9b1cf35cac4.tar.gz
emacs-d7c2974dec9b2fa2dfe65a2ace57c9b1cf35cac4.zip
(url-get-authentication): Fix typo in docstring.
-rw-r--r--lisp/ChangeLog22
-rw-r--r--lisp/url/url-auth.el4
2 files changed, 23 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7d96ceaadf4..56c24779e25 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,6 +1,26 @@
12007-01-29 Juanma Barranquero <lekktu@gmail.com> 12007-01-29 Juanma Barranquero <lekktu@gmail.com>
2 2
3 * emacs-lisp/shadow.el (list-load-path-shadows): Doc fix. 3 * isearchb.el (isearchb-iswitchb):
4 * ps-print.el (ps-build-face-reference):
5 * eshell/esh-cmd.el (eshell-rewrite-for-command):
6 * international/mule.el (find-auto-coding):
7 * mail/supercite.el (sc-attrib-selection-list):
8 * progmodes/cc-defs.el (c-emacs-features):
9 * progmodes/cc-vars.el (c-offsets-alist):
10 * progmodes/flymake.el
11 (flymake-init-create-temp-source-and-master-buffer-copy):
12 Fix typos in docstrings (some suggested by Chris Moore).
13
14 * progmodes/vhdl-mode.el (vhdl-components-package-name)
15 (vhdl-get-library-unit, vhdl-corresponding-begin)
16 (vhdl-skip-case-alternative, vhdl-backward-skip-label)
17 (vhdl-align-region-2, vhdl-electric-dash, vhdl-case-word)
18 (vhdl-hooked-abbrev, vhdl-hs-forward-sexp-func)
19 (vhdl-font-lock-match-item): Fix typos in docstrings.
20 (vhdl-get-library-unit, vhdl-get-block-state, vhdl-sort-alist)
21 (vhdl-set-offset, vhdl-fix-case-region-1, vhdl-scan-directory-contents)
22 (vhdl-speedbar-insert-project-hierarchy):
23 Improve argument/docstring consistency.
4 24
52007-01-29 Kenichi Handa <handa@m17n.org> 252007-01-29 Kenichi Handa <handa@m17n.org>
6 26
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."
94 (string-match "/" path)) 94 (string-match "/" path))
95 (while (and byserv (not retval)) 95 (while (and byserv (not retval))
96 (setq data (car (car byserv))) 96 (setq data (car (car byserv)))
97 (if (or (not (string-match "/" data)) ; Its a realm - take it! 97 (if (or (not (string-match "/" data)) ; It's a realm - take it!
98 (and 98 (and
99 (>= (length path) (length data)) 99 (>= (length path) (length data))
100 (string= data (substring path 0 (length data))))) 100 (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
231 representing the type (basic, digest, etc), or nil or the symbol 'any' 231 representing the type (basic, digest, etc), or nil or the symbol 'any'
232 to specify that any authentication is acceptable. If requesting 'any' 232 to specify that any authentication is acceptable. If requesting 'any'
233 the strongest matching authentication will be returned. If this is 233 the strongest matching authentication will be returned. If this is
234 wrong, its no big deal, the error from the server will specify exactly 234 wrong, it's no big deal, the error from the server will specify exactly
235 what type of auth to use 235 what type of auth to use
236PROMPT is boolean - specifies whether to ask the user for a username/password 236PROMPT is boolean - specifies whether to ask the user for a username/password
237 if one cannot be found in the cache" 237 if one cannot be found in the cache"