Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d7c2974d
Commit
d7c2974d
authored
Jan 29, 2007
by
Juanma Barranquero
Browse files
(url-get-authentication): Fix typo in docstring.
parent
a4c6cfad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
3 deletions
+23
-3
lisp/ChangeLog
lisp/ChangeLog
+21
-1
lisp/url/url-auth.el
lisp/url/url-auth.el
+2
-2
No files found.
lisp/ChangeLog
View file @
d7c2974d
2007-01-29 Juanma Barranquero <lekktu@gmail.com>
* emacs-lisp/shadow.el (list-load-path-shadows): Doc fix.
* isearchb.el (isearchb-iswitchb):
* ps-print.el (ps-build-face-reference):
* eshell/esh-cmd.el (eshell-rewrite-for-command):
* international/mule.el (find-auto-coding):
* mail/supercite.el (sc-attrib-selection-list):
* progmodes/cc-defs.el (c-emacs-features):
* progmodes/cc-vars.el (c-offsets-alist):
* progmodes/flymake.el
(flymake-init-create-temp-source-and-master-buffer-copy):
Fix typos in docstrings (some suggested by Chris Moore).
* progmodes/vhdl-mode.el (vhdl-components-package-name)
(vhdl-get-library-unit, vhdl-corresponding-begin)
(vhdl-skip-case-alternative, vhdl-backward-skip-label)
(vhdl-align-region-2, vhdl-electric-dash, vhdl-case-word)
(vhdl-hooked-abbrev, vhdl-hs-forward-sexp-func)
(vhdl-font-lock-match-item): Fix typos in docstrings.
(vhdl-get-library-unit, vhdl-get-block-state, vhdl-sort-alist)
(vhdl-set-offset, vhdl-fix-case-region-1, vhdl-scan-directory-contents)
(vhdl-speedbar-insert-project-hierarchy):
Improve argument/docstring consistency.
2007-01-29 Kenichi Handa <handa@m17n.org>
lisp/url/url-auth.el
View file @
d7c2974d
...
...
@@ -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"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment