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
7feadb90
Commit
7feadb90
authored
Jan 15, 2009
by
Chong Yidong
Browse files
(url-cookie-retrieve): Fix last change.
parent
68fe704b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
lisp/url/url-cookie.el
lisp/url/url-cookie.el
+6
-4
No files found.
lisp/url/url-cookie.el
View file @
7feadb90
...
...
@@ -251,10 +251,12 @@ telling Microsoft that."
(
while
cookies
(
setq
cur
(
car
cookies
)
cookies
(
cdr
cookies
)
localpart-match
(
let
((
lp
(
url-cookie-localpart
cur
)))
(
when
lp
(
concat
"^"
(
regexp-quote
lp
)))))
(
if
(
and
(
equal
localpart
localpart-match
)
localpart-match
(
url-cookie-localpart
cur
))
(
if
(
and
(
if
(
stringp
localpart-match
)
(
string-match
(
concat
"^"
(
regexp-quote
localpart-match
))
localpart
)
(
equal
localpart
localpart-match
))
(
not
(
url-cookie-expired-p
cur
)))
(
setq
retval
(
cons
cur
retval
))))))
retval
))
...
...
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