diff options
Diffstat (limited to 'lisp/url')
| -rw-r--r-- | lisp/url/url-cookie.el | 2 |
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. |