aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/url
diff options
context:
space:
mode:
authorGlenn Morris2020-03-30 07:50:37 -0700
committerGlenn Morris2020-03-30 07:50:37 -0700
commitfa4eec5cfa8121837e5d5b89e623ba478f0759ad (patch)
tree38ef4f6bb4dafbd463053bb06ad9eaf25bb49037 /lisp/url
parent8911d0899713132ccc2299b0700dac3315c44de0 (diff)
parentc6e0981b96eaa12c28b70c949ccd6e426c13df4d (diff)
downloademacs-fa4eec5cfa8121837e5d5b89e623ba478f0759ad.tar.gz
emacs-fa4eec5cfa8121837e5d5b89e623ba478f0759ad.zip
Merge from origin/emacs-27
c6e0981b96 (origin/emacs-27) * lisp/image/image-converter.el: Fix cus... 461bd9cc20 Fix url-cookie.el for lexical binding f3ccfb1926 ; * src/decompress.c: Fix comment style. 1af03e7e92 ; * src/xfaces.c (syms_of_xfaces): Fix wording and typo. 93945fcd19 ; * test/lisp/calc/calc-tests.el: Fix mistake in last commit ee47e00f4e Don't suggest setting face-remapping-alist to a literal (B... c2b8ce4439 Calc: don't treat nil as an integer (bug#40155) e1f0e08922 * lisp/files.el (directory-files-recursively): Doc fix. (... 02b3820315 Document how to disable Tramp file archives
Diffstat (limited to 'lisp/url')
-rw-r--r--lisp/url/url-cookie.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/url/url-cookie.el b/lisp/url/url-cookie.el
index 7ab9a2f1779..bee3a6b85e4 100644
--- a/lisp/url/url-cookie.el
+++ b/lisp/url/url-cookie.el
@@ -319,7 +319,7 @@ i.e. 1970-1-1) are loaded as expiring one year from now instead."
319 (pop untrusted))) 319 (pop untrusted)))
320 (and trusted untrusted 320 (and trusted untrusted
321 ;; Choose the more specific match. 321 ;; Choose the more specific match.
322 (set (if (> trusted untrusted) 'untrusted 'trusted) nil)) 322 (if (> trusted untrusted) (setq untrusted nil) (setq trusted nil)))
323 (cond 323 (cond
324 (untrusted 324 (untrusted
325 ;; The site was explicitly marked as untrusted by the user. 325 ;; The site was explicitly marked as untrusted by the user.