Variable: url-lastloc-privacy-level
url-lastloc-privacy-level is a customizable variable defined in
url-vars.el.gz.
Value
domain-match
Documentation
Further restrictions on sending the last location.
This value is only consulted if url-privacy-level permits
sending last location in the first place.
Valid values are:
none -- Always send last location.
domain-match -- Send last location if the new location is within the
same domain
host-match -- Send last location if the new location is on the
same host
This variable was added, or its default value changed, in Emacs 27.1.
Source Code
;; Defined in /usr/src/emacs/lisp/url/url-vars.el.gz
(defcustom url-lastloc-privacy-level 'domain-match
"Further restrictions on sending the last location.
This value is only consulted if `url-privacy-level' permits
sending last location in the first place.
Valid values are:
none -- Always send last location.
domain-match -- Send last location if the new location is within the
same domain
host-match -- Send last location if the new location is on the
same host"
:version "27.1"
:type '(radio (const :tag "Always send" none)
(const :tag "Domains match" domain-match)
(const :tag "Hosts match" host-match))
:group 'url)