From: Thomas Fitzsimmons Date: Wed, 15 May 2019 04:14:21 +0000 (+0200) Subject: Fix url-auth prompts when realm is empty X-Git-Tag: emacs-27.0.90~2890 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4fa6029f7ee30aa3316d6d73db61462730042908;p=emacs.git Fix url-auth prompts when realm is empty * lisp/url/url-auth.el (url-get-authentication): When realm is empty, use the entire URL in the prompt (bug#35688). --- diff --git a/lisp/url/url-auth.el b/lisp/url/url-auth.el index 0746cfd96cb..f644787cc64 100644 --- a/lisp/url/url-auth.el +++ b/lisp/url/url-auth.el @@ -478,6 +478,8 @@ PROMPT is boolean - specifies whether to ask the user for a username/password if one cannot be found in the cache" (if (not realm) (setq realm (cdr-safe (assoc "realm" args)))) + (if (equal realm "") + (setq realm nil)) (if (stringp url) (setq url (url-generic-parse-url url))) (if (or (null type) (eq type 'any))